diff --git a/config/chains.yml b/config/chains.yml index cecc5828..61bf1452 100644 --- a/config/chains.yml +++ b/config/chains.yml @@ -5136,10 +5136,56 @@ devnet-amplifier: address_path: "/account/{address}?cluster=custom&customUrl=https://rpc.ankr.com/solana_devnet" contract_path: "/account/{address}?cluster=custom&customUrl=https://rpc.ankr.com/solana_devnet" transaction_path: "/tx/{tx}?cluster=custom&customUrl=https://rpc.ankr.com/solana_devnet" + coti-3: + chain_id: 13068200 + chain_name: "coti-3" + maintainer_id: "coti-3" + endpoints: + rpc: + - "https://devnet.coti.io/rpc" + native_token: + name: "Coti" + symbol: "COTI2" + decimals: 18 + name: "Coti 3 (VM)" + short_name: "COTI" + image: "/logos/chains/coti.svg" + color: "#035dbc" + explorer: + name: "Coti" + url: "https://explorer-devnet.coti.io" + icon: "/logos/explorers/coti.png" + block_path: "/block/{block}" + address_path: "/address/{address}" + contract_path: "/token/{address}" + transaction_path: "/transaction/{tx}" coti-4: chain_id: 13068200 chain_name: "coti-4" maintainer_id: "coti-4" + endpoints: + rpc: + - "https://devnet.coti.io/rpc" + native_token: + name: "Coti 4" + symbol: "COTI2" + decimals: 18 + name: "Coti (VM)" + short_name: "COTI" + image: "/logos/chains/coti.svg" + color: "#035dbc" + explorer: + name: "Coti" + url: "https://explorer-devnet.coti.io" + icon: "/logos/explorers/coti.png" + block_path: "/block/{block}" + address_path: "/address/{address}" + contract_path: "/token/{address}" + transaction_path: "/transaction/{tx}" + coti-6: + chain_id: 13068200 + chain_name: "coti-6" + maintainer_id: "coti-6" endpoints: rpc: - "https://devnet.coti.io/rpc" diff --git a/package.json b/package.json index da4cfa8a..9a8aa1dd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "axelarscan-api", - "version": "0.0.105", + "version": "0.0.106", "description": "Axelarscan API", "main": "index.js", "scripts": { diff --git a/terraform/devnet-amplifier/variables.tf.example b/terraform/devnet-amplifier/variables.tf.example index 81c4412b..75765d48 100644 --- a/terraform/devnet-amplifier/variables.tf.example +++ b/terraform/devnet-amplifier/variables.tf.example @@ -45,7 +45,7 @@ variable "log_level" { variable "app_version" { description = "App version, same as docker image version" - default = "0.0.105" + default = "0.0.106" validation { error_message = "Must be valid semantic version. $Major.$Minor.$Patch" condition = can(regex("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", var.app_version)) diff --git a/terraform/devnet-verifiers/variables.tf.example b/terraform/devnet-verifiers/variables.tf.example index 802aa7ac..a5030e54 100644 --- a/terraform/devnet-verifiers/variables.tf.example +++ b/terraform/devnet-verifiers/variables.tf.example @@ -45,7 +45,7 @@ variable "log_level" { variable "app_version" { description = "App version, same as docker image version" - default = "0.0.105" + default = "0.0.106" validation { error_message = "Must be valid semantic version. $Major.$Minor.$Patch" condition = can(regex("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", var.app_version)) diff --git a/terraform/mainnet/variables.tf.example b/terraform/mainnet/variables.tf.example index 1361fa41..7216b535 100644 --- a/terraform/mainnet/variables.tf.example +++ b/terraform/mainnet/variables.tf.example @@ -45,7 +45,7 @@ variable "log_level" { variable "app_version" { description = "App version, same as docker image version" - default = "0.0.105" + default = "0.0.106" validation { error_message = "Must be valid semantic version. $Major.$Minor.$Patch" condition = can(regex("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", var.app_version)) diff --git a/terraform/stagenet/variables.tf.example b/terraform/stagenet/variables.tf.example index e17a3859..304c8058 100644 --- a/terraform/stagenet/variables.tf.example +++ b/terraform/stagenet/variables.tf.example @@ -45,7 +45,7 @@ variable "log_level" { variable "app_version" { description = "App version, same as docker image version" - default = "0.0.105" + default = "0.0.106" validation { error_message = "Must be valid semantic version. $Major.$Minor.$Patch" condition = can(regex("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", var.app_version)) diff --git a/terraform/testnet/variables.tf.example b/terraform/testnet/variables.tf.example index 86c3c48b..96eda01d 100644 --- a/terraform/testnet/variables.tf.example +++ b/terraform/testnet/variables.tf.example @@ -45,7 +45,7 @@ variable "log_level" { variable "app_version" { description = "App version, same as docker image version" - default = "0.0.105" + default = "0.0.106" validation { error_message = "Must be valid semantic version. $Major.$Minor.$Patch" condition = can(regex("^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$", var.app_version))