-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into feat/markets-ui-update
- Loading branch information
Showing
35 changed files
with
2,947 additions
and
1,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
614 changes: 307 additions & 307 deletions
614
.yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.5.3.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
locals { | ||
# Base Network RPC URL (this will be passed in via GitHub Secrets) | ||
fraxtal_mainnet_rpcs = var.fraxtal_mainnet_rpcs # List of RPC URLs from environment variable | ||
fraxtal_mainnet_chain_id = "252" | ||
} | ||
|
||
|
||
module "fraxtal_mainnet_liquidator_ecs" { | ||
source = "../modules/bot" | ||
|
||
cluster_name = var.liquidator_cluster_name | ||
task_definition_family = var.task_definition_family_fraxtal | ||
ecr_repository_url = "${local.liquidator_ecr_repository_name}:${var.bots_image_tag}" | ||
bots_image_tag = var.bots_image_tag | ||
web3_http_provider_urls = local.fraxtal_mainnet_rpcs | ||
target_chain_id = local.fraxtal_mainnet_chain_id | ||
ethereum_admin_account = var.ethereum_admin_account | ||
uptime_liquidator_api = var.uptime_liquidator_api | ||
ethereum_admin_private_key = var.ethereum_admin_private_key | ||
ecs_service_name = "${var.liquidator_service_name}-fraxtal" | ||
desired_count = var.desired_count | ||
liquidation_discord_webhook_url = var.liquidation_discord_webhook_url | ||
discord_success_webhook_url = var.discord_success_webhook_url | ||
discord_failure_webhook_url = var.discord_failure_webhook_url | ||
lifi_api_key = var.lifi_api_key | ||
subnet_ids = ["subnet-0cd439d262800846e"] | ||
security_group_ids = ["sg-0a3996557af867ad0"] | ||
region = var.region | ||
liquidator_container_name = "${var.liquidator_container_name}-fraxtal" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
locals { | ||
# Base Network RPC URL (this will be passed in via GitHub Secrets) | ||
lisk_mainnet_rpcs = var.lisk_mainnet_rpcs # List of RPC URLs from environment variable | ||
lisk_mainnet_chain_id = "1135" | ||
} | ||
|
||
|
||
module "lisk_mainnet_liquidator_ecs" { | ||
source = "../modules/bot" | ||
|
||
cluster_name = var.liquidator_cluster_name | ||
task_definition_family = var.task_definition_family_lisk | ||
ecr_repository_url = "${local.liquidator_ecr_repository_name}:${var.bots_image_tag}" | ||
bots_image_tag = var.bots_image_tag | ||
web3_http_provider_urls = local.lisk_mainnet_rpcs | ||
target_chain_id = local.lisk_mainnet_chain_id | ||
ethereum_admin_account = var.ethereum_admin_account | ||
uptime_liquidator_api = var.uptime_liquidator_api | ||
ethereum_admin_private_key = var.ethereum_admin_private_key | ||
ecs_service_name = "${var.liquidator_service_name}-lisk" | ||
desired_count = var.desired_count | ||
liquidation_discord_webhook_url = var.liquidation_discord_webhook_url | ||
discord_success_webhook_url = var.discord_success_webhook_url | ||
discord_failure_webhook_url = var.discord_failure_webhook_url | ||
lifi_api_key = var.lifi_api_key | ||
subnet_ids = ["subnet-0cd439d262800846e"] | ||
security_group_ids = ["sg-0a3996557af867ad0"] | ||
region = var.region | ||
liquidator_container_name = "${var.liquidator_container_name}-lisk" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "monorepo", | ||
"packageManager": "[email protected].1", | ||
"packageManager": "[email protected].3", | ||
"private": true, | ||
"workspaces": [ | ||
"packages/bots/liquidator", | ||
|
Oops, something went wrong.