diff --git a/public/api/ccip/v1/openapi.json b/public/api/ccip/v1/openapi.json
index 8cf38841257..0be05a9bff9 100644
--- a/public/api/ccip/v1/openapi.json
+++ b/public/api/ccip/v1/openapi.json
@@ -2,8 +2,8 @@
"openapi": "3.0.0",
"info": {
"title": "CCIP Docs config API",
- "description": "API for retrieving CCIP chain, token, and lane information.\n\nTo get started quickly, you can download our [Postman Collection](/api/ccip/v1/postman-collection.json) which includes all endpoints and example requests.",
- "version": "1.5.0",
+ "description": "API for retrieving CCIP chain, token, lane, and rate limits information.\n\nTo get started quickly, you can download our [Postman Collection](/api/ccip/v1/postman-collection.json) which includes all endpoints and example requests.",
+ "version": "1.11.0",
"contact": {
"name": "File issues",
"url": "https://github.com/smartcontractkit/documentation/issues/new/choose"
@@ -34,7 +34,7 @@
},
{
"name": "lanes",
- "description": "Cross-chain lane information endpoints"
+ "description": "Cross-chain lane information endpoints with rate limits"
}
],
"paths": {
@@ -83,17 +83,17 @@
"example": "ethereum-mainnet,bsc-mainnet"
},
{
- "name": "outputKey",
+ "name": "output_key",
"in": "query",
"schema": {
"type": "string",
- "enum": ["chainId", "selector", "internalId"],
- "default": "chainId"
+ "enum": ["chain_id", "selector", "internal_id"],
+ "default": "chain_id"
},
"description": "Key to use for organizing the response data"
},
{
- "name": "enrichFeeTokens",
+ "name": "enrich_fee_tokens",
"in": "query",
"schema": {
"type": "string",
@@ -270,12 +270,12 @@
"example": "1,56"
},
{
- "name": "outputKey",
+ "name": "output_key",
"in": "query",
"schema": {
"type": "string",
- "enum": ["chainId", "selector", "internalId"],
- "default": "chainId"
+ "enum": ["chain_id", "selector", "internal_id"],
+ "default": "chain_id"
},
"description": "Key to use for organizing the response data"
}
@@ -361,6 +361,275 @@
}
}
},
+ "/tokens/{tokenCanonicalSymbol}": {
+ "get": {
+ "tags": ["tokens"],
+ "summary": "Retrieve detailed token information with custom finality data",
+ "description": "Returns detailed information about a specific CCIP token, including chain-specific configurations and custom finality settings (minBlockConfirmation and hasCustomFinality).",
+ "operationId": "getTokenDetail",
+ "parameters": [
+ {
+ "name": "tokenCanonicalSymbol",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "The canonical symbol for the token (e.g., LINK, USDC, BETS)",
+ "example": "BETS"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ },
+ {
+ "name": "output_key",
+ "in": "query",
+ "schema": {
+ "type": "string",
+ "enum": ["chain_id", "selector", "internal_id"],
+ "default": "chain_id"
+ },
+ "description": "Key to use for organizing the response data by chain"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with token detail data",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/TokenDetailApiResponse"
+ },
+ "examples": {
+ "withCustomFinality": {
+ "summary": "Token with custom finality enabled",
+ "value": {
+ "metadata": {
+ "environment": "mainnet",
+ "timestamp": "2025-12-10T12:00:00Z",
+ "requestId": "123e4567-e89b-12d3-a456-426614174000",
+ "tokenSymbol": "BETS",
+ "chainCount": 2
+ },
+ "data": {
+ "43114": {
+ "chainId": 43114,
+ "chainName": "Avalanche",
+ "decimals": 18,
+ "destinations": ["1", "137"],
+ "name": "BetSwirl v2",
+ "poolAddress": "0xe9d2...9C06",
+ "poolType": "burnMint",
+ "symbol": "BETS",
+ "tokenAddress": "0x9402...E6e5",
+ "hasCustomFinality": true,
+ "minBlockConfirmation": 5
+ },
+ "1": {
+ "chainId": 1,
+ "chainName": "Ethereum",
+ "decimals": 18,
+ "destinations": ["43114"],
+ "name": "BetSwirl v2",
+ "poolAddress": "0x1234...5678",
+ "poolType": "lockRelease",
+ "symbol": "BETS",
+ "tokenAddress": "0xabcd...ef01",
+ "hasCustomFinality": false,
+ "minBlockConfirmation": 0
+ }
+ }
+ }
+ },
+ "unavailable": {
+ "summary": "Token with unavailable finality data",
+ "value": {
+ "metadata": {
+ "environment": "mainnet",
+ "timestamp": "2025-12-10T12:00:00Z",
+ "requestId": "456e7890-e89b-12d3-a456-426614174000",
+ "tokenSymbol": "USDC",
+ "chainCount": 1
+ },
+ "data": {
+ "1": {
+ "chainId": 1,
+ "chainName": "Ethereum",
+ "decimals": 6,
+ "destinations": ["43114"],
+ "name": "USD Coin",
+ "poolAddress": "0x1234...5678",
+ "poolType": "burnMint",
+ "symbol": "USDC",
+ "tokenAddress": "0xA0b8...c4d2",
+ "hasCustomFinality": null,
+ "minBlockConfirmation": null
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Token not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ },
+ "example": {
+ "error": "NOT_FOUND",
+ "message": "Token 'INVALID' not found"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/tokens/{tokenCanonicalSymbol}/finality": {
+ "get": {
+ "tags": ["tokens"],
+ "summary": "Retrieve token finality data only",
+ "description": "Returns only custom finality information (hasCustomFinality and minBlockConfirmation) for a specific token across all chains. This is a lightweight endpoint that returns minimal data for UI components that only need finality status.",
+ "operationId": "getTokenFinality",
+ "parameters": [
+ {
+ "name": "tokenCanonicalSymbol",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "The canonical symbol for the token (e.g., LINK, USDC, BETS)",
+ "example": "BETS"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ },
+ {
+ "name": "output_key",
+ "in": "query",
+ "schema": {
+ "type": "string",
+ "enum": ["chain_id", "selector", "internal_id"],
+ "default": "chain_id"
+ },
+ "description": "Key to use for organizing the response data by chain"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with token finality data",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/TokenFinalityApiResponse"
+ },
+ "examples": {
+ "mixedFinality": {
+ "summary": "Token with mixed finality states",
+ "value": {
+ "metadata": {
+ "environment": "mainnet",
+ "timestamp": "2025-12-10T12:00:00Z",
+ "requestId": "123e4567-e89b-12d3-a456-426614174000",
+ "tokenSymbol": "BETS",
+ "chainCount": 3
+ },
+ "data": {
+ "avalanche-mainnet": {
+ "hasCustomFinality": true,
+ "minBlockConfirmation": 5
+ },
+ "ethereum-mainnet": {
+ "hasCustomFinality": false,
+ "minBlockConfirmation": 0
+ },
+ "polygon-mainnet": {
+ "hasCustomFinality": null,
+ "minBlockConfirmation": null
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Token not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ },
+ "example": {
+ "error": "NOT_FOUND",
+ "message": "Token 'INVALID' not found"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
"/lanes": {
"get": {
"tags": ["lanes"],
@@ -379,7 +648,7 @@
"description": "The network environment to query"
},
{
- "name": "sourceChainId",
+ "name": "source_chain_id",
"in": "query",
"schema": {
"type": "string"
@@ -388,7 +657,7 @@
"example": "1,56"
},
{
- "name": "destinationChainId",
+ "name": "destination_chain_id",
"in": "query",
"schema": {
"type": "string"
@@ -397,7 +666,7 @@
"example": "137,42161"
},
{
- "name": "sourceSelector",
+ "name": "source_selector",
"in": "query",
"schema": {
"type": "string"
@@ -406,7 +675,7 @@
"example": "5009297550715157269"
},
{
- "name": "destinationSelector",
+ "name": "destination_selector",
"in": "query",
"schema": {
"type": "string"
@@ -415,7 +684,7 @@
"example": "4949039107694359620"
},
{
- "name": "sourceInternalId",
+ "name": "source_internal_id",
"in": "query",
"schema": {
"type": "string"
@@ -424,7 +693,7 @@
"example": "ethereum-mainnet"
},
{
- "name": "destinationInternalId",
+ "name": "destination_internal_id",
"in": "query",
"schema": {
"type": "string"
@@ -442,12 +711,12 @@
"example": "1.6.0"
},
{
- "name": "outputKey",
+ "name": "output_key",
"in": "query",
"schema": {
"type": "string",
- "enum": ["chainId", "selector", "internalId"],
- "default": "chainId"
+ "enum": ["chain_id", "selector", "internal_id"],
+ "default": "chain_id"
},
"description": "Key format to use for organizing the lane keys in the response"
}
@@ -522,8 +791,500 @@
}
}
},
- "400": {
- "description": "Bad request - invalid parameters",
+ "400": {
+ "description": "Bad request - invalid parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-chain-id/{source}/{destination}": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve lane details by chain ID",
+ "description": "Returns detailed information about a specific CCIP lane identified by source and destination chain IDs",
+ "operationId": "getLaneByChainId",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain ID (e.g., 1 for Ethereum, 56 for BSC)",
+ "example": "1"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain ID",
+ "example": "43114"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with lane details",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/LaneDetailApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-chain-id/{source}/{destination}/supported-tokens": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve supported tokens with rate limits by chain ID",
+ "description": "Returns only the supported tokens and their rate limit configurations for a lane identified by chain IDs",
+ "operationId": "getSupportedTokensByChainId",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain ID",
+ "example": "1"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain ID",
+ "example": "43114"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with supported tokens data",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/SupportedTokensApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-selector/{source}/{destination}": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve lane details by CCIP selector",
+ "description": "Returns detailed information about a specific CCIP lane identified by source and destination CCIP selectors",
+ "operationId": "getLaneBySelector",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain CCIP selector",
+ "example": "5009297550715157269"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain CCIP selector",
+ "example": "6433500567565415381"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with lane details",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/LaneDetailApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-selector/{source}/{destination}/supported-tokens": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve supported tokens with rate limits by CCIP selector",
+ "description": "Returns only the supported tokens and their rate limit configurations for a lane identified by CCIP selectors",
+ "operationId": "getSupportedTokensBySelector",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain CCIP selector",
+ "example": "5009297550715157269"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain CCIP selector",
+ "example": "6433500567565415381"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with supported tokens data",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/SupportedTokensApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-internal-id/{source}/{destination}": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve lane details by internal ID",
+ "description": "Returns detailed information about a specific CCIP lane identified by source and destination internal IDs",
+ "operationId": "getLaneByInternalId",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain internal identifier",
+ "example": "ethereum-mainnet"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain internal identifier",
+ "example": "avalanche-mainnet"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with lane details",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/LaneDetailApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "500": {
+ "description": "Internal server error",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "/lanes/by-internal-id/{source}/{destination}/supported-tokens": {
+ "get": {
+ "tags": ["lanes"],
+ "summary": "Retrieve supported tokens with rate limits by internal ID",
+ "description": "Returns only the supported tokens and their rate limit configurations for a lane identified by internal IDs",
+ "operationId": "getSupportedTokensByInternalId",
+ "parameters": [
+ {
+ "name": "source",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Source chain internal identifier",
+ "example": "ethereum-mainnet"
+ },
+ {
+ "name": "destination",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ },
+ "description": "Destination chain internal identifier",
+ "example": "avalanche-mainnet"
+ },
+ {
+ "name": "environment",
+ "in": "query",
+ "required": true,
+ "schema": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"]
+ },
+ "description": "The network environment to query"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Successful response with supported tokens data",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/SupportedTokensApiResponse"
+ }
+ }
+ }
+ },
+ "400": {
+ "description": "Invalid request parameters",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ErrorResponse"
+ }
+ }
+ }
+ },
+ "404": {
+ "description": "Lane not found",
"content": {
"application/json": {
"schema": {
@@ -920,6 +1681,198 @@
}
}
},
+ "LaneDetailApiResponse": {
+ "type": "object",
+ "required": ["metadata", "data"],
+ "properties": {
+ "metadata": {
+ "$ref": "#/components/schemas/LaneDetailMetadata"
+ },
+ "data": {
+ "$ref": "#/components/schemas/LaneDetailWithRateLimits"
+ }
+ },
+ "description": "Response for a single lane detail query with rate limits included"
+ },
+ "LaneDetailWithRateLimits": {
+ "type": "object",
+ "required": ["sourceChain", "destinationChain", "onRamp", "offRamp", "supportedTokens"],
+ "properties": {
+ "sourceChain": {
+ "$ref": "#/components/schemas/ChainInfo"
+ },
+ "destinationChain": {
+ "$ref": "#/components/schemas/ChainInfo"
+ },
+ "onRamp": {
+ "type": "object",
+ "required": ["address", "version"],
+ "properties": {
+ "address": {
+ "type": "string",
+ "description": "OnRamp contract address"
+ },
+ "version": {
+ "type": "string",
+ "pattern": "^\\d+\\.\\d+\\.\\d+$",
+ "description": "Normalized semantic version of the OnRamp contract"
+ },
+ "enforceOutOfOrder": {
+ "type": "boolean",
+ "description": "Whether the OnRamp enforces out-of-order execution"
+ }
+ }
+ },
+ "offRamp": {
+ "type": "object",
+ "required": ["address", "version"],
+ "properties": {
+ "address": {
+ "type": "string",
+ "description": "OffRamp contract address"
+ },
+ "version": {
+ "type": "string",
+ "pattern": "^\\d+\\.\\d+\\.\\d+$",
+ "description": "Normalized semantic version of the OffRamp contract"
+ }
+ }
+ },
+ "supportedTokens": {
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/components/schemas/TokenRateLimits"
+ },
+ "description": "Supported tokens with their rate limit configurations"
+ }
+ },
+ "description": "Lane details with rate limits included in supportedTokens"
+ },
+ "TokenRateLimits": {
+ "type": "object",
+ "properties": {
+ "standard": {
+ "oneOf": [{ "$ref": "#/components/schemas/RateLimiterDirections" }, { "type": "null" }],
+ "description": "Standard rate limit configuration (null if unavailable)"
+ },
+ "custom": {
+ "oneOf": [{ "$ref": "#/components/schemas/RateLimiterDirections" }, { "type": "null" }],
+ "description": "Custom (FTF) rate limit configuration (null if unavailable)"
+ }
+ },
+ "description": "Rate limit configurations for a token"
+ },
+ "RateLimiterDirections": {
+ "type": "object",
+ "properties": {
+ "in": {
+ "$ref": "#/components/schemas/RateLimiterConfig"
+ },
+ "out": {
+ "$ref": "#/components/schemas/RateLimiterConfig"
+ }
+ },
+ "description": "Inbound and outbound rate limiter configurations"
+ },
+ "RateLimiterConfig": {
+ "type": "object",
+ "required": ["capacity", "isEnabled", "rate"],
+ "properties": {
+ "capacity": {
+ "type": "string",
+ "description": "Maximum capacity in token units (wei for ERC20)"
+ },
+ "isEnabled": {
+ "type": "boolean",
+ "description": "Whether the rate limiter is enabled"
+ },
+ "rate": {
+ "type": "string",
+ "description": "Refill rate per second in token units"
+ }
+ },
+ "description": "Single direction rate limiter configuration"
+ },
+ "LaneDetailMetadata": {
+ "type": "object",
+ "required": ["environment", "timestamp", "requestId", "sourceChain", "destinationChain"],
+ "properties": {
+ "environment": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"],
+ "description": "The network environment"
+ },
+ "timestamp": {
+ "type": "string",
+ "format": "date-time",
+ "description": "ISO timestamp of the response"
+ },
+ "requestId": {
+ "type": "string",
+ "format": "uuid",
+ "description": "Unique identifier for the request"
+ },
+ "sourceChain": {
+ "type": "string",
+ "description": "Source chain identifier used in the request"
+ },
+ "destinationChain": {
+ "type": "string",
+ "description": "Destination chain identifier used in the request"
+ }
+ }
+ },
+ "SupportedTokensApiResponse": {
+ "type": "object",
+ "required": ["metadata", "data"],
+ "properties": {
+ "metadata": {
+ "$ref": "#/components/schemas/SupportedTokensMetadata"
+ },
+ "data": {
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/components/schemas/TokenRateLimits"
+ },
+ "description": "Supported tokens with their rate limit configurations"
+ }
+ },
+ "description": "Response containing only supported tokens and their rate limits"
+ },
+ "SupportedTokensMetadata": {
+ "type": "object",
+ "required": ["environment", "timestamp", "requestId", "sourceChain", "destinationChain", "tokenCount"],
+ "properties": {
+ "environment": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"],
+ "description": "The network environment"
+ },
+ "timestamp": {
+ "type": "string",
+ "format": "date-time",
+ "description": "ISO timestamp of the response"
+ },
+ "requestId": {
+ "type": "string",
+ "format": "uuid",
+ "description": "Unique identifier for the request"
+ },
+ "sourceChain": {
+ "type": "string",
+ "description": "Source chain identifier used in the request"
+ },
+ "destinationChain": {
+ "type": "string",
+ "description": "Destination chain identifier used in the request"
+ },
+ "tokenCount": {
+ "type": "integer",
+ "minimum": 0,
+ "description": "Number of supported tokens returned"
+ }
+ }
+ },
"ErrorResponse": {
"type": "object",
"required": ["error", "message"],
@@ -1046,6 +1999,107 @@
}
}
},
+ "TokenDetailChainData": {
+ "type": "object",
+ "description": "Extended token chain data with custom finality information",
+ "allOf": [
+ {
+ "$ref": "#/components/schemas/TokenChainData"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "hasCustomFinality": {
+ "type": "boolean",
+ "nullable": true,
+ "description": "Whether custom finality is enabled (derived from minBlockConfirmation > 0). Null if data is unavailable."
+ },
+ "minBlockConfirmation": {
+ "type": "integer",
+ "nullable": true,
+ "description": "Minimum block confirmations required. Null if data is unavailable."
+ }
+ }
+ }
+ ]
+ },
+ "TokenDetailMetadata": {
+ "type": "object",
+ "required": ["environment", "timestamp", "requestId", "tokenSymbol", "chainCount"],
+ "properties": {
+ "environment": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"],
+ "description": "Network environment"
+ },
+ "timestamp": {
+ "type": "string",
+ "format": "date-time",
+ "description": "Timestamp of the response"
+ },
+ "requestId": {
+ "type": "string",
+ "format": "uuid",
+ "description": "Unique identifier for this request"
+ },
+ "tokenSymbol": {
+ "type": "string",
+ "description": "Canonical symbol of the requested token"
+ },
+ "chainCount": {
+ "type": "integer",
+ "description": "Number of chains this token is available on"
+ }
+ }
+ },
+ "TokenDetailApiResponse": {
+ "type": "object",
+ "required": ["metadata", "data"],
+ "properties": {
+ "metadata": {
+ "$ref": "#/components/schemas/TokenDetailMetadata"
+ },
+ "data": {
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/components/schemas/TokenDetailChainData"
+ },
+ "description": "Token data indexed by chain ID/selector, including custom finality information"
+ }
+ }
+ },
+ "TokenFinalityData": {
+ "type": "object",
+ "description": "Finality data for a token on a specific chain",
+ "properties": {
+ "hasCustomFinality": {
+ "type": "boolean",
+ "nullable": true,
+ "description": "Whether custom finality is enabled (derived from minBlockConfirmation > 0). Null if data is unavailable."
+ },
+ "minBlockConfirmation": {
+ "type": "integer",
+ "nullable": true,
+ "description": "Minimum block confirmations required. Null if data is unavailable."
+ }
+ }
+ },
+ "TokenFinalityApiResponse": {
+ "type": "object",
+ "required": ["metadata", "data"],
+ "properties": {
+ "metadata": {
+ "$ref": "#/components/schemas/TokenDetailMetadata"
+ },
+ "data": {
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/components/schemas/TokenFinalityData"
+ },
+ "description": "Finality data indexed by chain ID/selector"
+ }
+ }
+ },
"TokenDetails": {
"type": "object",
"required": ["symbol", "lanes", "chains"],
@@ -1120,6 +2174,88 @@
"description": "List of tokens that were ignored due to configuration issues"
}
}
+ },
+ "RateLimitsMetadata": {
+ "type": "object",
+ "required": ["environment", "timestamp", "requestId", "sourceChain", "destinationChain", "tokenCount"],
+ "properties": {
+ "environment": {
+ "type": "string",
+ "enum": ["mainnet", "testnet"],
+ "description": "The network environment"
+ },
+ "timestamp": {
+ "type": "string",
+ "format": "date-time",
+ "description": "ISO timestamp of the response"
+ },
+ "requestId": {
+ "type": "string",
+ "format": "uuid",
+ "description": "Unique identifier for the request"
+ },
+ "sourceChain": {
+ "type": "string",
+ "description": "Source chain internal identifier"
+ },
+ "destinationChain": {
+ "type": "string",
+ "description": "Destination chain internal identifier"
+ },
+ "tokenCount": {
+ "type": "integer",
+ "minimum": 0,
+ "description": "Number of tokens in the response"
+ }
+ }
+ },
+ "RateLimiterConfig": {
+ "type": "object",
+ "required": ["capacity", "isEnabled", "rate"],
+ "properties": {
+ "capacity": {
+ "type": "string",
+ "description": "Maximum token capacity for rate limiting (in token smallest unit as string)"
+ },
+ "isEnabled": {
+ "type": "boolean",
+ "description": "Whether rate limiting is enabled for this direction"
+ },
+ "rate": {
+ "type": "string",
+ "description": "Rate of token replenishment per second (in token smallest unit as string)"
+ }
+ }
+ },
+ "TokenRateLimits": {
+ "type": "object",
+ "properties": {
+ "in": {
+ "$ref": "#/components/schemas/RateLimiterConfig",
+ "description": "Inbound rate limiter configuration (tokens coming into destination chain)"
+ },
+ "out": {
+ "$ref": "#/components/schemas/RateLimiterConfig",
+ "description": "Outbound rate limiter configuration (tokens leaving source chain)"
+ }
+ },
+ "description": "Rate limiter configurations for both inbound and outbound directions"
+ },
+ "RateLimitsApiResponse": {
+ "type": "object",
+ "required": ["metadata", "data"],
+ "properties": {
+ "metadata": {
+ "$ref": "#/components/schemas/RateLimitsMetadata"
+ },
+ "data": {
+ "type": "object",
+ "additionalProperties": {
+ "$ref": "#/components/schemas/TokenRateLimits"
+ },
+ "description": "Rate limits data indexed by token symbol"
+ }
+ }
}
}
}
diff --git a/src/__mocks__/rate-limits-mainnet.json b/src/__mocks__/rate-limits-mainnet.json
new file mode 100644
index 00000000000..3f90fff496c
--- /dev/null
+++ b/src/__mocks__/rate-limits-mainnet.json
@@ -0,0 +1,55946 @@
+{
+ "$PAAL": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "1XMM": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "AISTR": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ANIMA": {
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "APRS": {
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "11910000000000000000000000",
+ "isEnabled": true,
+ "rate": "137847213400000000000"
+ },
+ "out": {
+ "capacity": "18090000000000000000000000",
+ "isEnabled": true,
+ "rate": "209375000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "347222200000000000000"
+ },
+ "out": {
+ "capacity": "27000000000000000000000000",
+ "isEnabled": true,
+ "rate": "312500000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "20370000000000000000000000",
+ "isEnabled": true,
+ "rate": "235763873800000000000"
+ },
+ "out": {
+ "capacity": "14931000000000000000000000",
+ "isEnabled": true,
+ "rate": "172812500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "347222200000000000000"
+ },
+ "out": {
+ "capacity": "27000000000000000000000000",
+ "isEnabled": true,
+ "rate": "312500000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "APU": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "30600000000000000000000000",
+ "isEnabled": true,
+ "rate": "8499999976200000000000"
+ },
+ "out": {
+ "capacity": "32900000000000000000000000",
+ "isEnabled": true,
+ "rate": "9138888863300000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "45700000000000000000000000",
+ "isEnabled": true,
+ "rate": "12694444408900000000000"
+ },
+ "out": {
+ "capacity": "49600000000000000000000000",
+ "isEnabled": true,
+ "rate": "13777777739200000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "44700000000000000000000000",
+ "isEnabled": true,
+ "rate": "12416666631900000000000"
+ },
+ "out": {
+ "capacity": "34300000000000000000000000",
+ "isEnabled": true,
+ "rate": "9527777751100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "56600000000000000000000000",
+ "isEnabled": true,
+ "rate": "15722222178200000000000"
+ },
+ "out": {
+ "capacity": "46200000000000000000000000",
+ "isEnabled": true,
+ "rate": "12833333297400000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "36000000000000000000000000",
+ "isEnabled": true,
+ "rate": "9999999972000000000000"
+ },
+ "out": {
+ "capacity": "56400000000000000000000000",
+ "isEnabled": true,
+ "rate": "15666666622800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777777700000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "avBTC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "avETH": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "avETHx": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "avUSD": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "avUSDx": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "AXS": {
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BANANA": {
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1017000000000000000000000",
+ "isEnabled": true,
+ "rate": "11770832580000000000"
+ },
+ "out": {
+ "capacity": "460350000000000000000000",
+ "isEnabled": true,
+ "rate": "5328125000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "17361110000000000000"
+ },
+ "out": {
+ "capacity": "1350000000000000000000000",
+ "isEnabled": true,
+ "rate": "15625000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "538500000000000000000000",
+ "isEnabled": true,
+ "rate": "6232638490000000000"
+ },
+ "out": {
+ "capacity": "507600000000000000000000",
+ "isEnabled": true,
+ "rate": "5875000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "17361110000000000000"
+ },
+ "out": {
+ "capacity": "1350000000000000000000000",
+ "isEnabled": true,
+ "rate": "15625000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BANK": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BARD": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "beraBTC": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BETS": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "11970000000000000000000000",
+ "isEnabled": true,
+ "rate": "19950000000000000000000"
+ },
+ "out": {
+ "capacity": "11730000000000000000000000",
+ "isEnabled": true,
+ "rate": "19550000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "18810000000000000000000000",
+ "isEnabled": true,
+ "rate": "31350000000000000000000"
+ },
+ "out": {
+ "capacity": "13020000000000000000000000",
+ "isEnabled": true,
+ "rate": "21700000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19350000000000000000000000",
+ "isEnabled": true,
+ "rate": "32250000000000000000000"
+ },
+ "out": {
+ "capacity": "13260000000000000000000000",
+ "isEnabled": true,
+ "rate": "22100000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BKN": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BMX": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "65300000000000000000000",
+ "isEnabled": true,
+ "rate": "18133810000000000000"
+ },
+ "out": {
+ "capacity": "50800000000000000000000",
+ "isEnabled": true,
+ "rate": "14107160000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "65100000000000000000000",
+ "isEnabled": true,
+ "rate": "18078270000000000000"
+ },
+ "out": {
+ "capacity": "36500000000000000000000",
+ "isEnabled": true,
+ "rate": "10136050000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "35500000000000000000000",
+ "isEnabled": true,
+ "rate": "9858350000000000000"
+ },
+ "out": {
+ "capacity": "55300000000000000000000",
+ "isEnabled": true,
+ "rate": "15356810000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27770000000000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BOB": {
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BOLD": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BONE": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "celo-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BR": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2980000000000000000000000",
+ "isEnabled": true,
+ "rate": "34568000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "682000000000000000",
+ "isEnabled": true,
+ "rate": "68200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "326000000000000000",
+ "isEnabled": true,
+ "rate": "32600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2780000000000000000000000",
+ "isEnabled": true,
+ "rate": "32248000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2865000000000000000000000",
+ "isEnabled": true,
+ "rate": "33234000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2370000000000000000000000",
+ "isEnabled": true,
+ "rate": "27492000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "283500000000000",
+ "isEnabled": true,
+ "rate": "3288600000"
+ },
+ "out": {
+ "capacity": "2075000000000000000000000",
+ "isEnabled": true,
+ "rate": "24070000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5800000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "471000000000000000",
+ "isEnabled": true,
+ "rate": "47100000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2070000000000000000000000",
+ "isEnabled": true,
+ "rate": "24012000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "511000000000000000",
+ "isEnabled": true,
+ "rate": "51100000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "676000000000000000",
+ "isEnabled": true,
+ "rate": "67600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "2620000000000000000000000",
+ "isEnabled": true,
+ "rate": "30392000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "595000000000000000",
+ "isEnabled": true,
+ "rate": "59500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "347500000000000",
+ "isEnabled": true,
+ "rate": "4031000000"
+ },
+ "out": {
+ "capacity": "273000000000000",
+ "isEnabled": true,
+ "rate": "3166800000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5800000000"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5800000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "brBTC": {
+ "aptos-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "91400000",
+ "isEnabled": true,
+ "rate": "1057"
+ },
+ "out": {
+ "capacity": "113000000",
+ "isEnabled": true,
+ "rate": "1307"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "107200000",
+ "isEnabled": true,
+ "rate": "1240"
+ },
+ "out": {
+ "capacity": "113800000",
+ "isEnabled": true,
+ "rate": "1317"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "127800000",
+ "isEnabled": true,
+ "rate": "1479"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "94200000",
+ "isEnabled": true,
+ "rate": "1090"
+ },
+ "out": {
+ "capacity": "72600000",
+ "isEnabled": true,
+ "rate": "840"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "91600000",
+ "isEnabled": true,
+ "rate": "1060"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "120800000",
+ "isEnabled": true,
+ "rate": "1398"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "73600000",
+ "isEnabled": true,
+ "rate": "851"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-xlayer-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "133600000",
+ "isEnabled": true,
+ "rate": "1546"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "80400000",
+ "isEnabled": true,
+ "rate": "930"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "108400000",
+ "isEnabled": true,
+ "rate": "1254"
+ },
+ "out": {
+ "capacity": "118800000",
+ "isEnabled": true,
+ "rate": "1375"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "135400000",
+ "isEnabled": true,
+ "rate": "1567"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "132200000",
+ "isEnabled": true,
+ "rate": "1530"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "111800000",
+ "isEnabled": true,
+ "rate": "1294"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-xlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "73000000",
+ "isEnabled": true,
+ "rate": "844"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "73200000",
+ "isEnabled": true,
+ "rate": "847"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "120600000",
+ "isEnabled": true,
+ "rate": "1395"
+ },
+ "out": {
+ "capacity": "139600000",
+ "isEnabled": true,
+ "rate": "1615"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "139400000",
+ "isEnabled": true,
+ "rate": "1613"
+ },
+ "out": {
+ "capacity": "85800000",
+ "isEnabled": true,
+ "rate": "993"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BTR": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "BYTES": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CANNED": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CGX": {
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CHEX": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CHIKA": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CKP": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "44400000000000000000000",
+ "isEnabled": true,
+ "rate": "12432000000000000000"
+ },
+ "out": {
+ "capacity": "30500000000000000000000",
+ "isEnabled": true,
+ "rate": "8540000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "28000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "28000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "56500000000000000000000",
+ "isEnabled": true,
+ "rate": "15820000000000000000"
+ },
+ "out": {
+ "capacity": "62300000000000000000000",
+ "isEnabled": true,
+ "rate": "17444000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "28000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "28000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "clBTC": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CRTV": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DAMN": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DEGEN": {
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DFX": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3145000000000000000000000",
+ "isEnabled": true,
+ "rate": "35853000000000000000"
+ },
+ "out": {
+ "capacity": "2865000000000000000000000",
+ "isEnabled": true,
+ "rate": "32661000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2840000000000000000000000",
+ "isEnabled": true,
+ "rate": "32376000000000000000"
+ },
+ "out": {
+ "capacity": "2025000000000000000000000",
+ "isEnabled": true,
+ "rate": "23085000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "2065000000000000000000000",
+ "isEnabled": true,
+ "rate": "23541000000000000000"
+ },
+ "out": {
+ "capacity": "2795000000000000000000000",
+ "isEnabled": true,
+ "rate": "31863000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3105000000000000000000000",
+ "isEnabled": true,
+ "rate": "35397000000000000000"
+ },
+ "out": {
+ "capacity": "1705000000000000000000000",
+ "isEnabled": true,
+ "rate": "19437000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "3080000000000000000000000",
+ "isEnabled": true,
+ "rate": "35112000000000000000"
+ },
+ "out": {
+ "capacity": "2095000000000000000000000",
+ "isEnabled": true,
+ "rate": "23883000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1600000000000000000000000",
+ "isEnabled": true,
+ "rate": "18240000000000000000"
+ },
+ "out": {
+ "capacity": "1980000000000000000000000",
+ "isEnabled": true,
+ "rate": "22572000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DIP": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "6730000000000000000000000",
+ "isEnabled": true,
+ "rate": "1869594000000000000000"
+ },
+ "out": {
+ "capacity": "3300000000000000000000000",
+ "isEnabled": true,
+ "rate": "916740000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2778000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2778000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DOBO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DOLO": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "DPI": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "386802000000000000000",
+ "isEnabled": true,
+ "rate": "26100000000000000"
+ },
+ "out": {
+ "capacity": "431262000000000000000",
+ "isEnabled": true,
+ "rate": "29100000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ },
+ "out": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1698415000000000000000",
+ "isEnabled": true,
+ "rate": "117900000000000000"
+ },
+ "out": {
+ "capacity": "873841000000000000000",
+ "isEnabled": true,
+ "rate": "60660000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2593000000000000000000",
+ "isEnabled": true,
+ "rate": "180000000000000000"
+ },
+ "out": {
+ "capacity": "2593000000000000000000",
+ "isEnabled": true,
+ "rate": "180000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "245271000000000000000",
+ "isEnabled": true,
+ "rate": "16550000000000000"
+ },
+ "out": {
+ "capacity": "472017000000000000000",
+ "isEnabled": true,
+ "rate": "31850000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ },
+ "out": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "469053000000000000000",
+ "isEnabled": true,
+ "rate": "31650000000000000"
+ },
+ "out": {
+ "capacity": "246012000000000000000",
+ "isEnabled": true,
+ "rate": "16600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ },
+ "out": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1571358000000000000000",
+ "isEnabled": true,
+ "rate": "109080000000000000"
+ },
+ "out": {
+ "capacity": "902364000000000000000",
+ "isEnabled": true,
+ "rate": "62640000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2593000000000000000000",
+ "isEnabled": true,
+ "rate": "180000000000000000"
+ },
+ "out": {
+ "capacity": "2593000000000000000000",
+ "isEnabled": true,
+ "rate": "180000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "223041000000000000000",
+ "isEnabled": true,
+ "rate": "15050000000000000"
+ },
+ "out": {
+ "capacity": "312702000000000000000",
+ "isEnabled": true,
+ "rate": "21100000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ },
+ "out": {
+ "capacity": "741000000000000000000",
+ "isEnabled": true,
+ "rate": "50000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "dsETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "6383000000000000000",
+ "isEnabled": true,
+ "rate": "441900000000000"
+ },
+ "out": {
+ "capacity": "5967000000000000000",
+ "isEnabled": true,
+ "rate": "413100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ },
+ "out": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "11200000000000000000",
+ "isEnabled": true,
+ "rate": "761600000000000"
+ },
+ "out": {
+ "capacity": "11800000000000000000",
+ "isEnabled": true,
+ "rate": "802400000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "25000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "25000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "5642000000000000000",
+ "isEnabled": true,
+ "rate": "390600000000000"
+ },
+ "out": {
+ "capacity": "6786000000000000000",
+ "isEnabled": true,
+ "rate": "469800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ },
+ "out": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5213000000000000000",
+ "isEnabled": true,
+ "rate": "360900000000000"
+ },
+ "out": {
+ "capacity": "6084000000000000000",
+ "isEnabled": true,
+ "rate": "421200000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ },
+ "out": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "8175000000000000000",
+ "isEnabled": true,
+ "rate": "555900000000000"
+ },
+ "out": {
+ "capacity": "10575000000000000000",
+ "isEnabled": true,
+ "rate": "719100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "25000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "25000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "6981000000000000000",
+ "isEnabled": true,
+ "rate": "483300000000000"
+ },
+ "out": {
+ "capacity": "5317000000000000000",
+ "isEnabled": true,
+ "rate": "368100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ },
+ "out": {
+ "capacity": "13000000000000000000",
+ "isEnabled": true,
+ "rate": "900000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "EARNM": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "240000000000000000000000",
+ "isEnabled": true,
+ "rate": "66662400000000000000"
+ },
+ "out": {
+ "capacity": "359375000000000000000000",
+ "isEnabled": true,
+ "rate": "99820000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ },
+ "out": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "311250000000000000000000",
+ "isEnabled": true,
+ "rate": "86452800000000000000"
+ },
+ "out": {
+ "capacity": "340000000000000000000000",
+ "isEnabled": true,
+ "rate": "94438400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ },
+ "out": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "60000000000000000000000000",
+ "isEnabled": true,
+ "rate": "16666800000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "36800000000000000000000000",
+ "isEnabled": true,
+ "rate": "10222304000000000000000"
+ },
+ "out": {
+ "capacity": "58400000000000000000000000",
+ "isEnabled": true,
+ "rate": "16222352000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "410625000000000000000000",
+ "isEnabled": true,
+ "rate": "114055200000000000000"
+ },
+ "out": {
+ "capacity": "219375000000000000000000",
+ "isEnabled": true,
+ "rate": "60933600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ },
+ "out": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "195000000000000000000000",
+ "isEnabled": true,
+ "rate": "54163200000000000000"
+ },
+ "out": {
+ "capacity": "266250000000000000000000",
+ "isEnabled": true,
+ "rate": "73953600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ },
+ "out": {
+ "capacity": "625000000000000000000000",
+ "isEnabled": true,
+ "rate": "173600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "23300000000000000000000000",
+ "isEnabled": true,
+ "rate": "6472274000000000000000"
+ },
+ "out": {
+ "capacity": "29750000000000000000000000",
+ "isEnabled": true,
+ "rate": "8263955000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ },
+ "out": {
+ "capacity": "45700000000000000000000000",
+ "isEnabled": true,
+ "rate": "12694546000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "62700000000000000000000000",
+ "isEnabled": true,
+ "rate": "17416806000000000000000"
+ },
+ "out": {
+ "capacity": "63100000000000000000000000",
+ "isEnabled": true,
+ "rate": "17527918000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000000",
+ "isEnabled": true,
+ "rate": "27778000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "29250000000000000000000000",
+ "isEnabled": true,
+ "rate": "8125065000000000000000"
+ },
+ "out": {
+ "capacity": "29350000000000000000000000",
+ "isEnabled": true,
+ "rate": "8152843000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13889000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "EDEN": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "egETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "62400000000000000000",
+ "isEnabled": true,
+ "rate": "5778240000000000"
+ },
+ "out": {
+ "capacity": "61200000000000000000",
+ "isEnabled": true,
+ "rate": "5667120000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "55200000000000000000",
+ "isEnabled": true,
+ "rate": "5111520000000000"
+ },
+ "out": {
+ "capacity": "69200000000000000000",
+ "isEnabled": true,
+ "rate": "6407920000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "65500000000000000000",
+ "isEnabled": true,
+ "rate": "6065300000000000"
+ },
+ "out": {
+ "capacity": "64400000000000000000",
+ "isEnabled": true,
+ "rate": "5963440000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "elizaOS": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "EmCH": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "enzoBTC": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ETHx": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "598000000000000000000",
+ "isEnabled": true,
+ "rate": "33488000000000000"
+ },
+ "out": {
+ "capacity": "578000000000000000000",
+ "isEnabled": true,
+ "rate": "32368000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "464000000000000000000",
+ "isEnabled": true,
+ "rate": "25984000000000000"
+ },
+ "out": {
+ "capacity": "572000000000000000000",
+ "isEnabled": true,
+ "rate": "32032000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "469000000000000000000",
+ "isEnabled": true,
+ "rate": "26264000000000000"
+ },
+ "out": {
+ "capacity": "603000000000000000000",
+ "isEnabled": true,
+ "rate": "33768000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "632000000000000000000",
+ "isEnabled": true,
+ "rate": "35392000000000000"
+ },
+ "out": {
+ "capacity": "668000000000000000000",
+ "isEnabled": true,
+ "rate": "37408000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "56000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "eUSX": {
+ "plasma-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "FEED": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "FF": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "FHE": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mind-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mind-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mind-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "FLUID": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1254000000000000000000000",
+ "isEnabled": true,
+ "rate": "14513888888888888888"
+ },
+ "out": {
+ "capacity": "802000000000000000000000",
+ "isEnabled": true,
+ "rate": "9282407407407407407"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1292000000000000000000000",
+ "isEnabled": true,
+ "rate": "14953703703703703703"
+ },
+ "out": {
+ "capacity": "828000000000000000000000",
+ "isEnabled": true,
+ "rate": "9583333333333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "186500000000000000000000",
+ "isEnabled": true,
+ "rate": "2158551000000000000"
+ },
+ "out": {
+ "capacity": "317500000000000000000000",
+ "isEnabled": true,
+ "rate": "3674745000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "216000000000000000000000",
+ "isEnabled": true,
+ "rate": "2499999999999999999"
+ },
+ "out": {
+ "capacity": "215000000000000000000000",
+ "isEnabled": true,
+ "rate": "2488425925925925925"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1202000000000000000000000",
+ "isEnabled": true,
+ "rate": "13912037037037037036"
+ },
+ "out": {
+ "capacity": "1250000000000000000000000",
+ "isEnabled": true,
+ "rate": "14467592592592592592"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "668000000000000000000000",
+ "isEnabled": true,
+ "rate": "7731481481481481481"
+ },
+ "out": {
+ "capacity": "840000000000000000000000",
+ "isEnabled": true,
+ "rate": "9722222222222222222"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "341000000000000000000000",
+ "isEnabled": true,
+ "rate": "3946734000000000000"
+ },
+ "out": {
+ "capacity": "286500000000000000000000",
+ "isEnabled": true,
+ "rate": "3315951000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "315500000000000000000000",
+ "isEnabled": true,
+ "rate": "3651620370370370370"
+ },
+ "out": {
+ "capacity": "260000000000000000000000",
+ "isEnabled": true,
+ "rate": "3009259259259259259"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "864000000000000000000000",
+ "isEnabled": true,
+ "rate": "9999999999999999999"
+ },
+ "out": {
+ "capacity": "1066000000000000000000000",
+ "isEnabled": true,
+ "rate": "12337962962962962962"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "762000000000000000000000",
+ "isEnabled": true,
+ "rate": "8819444444444444444"
+ },
+ "out": {
+ "capacity": "902000000000000000000000",
+ "isEnabled": true,
+ "rate": "10439814814814814814"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148148148148148"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314814814814814814"
+ },
+ "out": {
+ "capacity": "336500000000000000000000",
+ "isEnabled": true,
+ "rate": "3894675925925925925"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037037037037037"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "152500000000000000000000",
+ "isEnabled": true,
+ "rate": "1765035000000000000"
+ },
+ "out": {
+ "capacity": "206500000000000000000000",
+ "isEnabled": true,
+ "rate": "2390031000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "239000000000000000000000",
+ "isEnabled": true,
+ "rate": "2766186000000000000"
+ },
+ "out": {
+ "capacity": "312000000000000000000000",
+ "isEnabled": true,
+ "rate": "3611088000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "206000000000000000000000",
+ "isEnabled": true,
+ "rate": "2384244000000000000"
+ },
+ "out": {
+ "capacity": "159000000000000000000000",
+ "isEnabled": true,
+ "rate": "1840266000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "208500000000000",
+ "isEnabled": true,
+ "rate": "2413179000"
+ },
+ "out": {
+ "capacity": "302500000000000000000000",
+ "isEnabled": true,
+ "rate": "3501135000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5787000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "315500000000000",
+ "isEnabled": true,
+ "rate": "14606451100"
+ },
+ "out": {
+ "capacity": "288000000000000",
+ "isEnabled": true,
+ "rate": "13333305600"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "200500000000000",
+ "isEnabled": true,
+ "rate": "9282388100"
+ },
+ "out": {
+ "capacity": "264500000000000",
+ "isEnabled": true,
+ "rate": "12245344900"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "333000000000000",
+ "isEnabled": true,
+ "rate": "15416634600"
+ },
+ "out": {
+ "capacity": "262500000000000",
+ "isEnabled": true,
+ "rate": "12152752500"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "23148100000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "235500000000000",
+ "isEnabled": true,
+ "rate": "2725677000"
+ },
+ "out": {
+ "capacity": "268000000000000",
+ "isEnabled": true,
+ "rate": "3101832000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5787000000"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "5787000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "GEN": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "GHO": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "798000000000000000000000",
+ "isEnabled": true,
+ "rate": "159600000000000000000"
+ },
+ "out": {
+ "capacity": "961500000000000000000000",
+ "isEnabled": true,
+ "rate": "192300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "462000000000000000000000",
+ "isEnabled": true,
+ "rate": "92400000000000000000"
+ },
+ "out": {
+ "capacity": "1026000000000000000000000",
+ "isEnabled": true,
+ "rate": "205200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "973500000000000000000000",
+ "isEnabled": true,
+ "rate": "194700000000000000000"
+ },
+ "out": {
+ "capacity": "645000000000000000000000",
+ "isEnabled": true,
+ "rate": "129000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "690000000000000000000000",
+ "isEnabled": true,
+ "rate": "138000000000000000000"
+ },
+ "out": {
+ "capacity": "901500000000000000000000",
+ "isEnabled": true,
+ "rate": "180300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "693000000000000000000000",
+ "isEnabled": true,
+ "rate": "138600000000000000000"
+ },
+ "out": {
+ "capacity": "760500000000000000000000",
+ "isEnabled": true,
+ "rate": "152100000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "897000000000000000000000",
+ "isEnabled": true,
+ "rate": "179400000000000000000"
+ },
+ "out": {
+ "capacity": "646500000000000000000000",
+ "isEnabled": true,
+ "rate": "129300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "555000000000000000000000",
+ "isEnabled": true,
+ "rate": "111000000000000000000"
+ },
+ "out": {
+ "capacity": "618000000000000000000000",
+ "isEnabled": true,
+ "rate": "123600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1038000000000000000000000",
+ "isEnabled": true,
+ "rate": "207600000000000000000"
+ },
+ "out": {
+ "capacity": "888000000000000000000000",
+ "isEnabled": true,
+ "rate": "177600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "853500000000000000000000",
+ "isEnabled": true,
+ "rate": "170700000000000000000"
+ },
+ "out": {
+ "capacity": "1035000000000000000000000",
+ "isEnabled": true,
+ "rate": "207000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "912000000000000000000000",
+ "isEnabled": true,
+ "rate": "182400000000000000000"
+ },
+ "out": {
+ "capacity": "1005000000000000000000000",
+ "isEnabled": true,
+ "rate": "201000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "559500000000000000000000",
+ "isEnabled": true,
+ "rate": "111900000000000000000"
+ },
+ "out": {
+ "capacity": "825000000000000000000000",
+ "isEnabled": true,
+ "rate": "165000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "643500000000000000000000",
+ "isEnabled": true,
+ "rate": "128700000000000000000"
+ },
+ "out": {
+ "capacity": "744000000000000000000000",
+ "isEnabled": true,
+ "rate": "148800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "864000000000000000000000",
+ "isEnabled": true,
+ "rate": "172800000000000000000"
+ },
+ "out": {
+ "capacity": "496500000000000000000000",
+ "isEnabled": true,
+ "rate": "99300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "769500000000000000000000",
+ "isEnabled": true,
+ "rate": "153900000000000000000"
+ },
+ "out": {
+ "capacity": "601500000000000000000000",
+ "isEnabled": true,
+ "rate": "120300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "808500000000000000000000",
+ "isEnabled": true,
+ "rate": "161700000000000000000"
+ },
+ "out": {
+ "capacity": "714000000000000000000000",
+ "isEnabled": true,
+ "rate": "142800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000500000000000000000000",
+ "isEnabled": true,
+ "rate": "200100000000000000000"
+ },
+ "out": {
+ "capacity": "856500000000000000000000",
+ "isEnabled": true,
+ "rate": "171300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "460500000000000000000000",
+ "isEnabled": true,
+ "rate": "92100000000000000000"
+ },
+ "out": {
+ "capacity": "672000000000000000000000",
+ "isEnabled": true,
+ "rate": "134400000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "907500000000000000000000",
+ "isEnabled": true,
+ "rate": "181500000000000000000"
+ },
+ "out": {
+ "capacity": "936000000000000000000000",
+ "isEnabled": true,
+ "rate": "187200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "906000000000000000000000",
+ "isEnabled": true,
+ "rate": "181200000000000000000"
+ },
+ "out": {
+ "capacity": "754500000000000000000000",
+ "isEnabled": true,
+ "rate": "150900000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "811500000000000000000000",
+ "isEnabled": true,
+ "rate": "162300000000000000000"
+ },
+ "out": {
+ "capacity": "655500000000000000000000",
+ "isEnabled": true,
+ "rate": "131100000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "561000000000000000000000",
+ "isEnabled": true,
+ "rate": "112200000000000000000"
+ },
+ "out": {
+ "capacity": "894000000000000000000000",
+ "isEnabled": true,
+ "rate": "178800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "829500000000000000000000",
+ "isEnabled": true,
+ "rate": "165900000000000000000"
+ },
+ "out": {
+ "capacity": "519000000000000000000000",
+ "isEnabled": true,
+ "rate": "103800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "997500000000000000000000",
+ "isEnabled": true,
+ "rate": "199500000000000000000"
+ },
+ "out": {
+ "capacity": "981000000000000000000000",
+ "isEnabled": true,
+ "rate": "196200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "861000000000000000000000",
+ "isEnabled": true,
+ "rate": "172200000000000000000"
+ },
+ "out": {
+ "capacity": "933000000000000000000000",
+ "isEnabled": true,
+ "rate": "186600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "852000000000000000000000",
+ "isEnabled": true,
+ "rate": "170400000000000000000"
+ },
+ "out": {
+ "capacity": "751500000000000000000000",
+ "isEnabled": true,
+ "rate": "150300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "616500000000000000000000",
+ "isEnabled": true,
+ "rate": "123300000000000000000"
+ },
+ "out": {
+ "capacity": "1006500000000000000000000",
+ "isEnabled": true,
+ "rate": "201300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "766500000000000000000000",
+ "isEnabled": true,
+ "rate": "153300000000000000000"
+ },
+ "out": {
+ "capacity": "540000000000000000000000",
+ "isEnabled": true,
+ "rate": "108000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "541500000000000000000000",
+ "isEnabled": true,
+ "rate": "108300000000000000000"
+ },
+ "out": {
+ "capacity": "708000000000000000000000",
+ "isEnabled": true,
+ "rate": "141600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "574500000000000000000000",
+ "isEnabled": true,
+ "rate": "114900000000000000000"
+ },
+ "out": {
+ "capacity": "583500000000000000000000",
+ "isEnabled": true,
+ "rate": "116700000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "936000000000000000000000",
+ "isEnabled": true,
+ "rate": "187200000000000000000"
+ },
+ "out": {
+ "capacity": "487500000000000000000000",
+ "isEnabled": true,
+ "rate": "97500000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "846000000000000000000000",
+ "isEnabled": true,
+ "rate": "169200000000000000000"
+ },
+ "out": {
+ "capacity": "783000000000000000000000",
+ "isEnabled": true,
+ "rate": "156600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "865500000000000000000000",
+ "isEnabled": true,
+ "rate": "173100000000000000000"
+ },
+ "out": {
+ "capacity": "951000000000000000000000",
+ "isEnabled": true,
+ "rate": "190200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "642000000000000000000000",
+ "isEnabled": true,
+ "rate": "128400000000000000000"
+ },
+ "out": {
+ "capacity": "604500000000000000000000",
+ "isEnabled": true,
+ "rate": "120900000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "847500000000000000000000",
+ "isEnabled": true,
+ "rate": "169500000000000000000"
+ },
+ "out": {
+ "capacity": "1026000000000000000000000",
+ "isEnabled": true,
+ "rate": "205200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "654000000000000000000000",
+ "isEnabled": true,
+ "rate": "130800000000000000000"
+ },
+ "out": {
+ "capacity": "492000000000000000000000",
+ "isEnabled": true,
+ "rate": "98400000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "666000000000000000000000",
+ "isEnabled": true,
+ "rate": "133200000000000000000"
+ },
+ "out": {
+ "capacity": "642000000000000000000000",
+ "isEnabled": true,
+ "rate": "128400000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "478500000000000000000000",
+ "isEnabled": true,
+ "rate": "95700000000000000000"
+ },
+ "out": {
+ "capacity": "508500000000000000000000",
+ "isEnabled": true,
+ "rate": "101700000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "808500000000000000000000",
+ "isEnabled": true,
+ "rate": "161700000000000000000"
+ },
+ "out": {
+ "capacity": "525000000000000000000000",
+ "isEnabled": true,
+ "rate": "105000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "822000000000000000000000",
+ "isEnabled": true,
+ "rate": "164400000000000000000"
+ },
+ "out": {
+ "capacity": "924000000000000000000000",
+ "isEnabled": true,
+ "rate": "184800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "300000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "GRT": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "302000000000000000000000",
+ "isEnabled": true,
+ "rate": "3495370369140000000"
+ },
+ "out": {
+ "capacity": "587000000000000000000000",
+ "isEnabled": true,
+ "rate": "6793981479090000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "554000000000000000000000",
+ "isEnabled": true,
+ "rate": "6412037034780000000"
+ },
+ "out": {
+ "capacity": "534000000000000000000000",
+ "isEnabled": true,
+ "rate": "6180555553380000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "316000000000000000000000",
+ "isEnabled": true,
+ "rate": "3657407406120000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787037035000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "611000000000000000000000",
+ "isEnabled": true,
+ "rate": "7071759256770000000"
+ },
+ "out": {
+ "capacity": "466000000000000000000000",
+ "isEnabled": true,
+ "rate": "5393518516620000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "hyETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "15120000000000000000",
+ "isEnabled": true,
+ "rate": "1080000000000000"
+ },
+ "out": {
+ "capacity": "16436000000000000000",
+ "isEnabled": true,
+ "rate": "1174000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ },
+ "out": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "272000000000000000000",
+ "isEnabled": true,
+ "rate": "18876800000000000"
+ },
+ "out": {
+ "capacity": "189000000000000000000",
+ "isEnabled": true,
+ "rate": "13116600000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "34700000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "34700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "10612000000000000000",
+ "isEnabled": true,
+ "rate": "758000000000000"
+ },
+ "out": {
+ "capacity": "13692000000000000000",
+ "isEnabled": true,
+ "rate": "978000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ },
+ "out": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "11452000000000000000",
+ "isEnabled": true,
+ "rate": "818000000000000"
+ },
+ "out": {
+ "capacity": "12572000000000000000",
+ "isEnabled": true,
+ "rate": "898000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ },
+ "out": {
+ "capacity": "28000000000000000000",
+ "isEnabled": true,
+ "rate": "2000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "IBTC": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "189450000",
+ "isEnabled": true,
+ "rate": "35069"
+ },
+ "out": {
+ "capacity": "266400000",
+ "isEnabled": true,
+ "rate": "49313"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "210150000",
+ "isEnabled": true,
+ "rate": "38901"
+ },
+ "out": {
+ "capacity": "135900000",
+ "isEnabled": true,
+ "rate": "25156"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "202050000",
+ "isEnabled": true,
+ "rate": "37401"
+ },
+ "out": {
+ "capacity": "184950000",
+ "isEnabled": true,
+ "rate": "34236"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "225450000",
+ "isEnabled": true,
+ "rate": "41733"
+ },
+ "out": {
+ "capacity": "265050000",
+ "isEnabled": true,
+ "rate": "49063"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "243450000",
+ "isEnabled": true,
+ "rate": "45065"
+ },
+ "out": {
+ "capacity": "266850000",
+ "isEnabled": true,
+ "rate": "49396"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "267300000",
+ "isEnabled": true,
+ "rate": "49480"
+ },
+ "out": {
+ "capacity": "204300000",
+ "isEnabled": true,
+ "rate": "37818"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "220950000",
+ "isEnabled": true,
+ "rate": "40900"
+ },
+ "out": {
+ "capacity": "170100000",
+ "isEnabled": true,
+ "rate": "31487"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "264600000",
+ "isEnabled": true,
+ "rate": "48980"
+ },
+ "out": {
+ "capacity": "156150000",
+ "isEnabled": true,
+ "rate": "28905"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "295650000",
+ "isEnabled": true,
+ "rate": "54728"
+ },
+ "out": {
+ "capacity": "173250000",
+ "isEnabled": true,
+ "rate": "32070"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "231750000",
+ "isEnabled": true,
+ "rate": "42899"
+ },
+ "out": {
+ "capacity": "278100000",
+ "isEnabled": true,
+ "rate": "51479"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "167400000",
+ "isEnabled": true,
+ "rate": "30987"
+ },
+ "out": {
+ "capacity": "234900000",
+ "isEnabled": true,
+ "rate": "43482"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ },
+ "out": {
+ "capacity": "450000000",
+ "isEnabled": true,
+ "rate": "83300"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ILMT": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "447000000000000",
+ "isEnabled": true,
+ "rate": "124166666666"
+ },
+ "out": {
+ "capacity": "6390000000000000000000000",
+ "isEnabled": true,
+ "rate": "1775000000001420000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000",
+ "isEnabled": true,
+ "rate": "277777777778"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2777777777780000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "531000000000000",
+ "isEnabled": true,
+ "rate": "147500000000"
+ },
+ "out": {
+ "capacity": "671000000000000",
+ "isEnabled": true,
+ "rate": "186388888889"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000",
+ "isEnabled": true,
+ "rate": "277777777778"
+ },
+ "out": {
+ "capacity": "1000000000000000",
+ "isEnabled": true,
+ "rate": "277777777778"
+ }
+ }
+ }
+ }
+ }
+ },
+ "IXT": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "JASMY": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2120000000000000000000000",
+ "isEnabled": true,
+ "rate": "588888851200000000000"
+ },
+ "out": {
+ "capacity": "3280000000000000000000000",
+ "isEnabled": true,
+ "rate": "911111052800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1388888800000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1388888800000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2380000000000000000000000",
+ "isEnabled": true,
+ "rate": "661111068800000000000"
+ },
+ "out": {
+ "capacity": "2335000000000000000000000",
+ "isEnabled": true,
+ "rate": "648611069600000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1388888800000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1388888800000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "JCT": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "kHYPE": {
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "KNET": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LAND": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "10520000000000000000000",
+ "isEnabled": true,
+ "rate": "2919300000000000000"
+ },
+ "out": {
+ "capacity": "6600000000000000000000",
+ "isEnabled": true,
+ "rate": "1831500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "9640000000000000000000",
+ "isEnabled": true,
+ "rate": "2675100000000000000"
+ },
+ "out": {
+ "capacity": "12320000000000000000000",
+ "isEnabled": true,
+ "rate": "3418800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "10140000000000000000000",
+ "isEnabled": true,
+ "rate": "2813850000000000000"
+ },
+ "out": {
+ "capacity": "13840000000000000000000",
+ "isEnabled": true,
+ "rate": "3840600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "11620000000000000000000",
+ "isEnabled": true,
+ "rate": "3224550000000000000"
+ },
+ "out": {
+ "capacity": "10340000000000000000000",
+ "isEnabled": true,
+ "rate": "2869350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6660000000000000000000",
+ "isEnabled": true,
+ "rate": "1848150000000000000"
+ },
+ "out": {
+ "capacity": "10280000000000000000000",
+ "isEnabled": true,
+ "rate": "2852700000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "10060000000000000000000",
+ "isEnabled": true,
+ "rate": "2791650000000000000"
+ },
+ "out": {
+ "capacity": "13040000000000000000000",
+ "isEnabled": true,
+ "rate": "3618600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000",
+ "isEnabled": true,
+ "rate": "5550000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LBTC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2605000000",
+ "isEnabled": true,
+ "rate": "241203"
+ },
+ "out": {
+ "capacity": "2145000000",
+ "isEnabled": true,
+ "rate": "198611"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1880000000",
+ "isEnabled": true,
+ "rate": "174074"
+ },
+ "out": {
+ "capacity": "1795000000",
+ "isEnabled": true,
+ "rate": "166203"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2080000000",
+ "isEnabled": true,
+ "rate": "192592"
+ },
+ "out": {
+ "capacity": "2305000000",
+ "isEnabled": true,
+ "rate": "213425"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2890000000",
+ "isEnabled": true,
+ "rate": "267592"
+ },
+ "out": {
+ "capacity": "3255000000",
+ "isEnabled": true,
+ "rate": "301388"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "2975000000",
+ "isEnabled": true,
+ "rate": "275462"
+ },
+ "out": {
+ "capacity": "1780000000",
+ "isEnabled": true,
+ "rate": "164814"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1980000000",
+ "isEnabled": true,
+ "rate": "183333"
+ },
+ "out": {
+ "capacity": "3430000000",
+ "isEnabled": true,
+ "rate": "317592"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3350000000",
+ "isEnabled": true,
+ "rate": "310185"
+ },
+ "out": {
+ "capacity": "2880000000",
+ "isEnabled": true,
+ "rate": "266666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3165000000",
+ "isEnabled": true,
+ "rate": "293055"
+ },
+ "out": {
+ "capacity": "2425000000",
+ "isEnabled": true,
+ "rate": "224537"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3420000000",
+ "isEnabled": true,
+ "rate": "316666"
+ },
+ "out": {
+ "capacity": "1690000000",
+ "isEnabled": true,
+ "rate": "156481"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2305000000",
+ "isEnabled": true,
+ "rate": "213425"
+ },
+ "out": {
+ "capacity": "1710000000",
+ "isEnabled": true,
+ "rate": "158333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3140000000",
+ "isEnabled": true,
+ "rate": "290740"
+ },
+ "out": {
+ "capacity": "1505000000",
+ "isEnabled": true,
+ "rate": "139351"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "2775000000",
+ "isEnabled": true,
+ "rate": "256944"
+ },
+ "out": {
+ "capacity": "1885000000",
+ "isEnabled": true,
+ "rate": "174537"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3170000000",
+ "isEnabled": true,
+ "rate": "293518"
+ },
+ "out": {
+ "capacity": "2445000000",
+ "isEnabled": true,
+ "rate": "226388"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2585000000",
+ "isEnabled": true,
+ "rate": "239351"
+ },
+ "out": {
+ "capacity": "2665000000",
+ "isEnabled": true,
+ "rate": "246759"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "corn-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2040000000",
+ "isEnabled": true,
+ "rate": "188888"
+ },
+ "out": {
+ "capacity": "1550000000",
+ "isEnabled": true,
+ "rate": "143518"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1835000000",
+ "isEnabled": true,
+ "rate": "169907"
+ },
+ "out": {
+ "capacity": "2040000000",
+ "isEnabled": true,
+ "rate": "188888"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "monad-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "polygon-mainnet-katana": {
+ "custom": null,
+ "standard": null
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2840000000",
+ "isEnabled": true,
+ "rate": "262962"
+ },
+ "out": {
+ "capacity": "1800000000",
+ "isEnabled": true,
+ "rate": "166666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "etherlink-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1515000000",
+ "isEnabled": true,
+ "rate": "140277"
+ },
+ "out": {
+ "capacity": "2630000000",
+ "isEnabled": true,
+ "rate": "243518"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2730000000",
+ "isEnabled": true,
+ "rate": "252777"
+ },
+ "out": {
+ "capacity": "2345000000",
+ "isEnabled": true,
+ "rate": "217129"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2095000000",
+ "isEnabled": true,
+ "rate": "193981"
+ },
+ "out": {
+ "capacity": "2805000000",
+ "isEnabled": true,
+ "rate": "259722"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1555000000",
+ "isEnabled": true,
+ "rate": "143981"
+ },
+ "out": {
+ "capacity": "2600000000",
+ "isEnabled": true,
+ "rate": "240740"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "corn-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2240000000",
+ "isEnabled": true,
+ "rate": "207407"
+ },
+ "out": {
+ "capacity": "1695000000",
+ "isEnabled": true,
+ "rate": "156944"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2820000000",
+ "isEnabled": true,
+ "rate": "261111"
+ },
+ "out": {
+ "capacity": "3490000000",
+ "isEnabled": true,
+ "rate": "323148"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "etherlink-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3260000000",
+ "isEnabled": true,
+ "rate": "301851"
+ },
+ "out": {
+ "capacity": "1590000000",
+ "isEnabled": true,
+ "rate": "147222"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1705000000",
+ "isEnabled": true,
+ "rate": "157870"
+ },
+ "out": {
+ "capacity": "2200000000",
+ "isEnabled": true,
+ "rate": "203703"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "2975000000",
+ "isEnabled": true,
+ "rate": "275462"
+ },
+ "out": {
+ "capacity": "3015000000",
+ "isEnabled": true,
+ "rate": "279166"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2530000000",
+ "isEnabled": true,
+ "rate": "234259"
+ },
+ "out": {
+ "capacity": "3130000000",
+ "isEnabled": true,
+ "rate": "289814"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "tac-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2700000000",
+ "isEnabled": true,
+ "rate": "250000"
+ },
+ "out": {
+ "capacity": "2595000000",
+ "isEnabled": true,
+ "rate": "240277"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "monad-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2085000000",
+ "isEnabled": true,
+ "rate": "193055"
+ },
+ "out": {
+ "capacity": "3255000000",
+ "isEnabled": true,
+ "rate": "301388"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1740000000",
+ "isEnabled": true,
+ "rate": "161111"
+ },
+ "out": {
+ "capacity": "3395000000",
+ "isEnabled": true,
+ "rate": "314351"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1655000000",
+ "isEnabled": true,
+ "rate": "153240"
+ },
+ "out": {
+ "capacity": "1630000000",
+ "isEnabled": true,
+ "rate": "150925"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2720000000",
+ "isEnabled": true,
+ "rate": "251851"
+ },
+ "out": {
+ "capacity": "3260000000",
+ "isEnabled": true,
+ "rate": "301851"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": null,
+ "standard": null
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1910000000",
+ "isEnabled": true,
+ "rate": "176851"
+ },
+ "out": {
+ "capacity": "1560000000",
+ "isEnabled": true,
+ "rate": "144444"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2710000000",
+ "isEnabled": true,
+ "rate": "250925"
+ },
+ "out": {
+ "capacity": "2365000000",
+ "isEnabled": true,
+ "rate": "218981"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2535000000",
+ "isEnabled": true,
+ "rate": "234722"
+ },
+ "out": {
+ "capacity": "3400000000",
+ "isEnabled": true,
+ "rate": "314814"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1850000000",
+ "isEnabled": true,
+ "rate": "171296"
+ },
+ "out": {
+ "capacity": "2830000000",
+ "isEnabled": true,
+ "rate": "262037"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2200000000",
+ "isEnabled": true,
+ "rate": "203703"
+ },
+ "out": {
+ "capacity": "2695000000",
+ "isEnabled": true,
+ "rate": "249537"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2745000000",
+ "isEnabled": true,
+ "rate": "254166"
+ },
+ "out": {
+ "capacity": "3405000000",
+ "isEnabled": true,
+ "rate": "315277"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1615000000",
+ "isEnabled": true,
+ "rate": "149537"
+ },
+ "out": {
+ "capacity": "3045000000",
+ "isEnabled": true,
+ "rate": "281944"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2195000000",
+ "isEnabled": true,
+ "rate": "203240"
+ },
+ "out": {
+ "capacity": "3000000000",
+ "isEnabled": true,
+ "rate": "277777"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2235000000",
+ "isEnabled": true,
+ "rate": "206944"
+ },
+ "out": {
+ "capacity": "3220000000",
+ "isEnabled": true,
+ "rate": "298148"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2855000000",
+ "isEnabled": true,
+ "rate": "264351"
+ },
+ "out": {
+ "capacity": "3280000000",
+ "isEnabled": true,
+ "rate": "303703"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2860000000",
+ "isEnabled": true,
+ "rate": "264814"
+ },
+ "out": {
+ "capacity": "1525000000",
+ "isEnabled": true,
+ "rate": "141203"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1805000000",
+ "isEnabled": true,
+ "rate": "167129"
+ },
+ "out": {
+ "capacity": "2605000000",
+ "isEnabled": true,
+ "rate": "241203"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3260000000",
+ "isEnabled": true,
+ "rate": "301851"
+ },
+ "out": {
+ "capacity": "1630000000",
+ "isEnabled": true,
+ "rate": "150925"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "2250000000",
+ "isEnabled": true,
+ "rate": "208333"
+ },
+ "out": {
+ "capacity": "3380000000",
+ "isEnabled": true,
+ "rate": "312962"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3230000000",
+ "isEnabled": true,
+ "rate": "299074"
+ },
+ "out": {
+ "capacity": "2370000000",
+ "isEnabled": true,
+ "rate": "219444"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "stable-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1900000000",
+ "isEnabled": true,
+ "rate": "175925"
+ },
+ "out": {
+ "capacity": "1950000000",
+ "isEnabled": true,
+ "rate": "180555"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3115000000",
+ "isEnabled": true,
+ "rate": "288425"
+ },
+ "out": {
+ "capacity": "1970000000",
+ "isEnabled": true,
+ "rate": "182407"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2070000000",
+ "isEnabled": true,
+ "rate": "191666"
+ },
+ "out": {
+ "capacity": "2325000000",
+ "isEnabled": true,
+ "rate": "215277"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "1760000000",
+ "isEnabled": true,
+ "rate": "162962"
+ },
+ "out": {
+ "capacity": "3205000000",
+ "isEnabled": true,
+ "rate": "296759"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2255000000",
+ "isEnabled": true,
+ "rate": "208796"
+ },
+ "out": {
+ "capacity": "1965000000",
+ "isEnabled": true,
+ "rate": "181944"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ },
+ "tac-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2475000000",
+ "isEnabled": true,
+ "rate": "229166"
+ },
+ "out": {
+ "capacity": "1790000000",
+ "isEnabled": true,
+ "rate": "165740"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "462963"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LDY": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1635000000000000000000000",
+ "isEnabled": true,
+ "rate": "18922400000000000000"
+ },
+ "out": {
+ "capacity": "1113000000000000000000000",
+ "isEnabled": true,
+ "rate": "12881120000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1995000000000000000000000",
+ "isEnabled": true,
+ "rate": "23088800000000000000"
+ },
+ "out": {
+ "capacity": "1224000000000000000000000",
+ "isEnabled": true,
+ "rate": "14165760000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1215000000000000000000000",
+ "isEnabled": true,
+ "rate": "14061600000000000000"
+ },
+ "out": {
+ "capacity": "1647000000000000000000000",
+ "isEnabled": true,
+ "rate": "19061280000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1101000000000000000000000",
+ "isEnabled": true,
+ "rate": "12742240000000000000"
+ },
+ "out": {
+ "capacity": "1644000000000000000000000",
+ "isEnabled": true,
+ "rate": "19026560000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1812000000000000000000000",
+ "isEnabled": true,
+ "rate": "20970880000000000000"
+ },
+ "out": {
+ "capacity": "1185000000000000000000000",
+ "isEnabled": true,
+ "rate": "13714400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1260000000000000000000000",
+ "isEnabled": true,
+ "rate": "14582400000000000000"
+ },
+ "out": {
+ "capacity": "1119000000000000000000000",
+ "isEnabled": true,
+ "rate": "12950560000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LEASH": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "celo-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LEND": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LINK": {
+ "0g-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ab-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "aptos-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3135000000000",
+ "isEnabled": true,
+ "rate": "870276000"
+ },
+ "out": {
+ "capacity": "1990000000000",
+ "isEnabled": true,
+ "rate": "552424000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1595000000000",
+ "isEnabled": true,
+ "rate": "442772000"
+ },
+ "out": {
+ "capacity": "1945000000000",
+ "isEnabled": true,
+ "rate": "539932000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1885000000000",
+ "isEnabled": true,
+ "rate": "523276000"
+ },
+ "out": {
+ "capacity": "3380000000000",
+ "isEnabled": true,
+ "rate": "938288000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ }
+ }
+ }
+ }
+ },
+ "celo-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19350000000000000000000",
+ "isEnabled": true,
+ "rate": "5371560000000000000"
+ },
+ "out": {
+ "capacity": "32800000000000000000000",
+ "isEnabled": true,
+ "rate": "9105280000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "32600000000000000000000",
+ "isEnabled": true,
+ "rate": "9049760000000000000"
+ },
+ "out": {
+ "capacity": "29850000000000000000000",
+ "isEnabled": true,
+ "rate": "8286360000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2285000000000",
+ "isEnabled": true,
+ "rate": "634316000"
+ },
+ "out": {
+ "capacity": "15550000000000000000000",
+ "isEnabled": true,
+ "rate": "4316680000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "17150000000000000000000",
+ "isEnabled": true,
+ "rate": "4760840000000000000"
+ },
+ "out": {
+ "capacity": "19500000000000000000000",
+ "isEnabled": true,
+ "rate": "5413200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "16550000000000000000000",
+ "isEnabled": true,
+ "rate": "4594280000000000000"
+ },
+ "out": {
+ "capacity": "25850000000000000000000",
+ "isEnabled": true,
+ "rate": "7175960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "24950000000000000000000",
+ "isEnabled": true,
+ "rate": "6926120000000000000"
+ },
+ "out": {
+ "capacity": "20300000000000000000000",
+ "isEnabled": true,
+ "rate": "5635280000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19850000000000",
+ "isEnabled": true,
+ "rate": "5510360000"
+ },
+ "out": {
+ "capacity": "17550000000000000000000",
+ "isEnabled": true,
+ "rate": "4871880000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "30850000000000000000000",
+ "isEnabled": true,
+ "rate": "8563960000000000000"
+ },
+ "out": {
+ "capacity": "28350000000000000000000",
+ "isEnabled": true,
+ "rate": "7869960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "16100000000000000000000",
+ "isEnabled": true,
+ "rate": "4469360000000000000"
+ },
+ "out": {
+ "capacity": "16150000000000000000000",
+ "isEnabled": true,
+ "rate": "4483240000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "26750000000000000000000",
+ "isEnabled": true,
+ "rate": "7425800000000000000"
+ },
+ "out": {
+ "capacity": "27100000000000000000000",
+ "isEnabled": true,
+ "rate": "7522960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "30600000000000000000000",
+ "isEnabled": true,
+ "rate": "8494560000000000000"
+ },
+ "out": {
+ "capacity": "25200000000000000000000",
+ "isEnabled": true,
+ "rate": "6995520000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "28600000000000000000000",
+ "isEnabled": true,
+ "rate": "7939360000000000000"
+ },
+ "out": {
+ "capacity": "25950000000000000000000",
+ "isEnabled": true,
+ "rate": "7203720000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19800000000000000000000",
+ "isEnabled": true,
+ "rate": "5496480000000000000"
+ },
+ "out": {
+ "capacity": "24400000000000000000000",
+ "isEnabled": true,
+ "rate": "6773440000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "jovay-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ab-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1710000000000",
+ "isEnabled": true,
+ "rate": "474696000"
+ },
+ "out": {
+ "capacity": "22100000000000000000000",
+ "isEnabled": true,
+ "rate": "6134960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19600000000000000000000",
+ "isEnabled": true,
+ "rate": "5440960000000000000"
+ },
+ "out": {
+ "capacity": "26250000000000000000000",
+ "isEnabled": true,
+ "rate": "7287000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "17050000000000000000000",
+ "isEnabled": true,
+ "rate": "4733080000000000000"
+ },
+ "out": {
+ "capacity": "29900000000000000000000",
+ "isEnabled": true,
+ "rate": "8300240000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "33650000000000000000000",
+ "isEnabled": true,
+ "rate": "9341240000000000000"
+ },
+ "out": {
+ "capacity": "24250000000000000000000",
+ "isEnabled": true,
+ "rate": "6731800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "23700000000000000000000",
+ "isEnabled": true,
+ "rate": "6579120000000000000"
+ },
+ "out": {
+ "capacity": "32350000000000000000000",
+ "isEnabled": true,
+ "rate": "8980360000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "16950000000000000000000",
+ "isEnabled": true,
+ "rate": "4705320000000000000"
+ },
+ "out": {
+ "capacity": "22950000000000000000000",
+ "isEnabled": true,
+ "rate": "6370920000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "25500000000000000000000",
+ "isEnabled": true,
+ "rate": "7078800000000000000"
+ },
+ "out": {
+ "capacity": "28350000000000000000000",
+ "isEnabled": true,
+ "rate": "7869960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "20150000000000000000000",
+ "isEnabled": true,
+ "rate": "5593640000000000000"
+ },
+ "out": {
+ "capacity": "20500000000000000000000",
+ "isEnabled": true,
+ "rate": "5690800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "jovay-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "morph-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "31900000000000000000000",
+ "isEnabled": true,
+ "rate": "2953940000000000000"
+ },
+ "out": {
+ "capacity": "28450000000000000000000",
+ "isEnabled": true,
+ "rate": "2634470000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "22800000000000000000000",
+ "isEnabled": true,
+ "rate": "2111280000000000000"
+ },
+ "out": {
+ "capacity": "25550000000000000000000",
+ "isEnabled": true,
+ "rate": "2365930000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "17550000000000",
+ "isEnabled": true,
+ "rate": "4871880000"
+ },
+ "out": {
+ "capacity": "21750000000000000000000",
+ "isEnabled": true,
+ "rate": "6037800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "31350000000000000000000",
+ "isEnabled": true,
+ "rate": "2903010000000000000"
+ },
+ "out": {
+ "capacity": "30600000000000000000000",
+ "isEnabled": true,
+ "rate": "2833560000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "16250000000000000000000",
+ "isEnabled": true,
+ "rate": "1504750000000000000"
+ },
+ "out": {
+ "capacity": "27450000000000000000000",
+ "isEnabled": true,
+ "rate": "2541870000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "stable-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "tac-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19200000000000000000000",
+ "isEnabled": true,
+ "rate": "1777920000000000000"
+ },
+ "out": {
+ "capacity": "33900000000000000000000",
+ "isEnabled": true,
+ "rate": "3139140000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "xdc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "morph-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "21200000000000000000000",
+ "isEnabled": true,
+ "rate": "1963120000000000000"
+ },
+ "out": {
+ "capacity": "26600000000000000000000",
+ "isEnabled": true,
+ "rate": "2463160000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "23850000000000000000000",
+ "isEnabled": true,
+ "rate": "2208510000000000000"
+ },
+ "out": {
+ "capacity": "18600000000000000000000",
+ "isEnabled": true,
+ "rate": "1722360000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "28450000000000000000000",
+ "isEnabled": true,
+ "rate": "2634470000000000000"
+ },
+ "out": {
+ "capacity": "27350000000000000000000",
+ "isEnabled": true,
+ "rate": "2532610000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "33250000000000000000000",
+ "isEnabled": true,
+ "rate": "3078950000000000000"
+ },
+ "out": {
+ "capacity": "23750000000000000000000",
+ "isEnabled": true,
+ "rate": "2199250000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "21100000000000",
+ "isEnabled": true,
+ "rate": "5857360000"
+ },
+ "out": {
+ "capacity": "20750000000000",
+ "isEnabled": true,
+ "rate": "5760200000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "25300000000000",
+ "isEnabled": true,
+ "rate": "7023280000"
+ },
+ "out": {
+ "capacity": "30700000000000",
+ "isEnabled": true,
+ "rate": "8522320000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "18300000000000",
+ "isEnabled": true,
+ "rate": "5080080000"
+ },
+ "out": {
+ "capacity": "26100000000000",
+ "isEnabled": true,
+ "rate": "7245360000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "28800000000000000000000",
+ "isEnabled": true,
+ "rate": "2666880000000000000"
+ },
+ "out": {
+ "capacity": "18050000000000000000000",
+ "isEnabled": true,
+ "rate": "1671430000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "18250000000000000000000",
+ "isEnabled": true,
+ "rate": "1689950000000000000"
+ },
+ "out": {
+ "capacity": "19350000000000000000000",
+ "isEnabled": true,
+ "rate": "1791810000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2045000000000",
+ "isEnabled": true,
+ "rate": "567692000"
+ },
+ "out": {
+ "capacity": "21000000000000000000000",
+ "isEnabled": true,
+ "rate": "5829600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "22300000000000000000000",
+ "isEnabled": true,
+ "rate": "2064980000000000000"
+ },
+ "out": {
+ "capacity": "16200000000000000000000",
+ "isEnabled": true,
+ "rate": "1500120000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19650000000000",
+ "isEnabled": true,
+ "rate": "5454840000"
+ },
+ "out": {
+ "capacity": "17400000000000000000000",
+ "isEnabled": true,
+ "rate": "4830240000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000",
+ "isEnabled": true,
+ "rate": "13880000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "13880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "stable-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "tac-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "32900000000000000000000",
+ "isEnabled": true,
+ "rate": "3046540000000000000"
+ },
+ "out": {
+ "capacity": "29200000000000000000000",
+ "isEnabled": true,
+ "rate": "2703920000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "4630000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LsETH": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LUA": {
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LUAUSD": {
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LUISA": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "LYP": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "15100000000000000000000",
+ "isEnabled": true,
+ "rate": "25166666666656600000"
+ },
+ "out": {
+ "capacity": "19000000000000000000000",
+ "isEnabled": true,
+ "rate": "31666666666654000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "83333333333300000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "83333333333300000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "19450000000000000000000",
+ "isEnabled": true,
+ "rate": "32416666666653700000"
+ },
+ "out": {
+ "capacity": "20450000000000000000000",
+ "isEnabled": true,
+ "rate": "34083333333319700000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "83333333333300000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "83333333333300000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mBTC": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "194000000",
+ "isEnabled": true,
+ "rate": "8981"
+ },
+ "out": {
+ "capacity": "164800000",
+ "isEnabled": true,
+ "rate": "7629"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "170000000",
+ "isEnabled": true,
+ "rate": "7870"
+ },
+ "out": {
+ "capacity": "213200000",
+ "isEnabled": true,
+ "rate": "9870"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "250400000",
+ "isEnabled": true,
+ "rate": "11592"
+ },
+ "out": {
+ "capacity": "235200000",
+ "isEnabled": true,
+ "rate": "10888"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "222000000",
+ "isEnabled": true,
+ "rate": "10277"
+ },
+ "out": {
+ "capacity": "122000000",
+ "isEnabled": true,
+ "rate": "5647"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "161600000",
+ "isEnabled": true,
+ "rate": "7481"
+ },
+ "out": {
+ "capacity": "195200000",
+ "isEnabled": true,
+ "rate": "9036"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "132800000",
+ "isEnabled": true,
+ "rate": "6147"
+ },
+ "out": {
+ "capacity": "228400000",
+ "isEnabled": true,
+ "rate": "10573"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "246000000",
+ "isEnabled": true,
+ "rate": "11388"
+ },
+ "out": {
+ "capacity": "267600000",
+ "isEnabled": true,
+ "rate": "12388"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "208400000",
+ "isEnabled": true,
+ "rate": "9647"
+ },
+ "out": {
+ "capacity": "234800000",
+ "isEnabled": true,
+ "rate": "10870"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "132800000",
+ "isEnabled": true,
+ "rate": "6147"
+ },
+ "out": {
+ "capacity": "266000000",
+ "isEnabled": true,
+ "rate": "12314"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "157600000",
+ "isEnabled": true,
+ "rate": "7296"
+ },
+ "out": {
+ "capacity": "135600000",
+ "isEnabled": true,
+ "rate": "6277"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "244800000",
+ "isEnabled": true,
+ "rate": "11333"
+ },
+ "out": {
+ "capacity": "263200000",
+ "isEnabled": true,
+ "rate": "12184"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "136400000",
+ "isEnabled": true,
+ "rate": "6314"
+ },
+ "out": {
+ "capacity": "214400000",
+ "isEnabled": true,
+ "rate": "9925"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "154800000",
+ "isEnabled": true,
+ "rate": "7166"
+ },
+ "out": {
+ "capacity": "155200000",
+ "isEnabled": true,
+ "rate": "7184"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ },
+ "out": {
+ "capacity": "400000000",
+ "isEnabled": true,
+ "rate": "18518"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mDLP": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "280800000000000000000000",
+ "isEnabled": true,
+ "rate": "3246750000000000000"
+ },
+ "out": {
+ "capacity": "187616000000000000000000",
+ "isEnabled": true,
+ "rate": "2169310000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "416000000000000000000000",
+ "isEnabled": true,
+ "rate": "4810000000000000000"
+ },
+ "out": {
+ "capacity": "416000000000000000000000",
+ "isEnabled": true,
+ "rate": "4810000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "279968000000000000000000",
+ "isEnabled": true,
+ "rate": "3237130000000000000"
+ },
+ "out": {
+ "capacity": "173472000000000000000000",
+ "isEnabled": true,
+ "rate": "2005770000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "416000000000000000000000",
+ "isEnabled": true,
+ "rate": "4810000000000000000"
+ },
+ "out": {
+ "capacity": "416000000000000000000000",
+ "isEnabled": true,
+ "rate": "4810000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MEEM": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "6120000000000000000000",
+ "isEnabled": true,
+ "rate": "1701360000000000000"
+ },
+ "out": {
+ "capacity": "4140000000000000000000",
+ "isEnabled": true,
+ "rate": "1150920000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "2780000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "2780000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "Memento": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "300000000000000000000",
+ "isEnabled": true,
+ "rate": "3472200000000000"
+ },
+ "out": {
+ "capacity": "356000000000000000000",
+ "isEnabled": true,
+ "rate": "4120344000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "433400000000000000000",
+ "isEnabled": true,
+ "rate": "5016203514000000"
+ },
+ "out": {
+ "capacity": "452000000000000000000",
+ "isEnabled": true,
+ "rate": "5231448000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "729300000000000000000",
+ "isEnabled": true,
+ "rate": "8440971903000000"
+ },
+ "out": {
+ "capacity": "344000000000000000000",
+ "isEnabled": true,
+ "rate": "3981456000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "742500000000000000000",
+ "isEnabled": true,
+ "rate": "8593749675000000"
+ },
+ "out": {
+ "capacity": "478000000000000000000",
+ "isEnabled": true,
+ "rate": "5532372000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "33275000000000000000000",
+ "isEnabled": true,
+ "rate": "385127314770000000"
+ },
+ "out": {
+ "capacity": "18950000000000000000000",
+ "isEnabled": true,
+ "rate": "219328703816000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "55000000000000000000000",
+ "isEnabled": true,
+ "rate": "636574074000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "578703704000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "701800000000000000000",
+ "isEnabled": true,
+ "rate": "8122684878000000"
+ },
+ "out": {
+ "capacity": "674000000000000000000",
+ "isEnabled": true,
+ "rate": "7800876000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "437800000000000000000",
+ "isEnabled": true,
+ "rate": "5067129438000000"
+ },
+ "out": {
+ "capacity": "659000000000000000000",
+ "isEnabled": true,
+ "rate": "7627266000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "19635000000000000000000",
+ "isEnabled": true,
+ "rate": "227256944418000000"
+ },
+ "out": {
+ "capacity": "20650000000000000000000",
+ "isEnabled": true,
+ "rate": "239004629752000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "55000000000000000000000",
+ "isEnabled": true,
+ "rate": "636574074000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "578703704000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "672100000000000000000",
+ "isEnabled": true,
+ "rate": "7778934891000000"
+ },
+ "out": {
+ "capacity": "572000000000000000000",
+ "isEnabled": true,
+ "rate": "6620328000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "730400000000000000000",
+ "isEnabled": true,
+ "rate": "8453703384000000"
+ },
+ "out": {
+ "capacity": "483000000000000000000",
+ "isEnabled": true,
+ "rate": "5590242000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "695200000000000000000",
+ "isEnabled": true,
+ "rate": "8046295992000000"
+ },
+ "out": {
+ "capacity": "415000000000000000000",
+ "isEnabled": true,
+ "rate": "4803210000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "499400000000000000000",
+ "isEnabled": true,
+ "rate": "5780092374000000"
+ },
+ "out": {
+ "capacity": "615000000000000000000",
+ "isEnabled": true,
+ "rate": "7118010000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1100000000000000000000",
+ "isEnabled": true,
+ "rate": "12731481000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "METO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "46307692354000000000000000",
+ "isEnabled": true,
+ "rate": "12863247040000000000000"
+ },
+ "out": {
+ "capacity": "31000000031000000000000000",
+ "isEnabled": true,
+ "rate": "8611110560000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "76923077000000000000000000",
+ "isEnabled": true,
+ "rate": "21367520000000000000000"
+ },
+ "out": {
+ "capacity": "76923077000000000000000000",
+ "isEnabled": true,
+ "rate": "21367520000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "38692307731000000000000000",
+ "isEnabled": true,
+ "rate": "10747862560000000000000"
+ },
+ "out": {
+ "capacity": "35846153882000000000000000",
+ "isEnabled": true,
+ "rate": "9957264320000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "76923077000000000000000000",
+ "isEnabled": true,
+ "rate": "21367520000000000000000"
+ },
+ "out": {
+ "capacity": "76923077000000000000000000",
+ "isEnabled": true,
+ "rate": "21367520000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MEW": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1610000000000",
+ "isEnabled": true,
+ "rate": "447222221"
+ },
+ "out": {
+ "capacity": "2315000000000",
+ "isEnabled": true,
+ "rate": "643055555"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1980000000000",
+ "isEnabled": true,
+ "rate": "549999999"
+ },
+ "out": {
+ "capacity": "2670000000000",
+ "isEnabled": true,
+ "rate": "741666666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2220000000000",
+ "isEnabled": true,
+ "rate": "616666666"
+ },
+ "out": {
+ "capacity": "3005000000000",
+ "isEnabled": true,
+ "rate": "834722221"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2045000000000",
+ "isEnabled": true,
+ "rate": "568055555"
+ },
+ "out": {
+ "capacity": "2415000000000",
+ "isEnabled": true,
+ "rate": "670833332"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3030000000000",
+ "isEnabled": true,
+ "rate": "841666666"
+ },
+ "out": {
+ "capacity": "3415000000000",
+ "isEnabled": true,
+ "rate": "948611110"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3310000000000",
+ "isEnabled": true,
+ "rate": "919444443"
+ },
+ "out": {
+ "capacity": "3270000000000",
+ "isEnabled": true,
+ "rate": "908333332"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1980000000000",
+ "isEnabled": true,
+ "rate": "549999999"
+ },
+ "out": {
+ "capacity": "2895000000000",
+ "isEnabled": true,
+ "rate": "804166666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3460000000000",
+ "isEnabled": true,
+ "rate": "961111110"
+ },
+ "out": {
+ "capacity": "3345000000000",
+ "isEnabled": true,
+ "rate": "929166666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "1388888888"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MICHI": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5450000000000",
+ "isEnabled": true,
+ "rate": "42903609"
+ },
+ "out": {
+ "capacity": "5870000000000",
+ "isEnabled": true,
+ "rate": "46209943"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "78722220"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "78722220"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3680000000000",
+ "isEnabled": true,
+ "rate": "28969776"
+ },
+ "out": {
+ "capacity": "4350000000000",
+ "isEnabled": true,
+ "rate": "34244165"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "78722220"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "78722220"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MILO": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "2430000000000000000000000",
+ "isEnabled": true,
+ "rate": "56249640000000000000"
+ },
+ "out": {
+ "capacity": "3360000000000000000000000",
+ "isEnabled": true,
+ "rate": "77777280000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1560000000000000000000000",
+ "isEnabled": true,
+ "rate": "36110880000000000000"
+ },
+ "out": {
+ "capacity": "2105000000000000000000000",
+ "isEnabled": true,
+ "rate": "48726540000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mmETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "41300000000000000000",
+ "isEnabled": true,
+ "rate": "3824380000000000"
+ },
+ "out": {
+ "capacity": "36600000000000000000",
+ "isEnabled": true,
+ "rate": "3389160000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "51800000000000000000",
+ "isEnabled": true,
+ "rate": "4796680000000000"
+ },
+ "out": {
+ "capacity": "62000000000000000000",
+ "isEnabled": true,
+ "rate": "5741200000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mstETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "62800000000000000000",
+ "isEnabled": true,
+ "rate": "5815280000000000"
+ },
+ "out": {
+ "capacity": "30600000000000000000",
+ "isEnabled": true,
+ "rate": "2833560000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "69400000000000000000",
+ "isEnabled": true,
+ "rate": "6426440000000000"
+ },
+ "out": {
+ "capacity": "40800000000000000000",
+ "isEnabled": true,
+ "rate": "3778080000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "54500000000000000000",
+ "isEnabled": true,
+ "rate": "5046700000000000"
+ },
+ "out": {
+ "capacity": "64000000000000000000",
+ "isEnabled": true,
+ "rate": "5926400000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "42800000000000000000",
+ "isEnabled": true,
+ "rate": "3963280000000000"
+ },
+ "out": {
+ "capacity": "57500000000000000000",
+ "isEnabled": true,
+ "rate": "5324500000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mswETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "30700000000000000000",
+ "isEnabled": true,
+ "rate": "2842820000000000"
+ },
+ "out": {
+ "capacity": "68700000000000000000",
+ "isEnabled": true,
+ "rate": "6361620000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "52800000000000000000",
+ "isEnabled": true,
+ "rate": "4889280000000000"
+ },
+ "out": {
+ "capacity": "52000000000000000000",
+ "isEnabled": true,
+ "rate": "4815200000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "9260000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MVI": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "774367000000000000000",
+ "isEnabled": true,
+ "rate": "55760000000000000"
+ },
+ "out": {
+ "capacity": "402182000000000000000",
+ "isEnabled": true,
+ "rate": "28960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ },
+ "out": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2203113000000000000000",
+ "isEnabled": true,
+ "rate": "152030000000000000"
+ },
+ "out": {
+ "capacity": "1506516000000000000000",
+ "isEnabled": true,
+ "rate": "103960000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3333000000000000000000",
+ "isEnabled": true,
+ "rate": "230000000000000000"
+ },
+ "out": {
+ "capacity": "3333000000000000000000",
+ "isEnabled": true,
+ "rate": "230000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "482174000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000"
+ },
+ "out": {
+ "capacity": "595496000000000000000",
+ "isEnabled": true,
+ "rate": "42880000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ },
+ "out": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "564388000000000000000",
+ "isEnabled": true,
+ "rate": "40640000000000000"
+ },
+ "out": {
+ "capacity": "539946000000000000000",
+ "isEnabled": true,
+ "rate": "38880000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ },
+ "out": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1739826000000000000000",
+ "isEnabled": true,
+ "rate": "120060000000000000"
+ },
+ "out": {
+ "capacity": "1566510000000000000000",
+ "isEnabled": true,
+ "rate": "108100000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3333000000000000000000",
+ "isEnabled": true,
+ "rate": "230000000000000000"
+ },
+ "out": {
+ "capacity": "3333000000000000000000",
+ "isEnabled": true,
+ "rate": "230000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "586608000000000000000",
+ "isEnabled": true,
+ "rate": "42240000000000000"
+ },
+ "out": {
+ "capacity": "553278000000000000000",
+ "isEnabled": true,
+ "rate": "39840000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ },
+ "out": {
+ "capacity": "1111000000000000000000",
+ "isEnabled": true,
+ "rate": "80000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "mwBETH": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "336500000000000000000",
+ "isEnabled": true,
+ "rate": "30958000000000000"
+ },
+ "out": {
+ "capacity": "262000000000000000000",
+ "isEnabled": true,
+ "rate": "24104000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "46000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "46000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "329500000000000000000",
+ "isEnabled": true,
+ "rate": "30314000000000000"
+ },
+ "out": {
+ "capacity": "211500000000000000000",
+ "isEnabled": true,
+ "rate": "19458000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "46000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000",
+ "isEnabled": true,
+ "rate": "46000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "MYST": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "NEIRO": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "NEKO": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "NPC": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "NUON": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "45700000000000000000000",
+ "isEnabled": true,
+ "rate": "25386350000000000000"
+ },
+ "out": {
+ "capacity": "55300000000000000000000",
+ "isEnabled": true,
+ "rate": "30719150000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "44600000000000000000000",
+ "isEnabled": true,
+ "rate": "24775300000000000000"
+ },
+ "out": {
+ "capacity": "42700000000000000000000",
+ "isEnabled": true,
+ "rate": "23719850000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "51000000000000000000000",
+ "isEnabled": true,
+ "rate": "28330500000000000000"
+ },
+ "out": {
+ "capacity": "34800000000000000000000",
+ "isEnabled": true,
+ "rate": "19331400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "55400000000000000000000",
+ "isEnabled": true,
+ "rate": "30774700000000000000"
+ },
+ "out": {
+ "capacity": "58900000000000000000000",
+ "isEnabled": true,
+ "rate": "32718950000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "62000000000000000000000",
+ "isEnabled": true,
+ "rate": "34441000000000000000"
+ },
+ "out": {
+ "capacity": "48300000000000000000000",
+ "isEnabled": true,
+ "rate": "26830650000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "54500000000000000000000",
+ "isEnabled": true,
+ "rate": "30274750000000000000"
+ },
+ "out": {
+ "capacity": "45700000000000000000000",
+ "isEnabled": true,
+ "rate": "25386350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "NXPC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "OHM": {
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ORNG": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "OSIS": {
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "11250225000000000000000",
+ "isEnabled": true,
+ "rate": "3105000000000000000"
+ },
+ "out": {
+ "capacity": "5266772000000000000000",
+ "isEnabled": true,
+ "rate": "1453600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "16667000000000000000000",
+ "isEnabled": true,
+ "rate": "4600000000000000000"
+ },
+ "out": {
+ "capacity": "16667000000000000000000",
+ "isEnabled": true,
+ "rate": "4600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "7616819000000000000000",
+ "isEnabled": true,
+ "rate": "2102200000000000000"
+ },
+ "out": {
+ "capacity": "7516817000000000000000",
+ "isEnabled": true,
+ "rate": "2074600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "16667000000000000000000",
+ "isEnabled": true,
+ "rate": "4600000000000000000"
+ },
+ "out": {
+ "capacity": "16667000000000000000000",
+ "isEnabled": true,
+ "rate": "4600000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "OVER": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "oXAUT": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6730000000000",
+ "isEnabled": true,
+ "rate": "3365000000"
+ },
+ "out": {
+ "capacity": "6670000000000",
+ "isEnabled": true,
+ "rate": "3335000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-worldchain-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6040000000000",
+ "isEnabled": true,
+ "rate": "3020000000"
+ },
+ "out": {
+ "capacity": "3660000000000",
+ "isEnabled": true,
+ "rate": "1830000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4170000000000",
+ "isEnabled": true,
+ "rate": "2085000000"
+ },
+ "out": {
+ "capacity": "5240000000000",
+ "isEnabled": true,
+ "rate": "2620000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "5400000000000",
+ "isEnabled": true,
+ "rate": "2700000000"
+ },
+ "out": {
+ "capacity": "4830000000000",
+ "isEnabled": true,
+ "rate": "2415000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-worldchain-1": {
+ "custom": {
+ "in": {
+ "capacity": "3950000000000",
+ "isEnabled": true,
+ "rate": "1975000000"
+ },
+ "out": {
+ "capacity": "4760000000000",
+ "isEnabled": true,
+ "rate": "2380000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "PEPE": {
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "28300000000000000000",
+ "isEnabled": true,
+ "rate": "7861111111111111"
+ },
+ "out": {
+ "capacity": "26800000000000000000000000000",
+ "isEnabled": true,
+ "rate": "7444444444444445040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000",
+ "isEnabled": true,
+ "rate": "13888888888888890"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13888888888888890000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "320000000000000",
+ "isEnabled": true,
+ "rate": "88888888888"
+ },
+ "out": {
+ "capacity": "316500000000000",
+ "isEnabled": true,
+ "rate": "87916666666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "138888888889"
+ },
+ "out": {
+ "capacity": "500000000000000",
+ "isEnabled": true,
+ "rate": "138888888889"
+ }
+ }
+ }
+ }
+ }
+ },
+ "PFVS": {
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "pippin": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "PIXEL": {
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "139200000000000000000000000",
+ "isEnabled": true,
+ "rate": "1611111100800000000000"
+ },
+ "out": {
+ "capacity": "103140000000000000000000000",
+ "isEnabled": true,
+ "rate": "1193750000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "300000000000000000000000000",
+ "isEnabled": true,
+ "rate": "3472222200000000000000"
+ },
+ "out": {
+ "capacity": "270000000000000000000000000",
+ "isEnabled": true,
+ "rate": "3125000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "203700000000000000000000000",
+ "isEnabled": true,
+ "rate": "2357638873800000000000"
+ },
+ "out": {
+ "capacity": "99900000000000000000000000",
+ "isEnabled": true,
+ "rate": "1156250000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "300000000000000000000000000",
+ "isEnabled": true,
+ "rate": "3472222200000000000000"
+ },
+ "out": {
+ "capacity": "270000000000000000000000000",
+ "isEnabled": true,
+ "rate": "3125000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "PTsUSDE": {
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "pufETH": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "RDP": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "23600000000000000000000",
+ "isEnabled": true,
+ "rate": "273760000000000000"
+ },
+ "out": {
+ "capacity": "22900000000000000000000",
+ "isEnabled": true,
+ "rate": "265640000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "580000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "580000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "24050000000000000000000",
+ "isEnabled": true,
+ "rate": "278980000000000000"
+ },
+ "out": {
+ "capacity": "16350000000000000000000",
+ "isEnabled": true,
+ "rate": "189660000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "580000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "580000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "REG": {
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "25650000000000000000000",
+ "isEnabled": true,
+ "rate": "7182000000000000000"
+ },
+ "out": {
+ "capacity": "20300000000000000000000",
+ "isEnabled": true,
+ "rate": "5684000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "18450000000000000000000",
+ "isEnabled": true,
+ "rate": "5166000000000000000"
+ },
+ "out": {
+ "capacity": "22450000000000000000000",
+ "isEnabled": true,
+ "rate": "6286000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "20650000000000000000000",
+ "isEnabled": true,
+ "rate": "5782000000000000000"
+ },
+ "out": {
+ "capacity": "31050000000000000000000",
+ "isEnabled": true,
+ "rate": "8694000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "21050000000000000000000",
+ "isEnabled": true,
+ "rate": "5894000000000000000"
+ },
+ "out": {
+ "capacity": "27850000000000000000000",
+ "isEnabled": true,
+ "rate": "7798000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "21050000000000000000000",
+ "isEnabled": true,
+ "rate": "5894000000000000000"
+ },
+ "out": {
+ "capacity": "24850000000000000000000",
+ "isEnabled": true,
+ "rate": "6958000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "31450000000000000000000",
+ "isEnabled": true,
+ "rate": "8806000000000000000"
+ },
+ "out": {
+ "capacity": "31250000000000000000000",
+ "isEnabled": true,
+ "rate": "8750000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "14000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "RETH": {
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "909000000000000000000",
+ "isEnabled": true,
+ "rate": "2922435000000000"
+ },
+ "out": {
+ "capacity": "765000000000000000000",
+ "isEnabled": true,
+ "rate": "2459475000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "720000000000000000000",
+ "isEnabled": true,
+ "rate": "2314800000000000"
+ },
+ "out": {
+ "capacity": "1209600000000000000000",
+ "isEnabled": true,
+ "rate": "3888864000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ }
+ }
+ },
+ "tac-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "925200000000000000000",
+ "isEnabled": true,
+ "rate": "2974518000000000"
+ },
+ "out": {
+ "capacity": "864000000000000000000",
+ "isEnabled": true,
+ "rate": "2777760000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "833400000000000000000",
+ "isEnabled": true,
+ "rate": "2679381000000000"
+ },
+ "out": {
+ "capacity": "709200000000000000000",
+ "isEnabled": true,
+ "rate": "2280078000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ }
+ }
+ }
+ }
+ },
+ "tac-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1117800000000000000000",
+ "isEnabled": true,
+ "rate": "3593727000000000"
+ },
+ "out": {
+ "capacity": "1206000000000000000000",
+ "isEnabled": true,
+ "rate": "3877290000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "RIZE": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "rsETH": {
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SAS": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "savBTC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "savETH": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "savUSD": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polygon-mainnet-katana": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SD": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "204288000000000000000000",
+ "isEnabled": true,
+ "rate": "2364208000000000000"
+ },
+ "out": {
+ "capacity": "181248000000000000000000",
+ "isEnabled": true,
+ "rate": "2097568000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "139008000000000000000000",
+ "isEnabled": true,
+ "rate": "1608728000000000000"
+ },
+ "out": {
+ "capacity": "221952000000000000000000",
+ "isEnabled": true,
+ "rate": "2568632000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "135552000000000000000000",
+ "isEnabled": true,
+ "rate": "1568732000000000000"
+ },
+ "out": {
+ "capacity": "121344000000000000000000",
+ "isEnabled": true,
+ "rate": "1404304000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "185856000000000000000000",
+ "isEnabled": true,
+ "rate": "2150896000000000000"
+ },
+ "out": {
+ "capacity": "220032000000000000000000",
+ "isEnabled": true,
+ "rate": "2546412000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "235776000000000000000000",
+ "isEnabled": true,
+ "rate": "2728616000000000000"
+ },
+ "out": {
+ "capacity": "203904000000000000000000",
+ "isEnabled": true,
+ "rate": "2359764000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "268032000000000000000000",
+ "isEnabled": true,
+ "rate": "3101912000000000000"
+ },
+ "out": {
+ "capacity": "248064000000000000000000",
+ "isEnabled": true,
+ "rate": "2870824000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ },
+ "out": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4444000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "sDAI": {
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "135500000000000000000000",
+ "isEnabled": true,
+ "rate": "37614800000000000000"
+ },
+ "out": {
+ "capacity": "133250000000000000000000",
+ "isEnabled": true,
+ "rate": "36990200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "69400000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "69400000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "133000000000000000000000",
+ "isEnabled": true,
+ "rate": "36920800000000000000"
+ },
+ "out": {
+ "capacity": "82500000000000000000000",
+ "isEnabled": true,
+ "rate": "22902000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "69400000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "69400000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SDL": {
+ "ethereum-mainnet-andromeda-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "302250000000000000000000",
+ "isEnabled": true,
+ "rate": "83622500000000000000"
+ },
+ "out": {
+ "capacity": "436500000000000000000000",
+ "isEnabled": true,
+ "rate": "120765000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "311250000000000000000000",
+ "isEnabled": true,
+ "rate": "86112500000000000000"
+ },
+ "out": {
+ "capacity": "444750000000000000000000",
+ "isEnabled": true,
+ "rate": "123047500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "331500000000000000000000",
+ "isEnabled": true,
+ "rate": "91715000000000000000"
+ },
+ "out": {
+ "capacity": "261750000000000000000000",
+ "isEnabled": true,
+ "rate": "72417500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "353250000000000000000000",
+ "isEnabled": true,
+ "rate": "97732500000000000000"
+ },
+ "out": {
+ "capacity": "327750000000000000000000",
+ "isEnabled": true,
+ "rate": "90677500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "378750000000000000000000",
+ "isEnabled": true,
+ "rate": "104787500000000000000"
+ },
+ "out": {
+ "capacity": "240750000000000000000000",
+ "isEnabled": true,
+ "rate": "66607500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "207500000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SDM": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "sDOLA": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SDT": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "345500000000000000000000",
+ "isEnabled": true,
+ "rate": "95966080000000000000"
+ },
+ "out": {
+ "capacity": "245000000000000000000000",
+ "isEnabled": true,
+ "rate": "68051200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "174500000000000000000000",
+ "isEnabled": true,
+ "rate": "48469120000000000000"
+ },
+ "out": {
+ "capacity": "342500000000000000000000",
+ "isEnabled": true,
+ "rate": "95132800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "326500000000000000000000",
+ "isEnabled": true,
+ "rate": "90688640000000000000"
+ },
+ "out": {
+ "capacity": "292000000000000000000000",
+ "isEnabled": true,
+ "rate": "81105920000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "314500000000000000000000",
+ "isEnabled": true,
+ "rate": "87355520000000000000"
+ },
+ "out": {
+ "capacity": "222000000000000000000000",
+ "isEnabled": true,
+ "rate": "61662720000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "246000000000000000000000",
+ "isEnabled": true,
+ "rate": "68328960000000000000"
+ },
+ "out": {
+ "capacity": "287500000000000000000000",
+ "isEnabled": true,
+ "rate": "79856000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000",
+ "isEnabled": true,
+ "rate": "138880000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SDY": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1680000000000000000000000",
+ "isEnabled": true,
+ "rate": "19488000000000000000"
+ },
+ "out": {
+ "capacity": "2880000000000000000000000",
+ "isEnabled": true,
+ "rate": "33408000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3240000000000000000000000",
+ "isEnabled": true,
+ "rate": "37584000000000000000"
+ },
+ "out": {
+ "capacity": "2095000000000000000000000",
+ "isEnabled": true,
+ "rate": "24302000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3040000000000000000000000",
+ "isEnabled": true,
+ "rate": "35264000000000000000"
+ },
+ "out": {
+ "capacity": "1780000000000000000000000",
+ "isEnabled": true,
+ "rate": "20648000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3420000000000000000000000",
+ "isEnabled": true,
+ "rate": "39672000000000000000"
+ },
+ "out": {
+ "capacity": "3270000000000000000000000",
+ "isEnabled": true,
+ "rate": "37932000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "2640000000000000000000000",
+ "isEnabled": true,
+ "rate": "30624000000000000000"
+ },
+ "out": {
+ "capacity": "3215000000000000000000000",
+ "isEnabled": true,
+ "rate": "37294000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "58000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SHIB": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "celo-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zircuit-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "xdai-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SHIPA": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SHIRO": {
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SILO": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "sINV": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "6230000000000000000000",
+ "isEnabled": true,
+ "rate": "68530000000000000"
+ },
+ "out": {
+ "capacity": "6970000000000000000000",
+ "isEnabled": true,
+ "rate": "76670000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4090000000000000000000",
+ "isEnabled": true,
+ "rate": "44990000000000000"
+ },
+ "out": {
+ "capacity": "5190000000000000000000",
+ "isEnabled": true,
+ "rate": "57090000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "6020000000000000000000",
+ "isEnabled": true,
+ "rate": "66220000000000000"
+ },
+ "out": {
+ "capacity": "5920000000000000000000",
+ "isEnabled": true,
+ "rate": "65120000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "5780000000000000000000",
+ "isEnabled": true,
+ "rate": "63580000000000000"
+ },
+ "out": {
+ "capacity": "5340000000000000000000",
+ "isEnabled": true,
+ "rate": "58740000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6800000000000000000000",
+ "isEnabled": true,
+ "rate": "74800000000000000"
+ },
+ "out": {
+ "capacity": "3700000000000000000000",
+ "isEnabled": true,
+ "rate": "40700000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3170000000000000000000",
+ "isEnabled": true,
+ "rate": "34870000000000000"
+ },
+ "out": {
+ "capacity": "6150000000000000000000",
+ "isEnabled": true,
+ "rate": "67650000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5490000000000000000000",
+ "isEnabled": true,
+ "rate": "60390000000000000"
+ },
+ "out": {
+ "capacity": "5850000000000000000000",
+ "isEnabled": true,
+ "rate": "64350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "3670000000000000000000",
+ "isEnabled": true,
+ "rate": "40370000000000000"
+ },
+ "out": {
+ "capacity": "6250000000000000000000",
+ "isEnabled": true,
+ "rate": "68750000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "4580000000000000000000",
+ "isEnabled": true,
+ "rate": "50380000000000000"
+ },
+ "out": {
+ "capacity": "4720000000000000000000",
+ "isEnabled": true,
+ "rate": "51920000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000",
+ "isEnabled": true,
+ "rate": "110000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SKYA": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SNOW": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SOIL": {
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SolvBTC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1085000000000000000",
+ "isEnabled": true,
+ "rate": "50231160000000"
+ },
+ "out": {
+ "capacity": "1522500000000000000",
+ "isEnabled": true,
+ "rate": "70485660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1030000000000000000",
+ "isEnabled": true,
+ "rate": "47684880000000"
+ },
+ "out": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1045000000000000000",
+ "isEnabled": true,
+ "rate": "48379320000000"
+ },
+ "out": {
+ "capacity": "1497500000000000000",
+ "isEnabled": true,
+ "rate": "69328260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1500000000000000000",
+ "isEnabled": true,
+ "rate": "69444000000000"
+ },
+ "out": {
+ "capacity": "1662500000000000000",
+ "isEnabled": true,
+ "rate": "76967100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1705000000000000000",
+ "isEnabled": true,
+ "rate": "78934680000000"
+ },
+ "out": {
+ "capacity": "1662500000000000000",
+ "isEnabled": true,
+ "rate": "76967100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "860000000000000000",
+ "isEnabled": true,
+ "rate": "39814560000000"
+ },
+ "out": {
+ "capacity": "897500000000000000",
+ "isEnabled": true,
+ "rate": "41550660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1185000000000000000",
+ "isEnabled": true,
+ "rate": "54860760000000"
+ },
+ "out": {
+ "capacity": "965000000000000000",
+ "isEnabled": true,
+ "rate": "44675640000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "837500000000000000",
+ "isEnabled": true,
+ "rate": "38772900000000"
+ },
+ "out": {
+ "capacity": "1055000000000000000",
+ "isEnabled": true,
+ "rate": "48842280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1027500000000000000",
+ "isEnabled": true,
+ "rate": "47569140000000"
+ },
+ "out": {
+ "capacity": "1575000000000000000",
+ "isEnabled": true,
+ "rate": "72916200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1197500000000000000",
+ "isEnabled": true,
+ "rate": "55439460000000"
+ },
+ "out": {
+ "capacity": "1255000000000000000",
+ "isEnabled": true,
+ "rate": "58101480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1122500000000000000",
+ "isEnabled": true,
+ "rate": "51967260000000"
+ },
+ "out": {
+ "capacity": "1412500000000000000",
+ "isEnabled": true,
+ "rate": "65393100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1225000000000000000",
+ "isEnabled": true,
+ "rate": "56712600000000"
+ },
+ "out": {
+ "capacity": "1372500000000000000",
+ "isEnabled": true,
+ "rate": "63541260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1602500000000000000",
+ "isEnabled": true,
+ "rate": "74189340000000"
+ },
+ "out": {
+ "capacity": "1192500000000000000",
+ "isEnabled": true,
+ "rate": "55207980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "782500000000000000",
+ "isEnabled": true,
+ "rate": "36226620000000"
+ },
+ "out": {
+ "capacity": "1567500000000000000",
+ "isEnabled": true,
+ "rate": "72568980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1167500000000000000",
+ "isEnabled": true,
+ "rate": "54050580000000"
+ },
+ "out": {
+ "capacity": "847500000000000000",
+ "isEnabled": true,
+ "rate": "39235860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1585000000000000000",
+ "isEnabled": true,
+ "rate": "73379160000000"
+ },
+ "out": {
+ "capacity": "885000000000000000",
+ "isEnabled": true,
+ "rate": "40971960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "835000000000000000",
+ "isEnabled": true,
+ "rate": "38657160000000"
+ },
+ "out": {
+ "capacity": "1297500000000000000",
+ "isEnabled": true,
+ "rate": "60069060000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ },
+ "out": {
+ "capacity": "1675000000000000000",
+ "isEnabled": true,
+ "rate": "77545800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1042500000000000000",
+ "isEnabled": true,
+ "rate": "48263580000000"
+ },
+ "out": {
+ "capacity": "1277500000000000000",
+ "isEnabled": true,
+ "rate": "59143140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "817500000000000000",
+ "isEnabled": true,
+ "rate": "37846980000000"
+ },
+ "out": {
+ "capacity": "1067500000000000000",
+ "isEnabled": true,
+ "rate": "49420980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1142500000000000000",
+ "isEnabled": true,
+ "rate": "52893180000000"
+ },
+ "out": {
+ "capacity": "997500000000000000",
+ "isEnabled": true,
+ "rate": "46180260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "927500000000000000",
+ "isEnabled": true,
+ "rate": "42939540000000"
+ },
+ "out": {
+ "capacity": "1227500000000000000",
+ "isEnabled": true,
+ "rate": "56828340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1255000000000000000",
+ "isEnabled": true,
+ "rate": "58101480000000"
+ },
+ "out": {
+ "capacity": "765000000000000000",
+ "isEnabled": true,
+ "rate": "35416440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1255000000000000000",
+ "isEnabled": true,
+ "rate": "58101480000000"
+ },
+ "out": {
+ "capacity": "1140000000000000000",
+ "isEnabled": true,
+ "rate": "52777440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1230000000000000000",
+ "isEnabled": true,
+ "rate": "56944080000000"
+ },
+ "out": {
+ "capacity": "1137500000000000000",
+ "isEnabled": true,
+ "rate": "52661700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1492500000000000000",
+ "isEnabled": true,
+ "rate": "69096780000000"
+ },
+ "out": {
+ "capacity": "930000000000000000",
+ "isEnabled": true,
+ "rate": "43055280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1735000000000000000",
+ "isEnabled": true,
+ "rate": "80323560000000"
+ },
+ "out": {
+ "capacity": "1460000000000000000",
+ "isEnabled": true,
+ "rate": "67592160000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1745000000000000000",
+ "isEnabled": true,
+ "rate": "80786520000000"
+ },
+ "out": {
+ "capacity": "1547500000000000000",
+ "isEnabled": true,
+ "rate": "71643060000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1610000000000000000",
+ "isEnabled": true,
+ "rate": "74536560000000"
+ },
+ "out": {
+ "capacity": "762500000000000000",
+ "isEnabled": true,
+ "rate": "35300700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1282500000000000000",
+ "isEnabled": true,
+ "rate": "59374620000000"
+ },
+ "out": {
+ "capacity": "1015000000000000000",
+ "isEnabled": true,
+ "rate": "46990440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1467500000000000000",
+ "isEnabled": true,
+ "rate": "67939380000000"
+ },
+ "out": {
+ "capacity": "1135000000000000000",
+ "isEnabled": true,
+ "rate": "52545960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1435000000000000000",
+ "isEnabled": true,
+ "rate": "66434760000000"
+ },
+ "out": {
+ "capacity": "1347500000000000000",
+ "isEnabled": true,
+ "rate": "62383860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1520000000000000000",
+ "isEnabled": true,
+ "rate": "70369920000000"
+ },
+ "out": {
+ "capacity": "1327500000000000000",
+ "isEnabled": true,
+ "rate": "61457940000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "875000000000000000",
+ "isEnabled": true,
+ "rate": "40509000000000"
+ },
+ "out": {
+ "capacity": "1392500000000000000",
+ "isEnabled": true,
+ "rate": "64467180000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "251250000",
+ "isEnabled": true,
+ "rate": "11631"
+ },
+ "out": {
+ "capacity": "2977500000000000000",
+ "isEnabled": true,
+ "rate": "137846340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000",
+ "isEnabled": true,
+ "rate": "34722"
+ },
+ "out": {
+ "capacity": "7500000000000000000",
+ "isEnabled": true,
+ "rate": "347220000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1437500000000000000",
+ "isEnabled": true,
+ "rate": "66550500000000"
+ },
+ "out": {
+ "capacity": "840000000000000000",
+ "isEnabled": true,
+ "rate": "38888640000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1330000000000000000",
+ "isEnabled": true,
+ "rate": "61573680000000"
+ },
+ "out": {
+ "capacity": "1270000000000000000",
+ "isEnabled": true,
+ "rate": "58795920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1197500000000000000",
+ "isEnabled": true,
+ "rate": "55439460000000"
+ },
+ "out": {
+ "capacity": "1667500000000000000",
+ "isEnabled": true,
+ "rate": "77198580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1382500000000000000",
+ "isEnabled": true,
+ "rate": "64004220000000"
+ },
+ "out": {
+ "capacity": "1570000000000000000",
+ "isEnabled": true,
+ "rate": "72684720000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1447500000000000000",
+ "isEnabled": true,
+ "rate": "67013460000000"
+ },
+ "out": {
+ "capacity": "1380000000000000000",
+ "isEnabled": true,
+ "rate": "63888480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1217500000000000000",
+ "isEnabled": true,
+ "rate": "56365380000000"
+ },
+ "out": {
+ "capacity": "1287500000000000000",
+ "isEnabled": true,
+ "rate": "59606100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "952500000000000000",
+ "isEnabled": true,
+ "rate": "44096940000000"
+ },
+ "out": {
+ "capacity": "1172500000000000000",
+ "isEnabled": true,
+ "rate": "54282060000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1035000000000000000",
+ "isEnabled": true,
+ "rate": "47916360000000"
+ },
+ "out": {
+ "capacity": "980000000000000000",
+ "isEnabled": true,
+ "rate": "45370080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1652500000000000000",
+ "isEnabled": true,
+ "rate": "76504140000000"
+ },
+ "out": {
+ "capacity": "1105000000000000000",
+ "isEnabled": true,
+ "rate": "51157080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1565000000000000000",
+ "isEnabled": true,
+ "rate": "72453240000000"
+ },
+ "out": {
+ "capacity": "780000000000000000",
+ "isEnabled": true,
+ "rate": "36110880000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1582500000000000000",
+ "isEnabled": true,
+ "rate": "73263420000000"
+ },
+ "out": {
+ "capacity": "980000000000000000",
+ "isEnabled": true,
+ "rate": "45370080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1140000000000000000",
+ "isEnabled": true,
+ "rate": "52777440000000"
+ },
+ "out": {
+ "capacity": "847500000000000000",
+ "isEnabled": true,
+ "rate": "39235860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1675000000000000000",
+ "isEnabled": true,
+ "rate": "77545800000000"
+ },
+ "out": {
+ "capacity": "1602500000000000000",
+ "isEnabled": true,
+ "rate": "74189340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1062500000000000000",
+ "isEnabled": true,
+ "rate": "49189500000000"
+ },
+ "out": {
+ "capacity": "1145000000000000000",
+ "isEnabled": true,
+ "rate": "53008920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1090000000000000000",
+ "isEnabled": true,
+ "rate": "50462640000000"
+ },
+ "out": {
+ "capacity": "1430000000000000000",
+ "isEnabled": true,
+ "rate": "66203280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1450000000000000000",
+ "isEnabled": true,
+ "rate": "67129200000000"
+ },
+ "out": {
+ "capacity": "1145000000000000000",
+ "isEnabled": true,
+ "rate": "53008920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1730000000000000000",
+ "isEnabled": true,
+ "rate": "80092080000000"
+ },
+ "out": {
+ "capacity": "1547500000000000000",
+ "isEnabled": true,
+ "rate": "71643060000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "987500000000000000",
+ "isEnabled": true,
+ "rate": "45717300000000"
+ },
+ "out": {
+ "capacity": "895000000000000000",
+ "isEnabled": true,
+ "rate": "41434920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1135000000000000000",
+ "isEnabled": true,
+ "rate": "52545960000000"
+ },
+ "out": {
+ "capacity": "907500000000000000",
+ "isEnabled": true,
+ "rate": "42013620000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1560000000000000000",
+ "isEnabled": true,
+ "rate": "72221760000000"
+ },
+ "out": {
+ "capacity": "1277500000000000000",
+ "isEnabled": true,
+ "rate": "59143140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1285000000000000000",
+ "isEnabled": true,
+ "rate": "59490360000000"
+ },
+ "out": {
+ "capacity": "1300000000000000000",
+ "isEnabled": true,
+ "rate": "60184800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1727500000000000000",
+ "isEnabled": true,
+ "rate": "79976340000000"
+ },
+ "out": {
+ "capacity": "1155000000000000000",
+ "isEnabled": true,
+ "rate": "53471880000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1270000000000000000",
+ "isEnabled": true,
+ "rate": "58795920000000"
+ },
+ "out": {
+ "capacity": "1277500000000000000",
+ "isEnabled": true,
+ "rate": "59143140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1285000000000000000",
+ "isEnabled": true,
+ "rate": "59490360000000"
+ },
+ "out": {
+ "capacity": "1477500000000000000",
+ "isEnabled": true,
+ "rate": "68402340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1400000000000000000",
+ "isEnabled": true,
+ "rate": "64814400000000"
+ },
+ "out": {
+ "capacity": "850000000000000000",
+ "isEnabled": true,
+ "rate": "39351600000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1012500000000000000",
+ "isEnabled": true,
+ "rate": "46874700000000"
+ },
+ "out": {
+ "capacity": "827500000000000000",
+ "isEnabled": true,
+ "rate": "38309940000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1077500000000000000",
+ "isEnabled": true,
+ "rate": "49883940000000"
+ },
+ "out": {
+ "capacity": "1432500000000000000",
+ "isEnabled": true,
+ "rate": "66319020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1175000000000000000",
+ "isEnabled": true,
+ "rate": "54397800000000"
+ },
+ "out": {
+ "capacity": "1462500000000000000",
+ "isEnabled": true,
+ "rate": "67707900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "817500000000000000",
+ "isEnabled": true,
+ "rate": "37846980000000"
+ },
+ "out": {
+ "capacity": "817500000000000000",
+ "isEnabled": true,
+ "rate": "37846980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1047500000000000000",
+ "isEnabled": true,
+ "rate": "48495060000000"
+ },
+ "out": {
+ "capacity": "942500000000000000",
+ "isEnabled": true,
+ "rate": "43633980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "937500000000000000",
+ "isEnabled": true,
+ "rate": "43402500000000"
+ },
+ "out": {
+ "capacity": "1155000000000000000",
+ "isEnabled": true,
+ "rate": "53471880000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1202500000000000000",
+ "isEnabled": true,
+ "rate": "55670940000000"
+ },
+ "out": {
+ "capacity": "910000000000000000",
+ "isEnabled": true,
+ "rate": "42129360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1285000000000000000",
+ "isEnabled": true,
+ "rate": "59490360000000"
+ },
+ "out": {
+ "capacity": "1450000000000000000",
+ "isEnabled": true,
+ "rate": "67129200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1160000000000000000",
+ "isEnabled": true,
+ "rate": "53703360000000"
+ },
+ "out": {
+ "capacity": "1527500000000000000",
+ "isEnabled": true,
+ "rate": "70717140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-taiko-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "775000000000000000",
+ "isEnabled": true,
+ "rate": "35879400000000"
+ },
+ "out": {
+ "capacity": "1107500000000000000",
+ "isEnabled": true,
+ "rate": "51272820000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "855000000000000000",
+ "isEnabled": true,
+ "rate": "39583080000000"
+ },
+ "out": {
+ "capacity": "1380000000000000000",
+ "isEnabled": true,
+ "rate": "63888480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1382500000000000000",
+ "isEnabled": true,
+ "rate": "64004220000000"
+ },
+ "out": {
+ "capacity": "902500000000000000",
+ "isEnabled": true,
+ "rate": "41782140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "95850000000000000000",
+ "isEnabled": true,
+ "rate": "1109367900000000"
+ },
+ "out": {
+ "capacity": "1577500000000000000",
+ "isEnabled": true,
+ "rate": "73031940000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1736100000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1242500000000000000",
+ "isEnabled": true,
+ "rate": "57522780000000"
+ },
+ "out": {
+ "capacity": "1140000000000000000",
+ "isEnabled": true,
+ "rate": "52777440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1237500000000000000",
+ "isEnabled": true,
+ "rate": "57291300000000"
+ },
+ "out": {
+ "capacity": "997500000000000000",
+ "isEnabled": true,
+ "rate": "46180260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1640000000000000000",
+ "isEnabled": true,
+ "rate": "75925440000000"
+ },
+ "out": {
+ "capacity": "777500000000000000",
+ "isEnabled": true,
+ "rate": "35995140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "845000000000000000",
+ "isEnabled": true,
+ "rate": "39120120000000"
+ },
+ "out": {
+ "capacity": "1390000000000000000",
+ "isEnabled": true,
+ "rate": "64351440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1737500000000000000",
+ "isEnabled": true,
+ "rate": "80439300000000"
+ },
+ "out": {
+ "capacity": "792500000000000000",
+ "isEnabled": true,
+ "rate": "36689580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1382500000000000000",
+ "isEnabled": true,
+ "rate": "64004220000000"
+ },
+ "out": {
+ "capacity": "897500000000000000",
+ "isEnabled": true,
+ "rate": "41550660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1137500000000000000",
+ "isEnabled": true,
+ "rate": "52661700000000"
+ },
+ "out": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1470000000000000000",
+ "isEnabled": true,
+ "rate": "68055120000000"
+ },
+ "out": {
+ "capacity": "867500000000000000",
+ "isEnabled": true,
+ "rate": "40161780000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1557500000000000000",
+ "isEnabled": true,
+ "rate": "72106020000000"
+ },
+ "out": {
+ "capacity": "1695000000000000000",
+ "isEnabled": true,
+ "rate": "78471720000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "752500000000000000",
+ "isEnabled": true,
+ "rate": "34837740000000"
+ },
+ "out": {
+ "capacity": "1117500000000000000",
+ "isEnabled": true,
+ "rate": "51735780000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-taiko-1": {
+ "custom": {
+ "in": {
+ "capacity": "1702500000000000000",
+ "isEnabled": true,
+ "rate": "78818940000000"
+ },
+ "out": {
+ "capacity": "1325000000000000000",
+ "isEnabled": true,
+ "rate": "61342200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1040000000000000000",
+ "isEnabled": true,
+ "rate": "48147840000000"
+ },
+ "out": {
+ "capacity": "82950000000000000000",
+ "isEnabled": true,
+ "rate": "960008000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1736000000000000"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1592500000000000000",
+ "isEnabled": true,
+ "rate": "73726380000000"
+ },
+ "out": {
+ "capacity": "810000000000000000",
+ "isEnabled": true,
+ "rate": "37499760000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "757500000000000000",
+ "isEnabled": true,
+ "rate": "35069220000000"
+ },
+ "out": {
+ "capacity": "1390000000000000000",
+ "isEnabled": true,
+ "rate": "64351440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3260000000000000000",
+ "isEnabled": true,
+ "rate": "37731240000000"
+ },
+ "out": {
+ "capacity": "13500000000000000000",
+ "isEnabled": true,
+ "rate": "156249000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000",
+ "isEnabled": true,
+ "rate": "347220000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1565000000000000000",
+ "isEnabled": true,
+ "rate": "72453240000000"
+ },
+ "out": {
+ "capacity": "1740000000000000000",
+ "isEnabled": true,
+ "rate": "80555040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "101000000",
+ "isEnabled": true,
+ "rate": "4675"
+ },
+ "out": {
+ "capacity": "1557500000000000000",
+ "isEnabled": true,
+ "rate": "72106020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1350000000000000000",
+ "isEnabled": true,
+ "rate": "62499600000000"
+ },
+ "out": {
+ "capacity": "24120000000000000000",
+ "isEnabled": true,
+ "rate": "279164880000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "60000000000000000000",
+ "isEnabled": true,
+ "rate": "694440000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "875000000000000000",
+ "isEnabled": true,
+ "rate": "40509000000000"
+ },
+ "out": {
+ "capacity": "930000000000000000",
+ "isEnabled": true,
+ "rate": "43055280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "947500000000000000",
+ "isEnabled": true,
+ "rate": "43865460000000"
+ },
+ "out": {
+ "capacity": "1037500000000000000",
+ "isEnabled": true,
+ "rate": "48032100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1455000000000000000",
+ "isEnabled": true,
+ "rate": "67360680000000"
+ },
+ "out": {
+ "capacity": "997500000000000000",
+ "isEnabled": true,
+ "rate": "46180260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1692500000000000000",
+ "isEnabled": true,
+ "rate": "78355980000000"
+ },
+ "out": {
+ "capacity": "1597500000000000000",
+ "isEnabled": true,
+ "rate": "73957860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "765000000000000000",
+ "isEnabled": true,
+ "rate": "35416440000000"
+ },
+ "out": {
+ "capacity": "935000000000000000",
+ "isEnabled": true,
+ "rate": "43286760000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1632500000000000000",
+ "isEnabled": true,
+ "rate": "75578220000000"
+ },
+ "out": {
+ "capacity": "1592500000000000000",
+ "isEnabled": true,
+ "rate": "73726380000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "810000000000000000",
+ "isEnabled": true,
+ "rate": "37499760000000"
+ },
+ "out": {
+ "capacity": "915000000000000000",
+ "isEnabled": true,
+ "rate": "42360840000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "830000000000000000",
+ "isEnabled": true,
+ "rate": "38425680000000"
+ },
+ "out": {
+ "capacity": "927500000000000000",
+ "isEnabled": true,
+ "rate": "42939540000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ },
+ "out": {
+ "capacity": "982500000000000000",
+ "isEnabled": true,
+ "rate": "45485820000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1590000000000000000",
+ "isEnabled": true,
+ "rate": "73610640000000"
+ },
+ "out": {
+ "capacity": "1212500000000000000",
+ "isEnabled": true,
+ "rate": "56133900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "807500000000000000",
+ "isEnabled": true,
+ "rate": "37384020000000"
+ },
+ "out": {
+ "capacity": "1662500000000000000",
+ "isEnabled": true,
+ "rate": "76967100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "855000000000000000",
+ "isEnabled": true,
+ "rate": "39583080000000"
+ },
+ "out": {
+ "capacity": "1230000000000000000",
+ "isEnabled": true,
+ "rate": "56944080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "monad-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "19530000000000000000",
+ "isEnabled": true,
+ "rate": "226040220000000"
+ },
+ "out": {
+ "capacity": "2240000000000000000",
+ "isEnabled": true,
+ "rate": "25925760000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000",
+ "isEnabled": true,
+ "rate": "347220000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000"
+ }
+ }
+ }
+ }
+ },
+ "sei-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1277500000000000000",
+ "isEnabled": true,
+ "rate": "59143140000000"
+ },
+ "out": {
+ "capacity": "1317500000000000000",
+ "isEnabled": true,
+ "rate": "60994980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1125000000000000000",
+ "isEnabled": true,
+ "rate": "52083000000000"
+ },
+ "out": {
+ "capacity": "1040000000000000000",
+ "isEnabled": true,
+ "rate": "48147840000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "912500000000000000",
+ "isEnabled": true,
+ "rate": "42245100000000"
+ },
+ "out": {
+ "capacity": "1135000000000000000",
+ "isEnabled": true,
+ "rate": "52545960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "820000000000000000",
+ "isEnabled": true,
+ "rate": "37962720000000"
+ },
+ "out": {
+ "capacity": "1060000000000000000",
+ "isEnabled": true,
+ "rate": "49073760000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1377500000000000000",
+ "isEnabled": true,
+ "rate": "63772740000000"
+ },
+ "out": {
+ "capacity": "1097500000000000000",
+ "isEnabled": true,
+ "rate": "50809860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "750000000000000000",
+ "isEnabled": true,
+ "rate": "34722000000000"
+ },
+ "out": {
+ "capacity": "930000000000000000",
+ "isEnabled": true,
+ "rate": "43055280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "419250000",
+ "isEnabled": true,
+ "rate": "19409"
+ },
+ "out": {
+ "capacity": "415500000",
+ "isEnabled": true,
+ "rate": "19235"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000",
+ "isEnabled": true,
+ "rate": "34722"
+ },
+ "out": {
+ "capacity": "750000000",
+ "isEnabled": true,
+ "rate": "34722"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "160000000",
+ "isEnabled": true,
+ "rate": "7407"
+ },
+ "out": {
+ "capacity": "155500000",
+ "isEnabled": true,
+ "rate": "7199"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "990000000000000000",
+ "isEnabled": true,
+ "rate": "45833040000000"
+ },
+ "out": {
+ "capacity": "1147500000000000000",
+ "isEnabled": true,
+ "rate": "53124660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1487500000000000000",
+ "isEnabled": true,
+ "rate": "68865300000000"
+ },
+ "out": {
+ "capacity": "1390000000000000000",
+ "isEnabled": true,
+ "rate": "64351440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "39600000000000000000",
+ "isEnabled": true,
+ "rate": "458330400000000"
+ },
+ "out": {
+ "capacity": "912500000000000000",
+ "isEnabled": true,
+ "rate": "42245100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "60000000000000000000",
+ "isEnabled": true,
+ "rate": "694440000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1257500000000000000",
+ "isEnabled": true,
+ "rate": "58217220000000"
+ },
+ "out": {
+ "capacity": "1390000000000000000",
+ "isEnabled": true,
+ "rate": "64351440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1340000000000000000",
+ "isEnabled": true,
+ "rate": "62036640000000"
+ },
+ "out": {
+ "capacity": "1330000000000000000",
+ "isEnabled": true,
+ "rate": "61573680000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SolvBTC.BERA": {
+ "berachain-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1215000000000000000",
+ "isEnabled": true,
+ "rate": "56249640000000"
+ },
+ "out": {
+ "capacity": "800000000000000000",
+ "isEnabled": true,
+ "rate": "37036800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "947500000000000000",
+ "isEnabled": true,
+ "rate": "43865460000000"
+ },
+ "out": {
+ "capacity": "762500000000000000",
+ "isEnabled": true,
+ "rate": "35300700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "887500000000000000",
+ "isEnabled": true,
+ "rate": "41087700000000"
+ },
+ "out": {
+ "capacity": "1537500000000000000",
+ "isEnabled": true,
+ "rate": "71180100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1572500000000000000",
+ "isEnabled": true,
+ "rate": "72800460000000"
+ },
+ "out": {
+ "capacity": "970000000000000000",
+ "isEnabled": true,
+ "rate": "44907120000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1057500000000000000",
+ "isEnabled": true,
+ "rate": "48958020000000"
+ },
+ "out": {
+ "capacity": "1330000000000000000",
+ "isEnabled": true,
+ "rate": "61573680000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1050000000000000000",
+ "isEnabled": true,
+ "rate": "48610800000000"
+ },
+ "out": {
+ "capacity": "1720000000000000000",
+ "isEnabled": true,
+ "rate": "79629120000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1667500000000000000",
+ "isEnabled": true,
+ "rate": "77198580000000"
+ },
+ "out": {
+ "capacity": "985000000000000000",
+ "isEnabled": true,
+ "rate": "45601560000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ },
+ "out": {
+ "capacity": "1337500000000000000",
+ "isEnabled": true,
+ "rate": "61920900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "932500000000000000",
+ "isEnabled": true,
+ "rate": "43171020000000"
+ },
+ "out": {
+ "capacity": "1087500000000000000",
+ "isEnabled": true,
+ "rate": "50346900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1435000000000000000",
+ "isEnabled": true,
+ "rate": "66434760000000"
+ },
+ "out": {
+ "capacity": "1140000000000000000",
+ "isEnabled": true,
+ "rate": "52777440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1422500000000000000",
+ "isEnabled": true,
+ "rate": "65856060000000"
+ },
+ "out": {
+ "capacity": "1525000000000000000",
+ "isEnabled": true,
+ "rate": "70601400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1380000000000000000",
+ "isEnabled": true,
+ "rate": "63888480000000"
+ },
+ "out": {
+ "capacity": "1255000000000000000",
+ "isEnabled": true,
+ "rate": "58101480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SolvBTC.JUP": {
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "810000000000000000",
+ "isEnabled": true,
+ "rate": "37499760000000"
+ },
+ "out": {
+ "capacity": "1457500000000000000",
+ "isEnabled": true,
+ "rate": "67476420000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1282500000000000000",
+ "isEnabled": true,
+ "rate": "59374620000000"
+ },
+ "out": {
+ "capacity": "1132500000000000000",
+ "isEnabled": true,
+ "rate": "52430220000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1225000000000000000",
+ "isEnabled": true,
+ "rate": "56712600000000"
+ },
+ "out": {
+ "capacity": "1142500000000000000",
+ "isEnabled": true,
+ "rate": "52893180000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2940000000",
+ "isEnabled": true,
+ "rate": "34027"
+ },
+ "out": {
+ "capacity": "34850000000000000000",
+ "isEnabled": true,
+ "rate": "403353900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "57870"
+ },
+ "out": {
+ "capacity": "50000000000000000000",
+ "isEnabled": true,
+ "rate": "578700000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "33900000000000000000",
+ "isEnabled": true,
+ "rate": "392358600000000"
+ },
+ "out": {
+ "capacity": "53800000000000000000",
+ "isEnabled": true,
+ "rate": "622681200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "1157400000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "1157400000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1675000000",
+ "isEnabled": true,
+ "rate": "19386"
+ },
+ "out": {
+ "capacity": "1845000000",
+ "isEnabled": true,
+ "rate": "21354"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "57870"
+ },
+ "out": {
+ "capacity": "5000000000",
+ "isEnabled": true,
+ "rate": "57870"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1457500000000000000",
+ "isEnabled": true,
+ "rate": "67476420000000"
+ },
+ "out": {
+ "capacity": "1075000000000000000",
+ "isEnabled": true,
+ "rate": "49768200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "69000000000000000000",
+ "isEnabled": true,
+ "rate": "798606000000000"
+ },
+ "out": {
+ "capacity": "67600000000000000000",
+ "isEnabled": true,
+ "rate": "782402400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "1157400000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000",
+ "isEnabled": true,
+ "rate": "1157400000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "STABLE": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "4704000000000000000000",
+ "isEnabled": true,
+ "rate": "54432000000000000"
+ },
+ "out": {
+ "capacity": "2716000000000000000000",
+ "isEnabled": true,
+ "rate": "31428000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3661000000000000000000",
+ "isEnabled": true,
+ "rate": "42363000000000000"
+ },
+ "out": {
+ "capacity": "3430000000000000000000",
+ "isEnabled": true,
+ "rate": "39690000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3976000000000000000000",
+ "isEnabled": true,
+ "rate": "46008000000000000"
+ },
+ "out": {
+ "capacity": "3766000000000000000000",
+ "isEnabled": true,
+ "rate": "43578000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2625000000000000000000",
+ "isEnabled": true,
+ "rate": "30375000000000000"
+ },
+ "out": {
+ "capacity": "4809000000000000000000",
+ "isEnabled": true,
+ "rate": "55647000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "3528000000000000000000",
+ "isEnabled": true,
+ "rate": "40824000000000000"
+ },
+ "out": {
+ "capacity": "3885000000000000000000",
+ "isEnabled": true,
+ "rate": "44955000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000",
+ "isEnabled": true,
+ "rate": "81000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "STABUL": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "stBTC": {
+ "bitcoin-mainnet-bsquared-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bitcoin-mainnet-bsquared-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "STBU": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "stTAO": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "145600000000",
+ "isEnabled": true,
+ "rate": "15142400"
+ },
+ "out": {
+ "capacity": "209200000000",
+ "isEnabled": true,
+ "rate": "21756800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "157600000000",
+ "isEnabled": true,
+ "rate": "16390400"
+ },
+ "out": {
+ "capacity": "269600000000",
+ "isEnabled": true,
+ "rate": "28038400"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "191600000000",
+ "isEnabled": true,
+ "rate": "19926400"
+ },
+ "out": {
+ "capacity": "129200000000",
+ "isEnabled": true,
+ "rate": "13436800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "134400000000",
+ "isEnabled": true,
+ "rate": "13977600"
+ },
+ "out": {
+ "capacity": "243600000000",
+ "isEnabled": true,
+ "rate": "25334400"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "241600000000",
+ "isEnabled": true,
+ "rate": "25126400"
+ },
+ "out": {
+ "capacity": "121600000000",
+ "isEnabled": true,
+ "rate": "12646400"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "184400000000",
+ "isEnabled": true,
+ "rate": "19177600"
+ },
+ "out": {
+ "capacity": "207600000000",
+ "isEnabled": true,
+ "rate": "21590400"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "145200000000",
+ "isEnabled": true,
+ "rate": "15100800"
+ },
+ "out": {
+ "capacity": "139200000000",
+ "isEnabled": true,
+ "rate": "14476800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "272400000000",
+ "isEnabled": true,
+ "rate": "28329600"
+ },
+ "out": {
+ "capacity": "272400000000",
+ "isEnabled": true,
+ "rate": "28329600"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "234000000000",
+ "isEnabled": true,
+ "rate": "24336000"
+ },
+ "out": {
+ "capacity": "159200000000",
+ "isEnabled": true,
+ "rate": "16556800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "232000000000",
+ "isEnabled": true,
+ "rate": "24128000"
+ },
+ "out": {
+ "capacity": "133200000000",
+ "isEnabled": true,
+ "rate": "13852800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "241600000000",
+ "isEnabled": true,
+ "rate": "25126400"
+ },
+ "out": {
+ "capacity": "123600000000",
+ "isEnabled": true,
+ "rate": "12854400"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "127600000000",
+ "isEnabled": true,
+ "rate": "13270400"
+ },
+ "out": {
+ "capacity": "233200000000",
+ "isEnabled": true,
+ "rate": "24252800"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ },
+ "out": {
+ "capacity": "400000000000",
+ "isEnabled": true,
+ "rate": "41600000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "suBTC": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "4216000000000000000",
+ "isEnabled": true,
+ "rate": "48800200000000"
+ },
+ "out": {
+ "capacity": "3976000000000000000",
+ "isEnabled": true,
+ "rate": "46022200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3480000000000000000",
+ "isEnabled": true,
+ "rate": "40281000000000"
+ },
+ "out": {
+ "capacity": "5272000000000000000",
+ "isEnabled": true,
+ "rate": "61023400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "5112000000000000000",
+ "isEnabled": true,
+ "rate": "59171400000000"
+ },
+ "out": {
+ "capacity": "5400000000000000000",
+ "isEnabled": true,
+ "rate": "62505000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2768000000000000000",
+ "isEnabled": true,
+ "rate": "32039600000000"
+ },
+ "out": {
+ "capacity": "5280000000000000000",
+ "isEnabled": true,
+ "rate": "61116000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "4056000000000000000",
+ "isEnabled": true,
+ "rate": "46948200000000"
+ },
+ "out": {
+ "capacity": "3696000000000000000",
+ "isEnabled": true,
+ "rate": "42781200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3256000000000000000",
+ "isEnabled": true,
+ "rate": "37688200000000"
+ },
+ "out": {
+ "capacity": "4528000000000000000",
+ "isEnabled": true,
+ "rate": "52411600000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ },
+ "out": {
+ "capacity": "8000000000000000000",
+ "isEnabled": true,
+ "rate": "92600000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "suETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "86100000000000000000",
+ "isEnabled": true,
+ "rate": "975800000000000"
+ },
+ "out": {
+ "capacity": "57000000000000000000",
+ "isEnabled": true,
+ "rate": "646000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "74100000000000000000",
+ "isEnabled": true,
+ "rate": "839800000000000"
+ },
+ "out": {
+ "capacity": "95850000000000000000",
+ "isEnabled": true,
+ "rate": "1086300000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "79050000000000000000",
+ "isEnabled": true,
+ "rate": "895900000000000"
+ },
+ "out": {
+ "capacity": "78600000000000000000",
+ "isEnabled": true,
+ "rate": "890800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "48900000000000000000",
+ "isEnabled": true,
+ "rate": "554200000000000"
+ },
+ "out": {
+ "capacity": "91350000000000000000",
+ "isEnabled": true,
+ "rate": "1035300000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "97200000000000000000",
+ "isEnabled": true,
+ "rate": "1101600000000000"
+ },
+ "out": {
+ "capacity": "58500000000000000000",
+ "isEnabled": true,
+ "rate": "663000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "62700000000000000000",
+ "isEnabled": true,
+ "rate": "710600000000000"
+ },
+ "out": {
+ "capacity": "90450000000000000000",
+ "isEnabled": true,
+ "rate": "1025100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1700000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "sUSD1+": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "suUSD": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "78200000000000000000000",
+ "isEnabled": true,
+ "rate": "904774000000000000"
+ },
+ "out": {
+ "capacity": "100200000000000000000000",
+ "isEnabled": true,
+ "rate": "1159314000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "89400000000000000000000",
+ "isEnabled": true,
+ "rate": "1034358000000000000"
+ },
+ "out": {
+ "capacity": "101000000000000000000000",
+ "isEnabled": true,
+ "rate": "1168570000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "116000000000000000000000",
+ "isEnabled": true,
+ "rate": "1342120000000000000"
+ },
+ "out": {
+ "capacity": "139200000000000000000000",
+ "isEnabled": true,
+ "rate": "1610544000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "66600000000000000000000",
+ "isEnabled": true,
+ "rate": "770562000000000000"
+ },
+ "out": {
+ "capacity": "78000000000000000000000",
+ "isEnabled": true,
+ "rate": "902460000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "64800000000000000000000",
+ "isEnabled": true,
+ "rate": "749736000000000000"
+ },
+ "out": {
+ "capacity": "64600000000000000000000",
+ "isEnabled": true,
+ "rate": "747422000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "71000000000000000000000",
+ "isEnabled": true,
+ "rate": "821470000000000000"
+ },
+ "out": {
+ "capacity": "111600000000000000000000",
+ "isEnabled": true,
+ "rate": "1291212000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "2314000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "SXT": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "syrupUSDC": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "syrupUSDT": {
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tETH": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "tac-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "tac-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "THE": {
+ "binance-smart-chain-mainnet-opbnb-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "binance-smart-chain-mainnet-opbnb-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "297000000000000000000000",
+ "isEnabled": true,
+ "rate": "165132000000000000000"
+ },
+ "out": {
+ "capacity": "394500000000000000000000",
+ "isEnabled": true,
+ "rate": "219342000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "432000000000000000000000",
+ "isEnabled": true,
+ "rate": "240192000000000000000"
+ },
+ "out": {
+ "capacity": "390750000000000000000000",
+ "isEnabled": true,
+ "rate": "217257000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000000"
+ },
+ "out": {
+ "capacity": "750000000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "TRADE": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "TREE": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "TURBO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4704000000000000000000000",
+ "isEnabled": true,
+ "rate": "1306666636800000000000"
+ },
+ "out": {
+ "capacity": "3822000000000000000000000",
+ "isEnabled": true,
+ "rate": "1061666642400000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1944444400000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1944444400000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4781000000000000000000000",
+ "isEnabled": true,
+ "rate": "1328055525200000000000"
+ },
+ "out": {
+ "capacity": "2744000000000000000000000",
+ "isEnabled": true,
+ "rate": "762222204800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "7000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1944444400000000000000"
+ },
+ "out": {
+ "capacity": "7000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1944444400000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "TURTLE": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "una.USDC": {
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "99600000000",
+ "isEnabled": true,
+ "rate": "27665560"
+ },
+ "out": {
+ "capacity": "129000000000",
+ "isEnabled": true,
+ "rate": "35831900"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "300000000000",
+ "isEnabled": true,
+ "rate": "83330000"
+ },
+ "out": {
+ "capacity": "300000000000",
+ "isEnabled": true,
+ "rate": "83330000"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "171300000000",
+ "isEnabled": true,
+ "rate": "47581430"
+ },
+ "out": {
+ "capacity": "140100000000",
+ "isEnabled": true,
+ "rate": "38915110"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "300000000000",
+ "isEnabled": true,
+ "rate": "83330000"
+ },
+ "out": {
+ "capacity": "300000000000",
+ "isEnabled": true,
+ "rate": "83330000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "una.WEMIX": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "62600000000000000000000",
+ "isEnabled": true,
+ "rate": "17387150000000000000"
+ },
+ "out": {
+ "capacity": "118800000000000000000000",
+ "isEnabled": true,
+ "rate": "32996700000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "83000000000000000000000",
+ "isEnabled": true,
+ "rate": "23053250000000000000"
+ },
+ "out": {
+ "capacity": "129000000000000000000000",
+ "isEnabled": true,
+ "rate": "35829750000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "117000000000000000000000",
+ "isEnabled": true,
+ "rate": "32496750000000000000"
+ },
+ "out": {
+ "capacity": "135400000000000000000000",
+ "isEnabled": true,
+ "rate": "37607350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "71600000000000000000000",
+ "isEnabled": true,
+ "rate": "19886900000000000000"
+ },
+ "out": {
+ "capacity": "90000000000000000000000",
+ "isEnabled": true,
+ "rate": "24997500000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "106600000000000000000000",
+ "isEnabled": true,
+ "rate": "29608150000000000000"
+ },
+ "out": {
+ "capacity": "70200000000000000000000",
+ "isEnabled": true,
+ "rate": "19498050000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "127000000000000000000000",
+ "isEnabled": true,
+ "rate": "35274250000000000000"
+ },
+ "out": {
+ "capacity": "73400000000000000000000",
+ "isEnabled": true,
+ "rate": "20386850000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "102000000000000000000000",
+ "isEnabled": true,
+ "rate": "28330500000000000000"
+ },
+ "out": {
+ "capacity": "139000000000000000000000",
+ "isEnabled": true,
+ "rate": "38607250000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "118800000000000000000000",
+ "isEnabled": true,
+ "rate": "32996700000000000000"
+ },
+ "out": {
+ "capacity": "95200000000000000000000",
+ "isEnabled": true,
+ "rate": "26441800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "78400000000000000000000",
+ "isEnabled": true,
+ "rate": "21775600000000000000"
+ },
+ "out": {
+ "capacity": "131400000000000000000000",
+ "isEnabled": true,
+ "rate": "36496350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "63400000000000000000000",
+ "isEnabled": true,
+ "rate": "17609350000000000000"
+ },
+ "out": {
+ "capacity": "123800000000000000000000",
+ "isEnabled": true,
+ "rate": "34385450000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "136000000000000000000000",
+ "isEnabled": true,
+ "rate": "37774000000000000000"
+ },
+ "out": {
+ "capacity": "92200000000000000000000",
+ "isEnabled": true,
+ "rate": "25608550000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "126000000000000000000000",
+ "isEnabled": true,
+ "rate": "34996500000000000000"
+ },
+ "out": {
+ "capacity": "82400000000000000000000",
+ "isEnabled": true,
+ "rate": "22886600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ },
+ "out": {
+ "capacity": "200000000000000000000000",
+ "isEnabled": true,
+ "rate": "55550000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "uniBTC": {
+ "aptos-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "94000000",
+ "isEnabled": true,
+ "rate": "1088"
+ },
+ "out": {
+ "capacity": "134200000",
+ "isEnabled": true,
+ "rate": "1553"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "129000000",
+ "isEnabled": true,
+ "rate": "1493"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "97800000",
+ "isEnabled": true,
+ "rate": "1132"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bsquared-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "89000000",
+ "isEnabled": true,
+ "rate": "5150"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "139800000",
+ "isEnabled": true,
+ "rate": "1618"
+ },
+ "out": {
+ "capacity": "75000000",
+ "isEnabled": true,
+ "rate": "868"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "96000000",
+ "isEnabled": true,
+ "rate": "1111"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "corn-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "120200000",
+ "isEnabled": true,
+ "rate": "1391"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "98000000",
+ "isEnabled": true,
+ "rate": "1134"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "61400000",
+ "isEnabled": true,
+ "rate": "710"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "96000000",
+ "isEnabled": true,
+ "rate": "5555"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "139800000",
+ "isEnabled": true,
+ "rate": "8090"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "130600000",
+ "isEnabled": true,
+ "rate": "1511"
+ },
+ "out": {
+ "capacity": "93600000",
+ "isEnabled": true,
+ "rate": "1083"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-xlayer-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "70200000",
+ "isEnabled": true,
+ "rate": "812"
+ },
+ "out": {
+ "capacity": "78400000",
+ "isEnabled": true,
+ "rate": "907"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "66000000",
+ "isEnabled": true,
+ "rate": "763"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "120400000",
+ "isEnabled": true,
+ "rate": "1393"
+ },
+ "out": {
+ "capacity": "125600000",
+ "isEnabled": true,
+ "rate": "1453"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "115800000",
+ "isEnabled": true,
+ "rate": "1340"
+ },
+ "out": {
+ "capacity": "73400000",
+ "isEnabled": true,
+ "rate": "849"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "120400000",
+ "isEnabled": true,
+ "rate": "1393"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "bitcoin-mainnet-bsquared-1": {
+ "custom": {
+ "in": {
+ "capacity": "101600000",
+ "isEnabled": true,
+ "rate": "1176"
+ },
+ "out": {
+ "capacity": "84000000",
+ "isEnabled": true,
+ "rate": "972"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "109000000",
+ "isEnabled": true,
+ "rate": "1261"
+ },
+ "out": {
+ "capacity": "69000000",
+ "isEnabled": true,
+ "rate": "798"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "corn-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "61200000",
+ "isEnabled": true,
+ "rate": "70816"
+ },
+ "out": {
+ "capacity": "113800000",
+ "isEnabled": true,
+ "rate": "131682"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "231428"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "231428"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "127000000",
+ "isEnabled": true,
+ "rate": "1470"
+ },
+ "out": {
+ "capacity": "82000000",
+ "isEnabled": true,
+ "rate": "949"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "107800000",
+ "isEnabled": true,
+ "rate": "1247"
+ },
+ "out": {
+ "capacity": "137800000",
+ "isEnabled": true,
+ "rate": "1595"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "113600000",
+ "isEnabled": true,
+ "rate": "6574"
+ },
+ "out": {
+ "capacity": "115800000",
+ "isEnabled": true,
+ "rate": "6701"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "118000000",
+ "isEnabled": true,
+ "rate": "6828"
+ },
+ "out": {
+ "capacity": "78000000",
+ "isEnabled": true,
+ "rate": "4513"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "94800000",
+ "isEnabled": true,
+ "rate": "1097"
+ },
+ "out": {
+ "capacity": "134400000",
+ "isEnabled": true,
+ "rate": "1555"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "ethereum-mainnet-xlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "91000000",
+ "isEnabled": true,
+ "rate": "1053"
+ },
+ "out": {
+ "capacity": "73400000",
+ "isEnabled": true,
+ "rate": "849"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "115200000",
+ "isEnabled": true,
+ "rate": "1333"
+ },
+ "out": {
+ "capacity": "75200000",
+ "isEnabled": true,
+ "rate": "870"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "tac-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "137000000",
+ "isEnabled": true,
+ "rate": "1585"
+ },
+ "out": {
+ "capacity": "123800000",
+ "isEnabled": true,
+ "rate": "1432"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "113200000",
+ "isEnabled": true,
+ "rate": "1310"
+ },
+ "out": {
+ "capacity": "117400000",
+ "isEnabled": true,
+ "rate": "1358"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "96800000",
+ "isEnabled": true,
+ "rate": "1120"
+ },
+ "out": {
+ "capacity": "117600000",
+ "isEnabled": true,
+ "rate": "1361"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ },
+ "out": {
+ "capacity": "200000000",
+ "isEnabled": true,
+ "rate": "2315"
+ }
+ }
+ }
+ }
+ },
+ "tac-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "UNIO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "32000000000000000000000000",
+ "isEnabled": true,
+ "rate": "8888883200000000000000"
+ },
+ "out": {
+ "capacity": "34650000000000000000000000",
+ "isEnabled": true,
+ "rate": "9624993840000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13888880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13888880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6300000000000000000000000",
+ "isEnabled": true,
+ "rate": "218400000000000000000"
+ },
+ "out": {
+ "capacity": "4800000000000000000000000",
+ "isEnabled": true,
+ "rate": "166400000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "33900000000000000000000000",
+ "isEnabled": true,
+ "rate": "9416660640000000000000"
+ },
+ "out": {
+ "capacity": "23750000000000000000000000",
+ "isEnabled": true,
+ "rate": "6597218000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13888880000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13888880000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6345000000000000000000000",
+ "isEnabled": true,
+ "rate": "219960000000000000000"
+ },
+ "out": {
+ "capacity": "10200000000000000000000000",
+ "isEnabled": true,
+ "rate": "353600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "7485000000000000000000000",
+ "isEnabled": true,
+ "rate": "259480000000000000000"
+ },
+ "out": {
+ "capacity": "9495000000000000000000000",
+ "isEnabled": true,
+ "rate": "329160000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "9630000000000000000000000",
+ "isEnabled": true,
+ "rate": "333840000000000000000"
+ },
+ "out": {
+ "capacity": "6120000000000000000000000",
+ "isEnabled": true,
+ "rate": "212160000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000000",
+ "isEnabled": true,
+ "rate": "520000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USAGI": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USD+": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "96800000000",
+ "isEnabled": true,
+ "rate": "26620000"
+ },
+ "out": {
+ "capacity": "110200000000",
+ "isEnabled": true,
+ "rate": "30305000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ },
+ "out": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "77400000000",
+ "isEnabled": true,
+ "rate": "21285000"
+ },
+ "out": {
+ "capacity": "87200000000",
+ "isEnabled": true,
+ "rate": "23980000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ },
+ "out": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "92000000000",
+ "isEnabled": true,
+ "rate": "25300000"
+ },
+ "out": {
+ "capacity": "99000000000",
+ "isEnabled": true,
+ "rate": "27225000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ },
+ "out": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "86800000000",
+ "isEnabled": true,
+ "rate": "23870000"
+ },
+ "out": {
+ "capacity": "82400000000",
+ "isEnabled": true,
+ "rate": "22660000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ },
+ "out": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "104600000000",
+ "isEnabled": true,
+ "rate": "28765000"
+ },
+ "out": {
+ "capacity": "105400000000",
+ "isEnabled": true,
+ "rate": "28985000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ },
+ "out": {
+ "capacity": "200000000000",
+ "isEnabled": true,
+ "rate": "55000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "USD0": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1491000000000000000000000",
+ "isEnabled": true,
+ "rate": "17395000000000000000"
+ },
+ "out": {
+ "capacity": "1020000000000000000000000",
+ "isEnabled": true,
+ "rate": "11900000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "975000000000000000000000",
+ "isEnabled": true,
+ "rate": "11375000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000000",
+ "isEnabled": true,
+ "rate": "17500000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1203000000000000000000000",
+ "isEnabled": true,
+ "rate": "14035000000000000000"
+ },
+ "out": {
+ "capacity": "906000000000000000000000",
+ "isEnabled": true,
+ "rate": "10570000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1506000000000000000000000",
+ "isEnabled": true,
+ "rate": "17570000000000000000"
+ },
+ "out": {
+ "capacity": "1251000000000000000000000",
+ "isEnabled": true,
+ "rate": "14595000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USD1": {
+ "ab-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "aptos-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ab-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "aptos-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "morph-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plume-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "monad-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "morph-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plume-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDC": {
+ "0g-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "19250000000",
+ "isEnabled": true,
+ "rate": "3850000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "50000000000",
+ "isEnabled": true,
+ "rate": "10000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDf": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "xdc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "xdc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDFI": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "29950000000000000000000",
+ "isEnabled": true,
+ "rate": "341430000000000000"
+ },
+ "out": {
+ "capacity": "18450000000000000000000",
+ "isEnabled": true,
+ "rate": "210330000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "34250000000000000000000",
+ "isEnabled": true,
+ "rate": "390450000000000000"
+ },
+ "out": {
+ "capacity": "29900000000000000000000",
+ "isEnabled": true,
+ "rate": "340860000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "24500000000000000000000",
+ "isEnabled": true,
+ "rate": "279300000000000000"
+ },
+ "out": {
+ "capacity": "27400000000000000000000",
+ "isEnabled": true,
+ "rate": "312360000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "20550000000000000000000",
+ "isEnabled": true,
+ "rate": "234270000000000000"
+ },
+ "out": {
+ "capacity": "18600000000000000000000",
+ "isEnabled": true,
+ "rate": "212040000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "29850000000000000000000",
+ "isEnabled": true,
+ "rate": "340290000000000000"
+ },
+ "out": {
+ "capacity": "30450000000000000000000",
+ "isEnabled": true,
+ "rate": "347130000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "17350000000000000000000",
+ "isEnabled": true,
+ "rate": "197790000000000000"
+ },
+ "out": {
+ "capacity": "25300000000000000000000",
+ "isEnabled": true,
+ "rate": "288420000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ },
+ "out": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "570000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDM": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "578000000000000000000000",
+ "isEnabled": true,
+ "rate": "6704800000000000000"
+ },
+ "out": {
+ "capacity": "603000000000000000000000",
+ "isEnabled": true,
+ "rate": "6994800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "616000000000000000000000",
+ "isEnabled": true,
+ "rate": "7145600000000000000"
+ },
+ "out": {
+ "capacity": "343000000000000000000000",
+ "isEnabled": true,
+ "rate": "3978800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "592000000000000000000000",
+ "isEnabled": true,
+ "rate": "6867200000000000000"
+ },
+ "out": {
+ "capacity": "690000000000000000000000",
+ "isEnabled": true,
+ "rate": "8004000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "305000000000000000000000",
+ "isEnabled": true,
+ "rate": "3538000000000000000"
+ },
+ "out": {
+ "capacity": "355000000000000000000000",
+ "isEnabled": true,
+ "rate": "4118000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "356000000000000000000000",
+ "isEnabled": true,
+ "rate": "4129600000000000000"
+ },
+ "out": {
+ "capacity": "484000000000000000000000",
+ "isEnabled": true,
+ "rate": "5614400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "633000000000000000000000",
+ "isEnabled": true,
+ "rate": "7342800000000000000"
+ },
+ "out": {
+ "capacity": "450000000000000000000000",
+ "isEnabled": true,
+ "rate": "5220000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "496000000000000000000000",
+ "isEnabled": true,
+ "rate": "5753600000000000000"
+ },
+ "out": {
+ "capacity": "501000000000000000000000",
+ "isEnabled": true,
+ "rate": "5811600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "330000000000000000000000",
+ "isEnabled": true,
+ "rate": "3828000000000000000"
+ },
+ "out": {
+ "capacity": "457000000000000000000000",
+ "isEnabled": true,
+ "rate": "5301200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "658000000000000000000000",
+ "isEnabled": true,
+ "rate": "7632800000000000000"
+ },
+ "out": {
+ "capacity": "636000000000000000000000",
+ "isEnabled": true,
+ "rate": "7377600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "539000000000000000000000",
+ "isEnabled": true,
+ "rate": "6252400000000000000"
+ },
+ "out": {
+ "capacity": "670000000000000000000000",
+ "isEnabled": true,
+ "rate": "7772000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "384000000000000000000000",
+ "isEnabled": true,
+ "rate": "4454400000000000000"
+ },
+ "out": {
+ "capacity": "594000000000000000000000",
+ "isEnabled": true,
+ "rate": "6890400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "567000000000000000000000",
+ "isEnabled": true,
+ "rate": "6577200000000000000"
+ },
+ "out": {
+ "capacity": "573000000000000000000000",
+ "isEnabled": true,
+ "rate": "6646800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "660000000000000000000000",
+ "isEnabled": true,
+ "rate": "7656000000000000000"
+ },
+ "out": {
+ "capacity": "356000000000000000000000",
+ "isEnabled": true,
+ "rate": "4129600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "334000000000000000000000",
+ "isEnabled": true,
+ "rate": "3874400000000000000"
+ },
+ "out": {
+ "capacity": "556000000000000000000000",
+ "isEnabled": true,
+ "rate": "6449600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "324000000000000000000000",
+ "isEnabled": true,
+ "rate": "3758400000000000000"
+ },
+ "out": {
+ "capacity": "386000000000000000000000",
+ "isEnabled": true,
+ "rate": "4477600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "363000000000000000000000",
+ "isEnabled": true,
+ "rate": "4210800000000000000"
+ },
+ "out": {
+ "capacity": "394000000000000000000000",
+ "isEnabled": true,
+ "rate": "4570400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "563000000000000000000000",
+ "isEnabled": true,
+ "rate": "6530800000000000000"
+ },
+ "out": {
+ "capacity": "601000000000000000000000",
+ "isEnabled": true,
+ "rate": "6971600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "387000000000000000000000",
+ "isEnabled": true,
+ "rate": "4489200000000000000"
+ },
+ "out": {
+ "capacity": "381000000000000000000000",
+ "isEnabled": true,
+ "rate": "4419600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "387000000000000000000000",
+ "isEnabled": true,
+ "rate": "4489200000000000000"
+ },
+ "out": {
+ "capacity": "542000000000000000000000",
+ "isEnabled": true,
+ "rate": "6287200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "613000000000000000000000",
+ "isEnabled": true,
+ "rate": "7110800000000000000"
+ },
+ "out": {
+ "capacity": "321000000000000000000000",
+ "isEnabled": true,
+ "rate": "3723600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "342000000000000000000000",
+ "isEnabled": true,
+ "rate": "3967200000000000000"
+ },
+ "out": {
+ "capacity": "345000000000000000000000",
+ "isEnabled": true,
+ "rate": "4002000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "427000000000000000000000",
+ "isEnabled": true,
+ "rate": "4953200000000000000"
+ },
+ "out": {
+ "capacity": "669000000000000000000000",
+ "isEnabled": true,
+ "rate": "7760400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "491000000000000000000000",
+ "isEnabled": true,
+ "rate": "5695600000000000000"
+ },
+ "out": {
+ "capacity": "418000000000000000000000",
+ "isEnabled": true,
+ "rate": "4848800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "315000000000000000000000",
+ "isEnabled": true,
+ "rate": "3654000000000000000"
+ },
+ "out": {
+ "capacity": "637000000000000000000000",
+ "isEnabled": true,
+ "rate": "7389200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "652000000000000000000000",
+ "isEnabled": true,
+ "rate": "7563200000000000000"
+ },
+ "out": {
+ "capacity": "307000000000000000000000",
+ "isEnabled": true,
+ "rate": "3561200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "439000000000000000000000",
+ "isEnabled": true,
+ "rate": "5092400000000000000"
+ },
+ "out": {
+ "capacity": "483000000000000000000000",
+ "isEnabled": true,
+ "rate": "5602800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "300000000000000000000000",
+ "isEnabled": true,
+ "rate": "3480000000000000000"
+ },
+ "out": {
+ "capacity": "674000000000000000000000",
+ "isEnabled": true,
+ "rate": "7818400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "617000000000000000000000",
+ "isEnabled": true,
+ "rate": "7157200000000000000"
+ },
+ "out": {
+ "capacity": "326000000000000000000000",
+ "isEnabled": true,
+ "rate": "3781600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "349000000000000000000000",
+ "isEnabled": true,
+ "rate": "4048400000000000000"
+ },
+ "out": {
+ "capacity": "344000000000000000000000",
+ "isEnabled": true,
+ "rate": "3990400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "582000000000000000000000",
+ "isEnabled": true,
+ "rate": "6751200000000000000"
+ },
+ "out": {
+ "capacity": "313000000000000000000000",
+ "isEnabled": true,
+ "rate": "3630800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "487000000000000000000000",
+ "isEnabled": true,
+ "rate": "5649200000000000000"
+ },
+ "out": {
+ "capacity": "478000000000000000000000",
+ "isEnabled": true,
+ "rate": "5544800000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "405000000000000000000000",
+ "isEnabled": true,
+ "rate": "4698000000000000000"
+ },
+ "out": {
+ "capacity": "640000000000000000000000",
+ "isEnabled": true,
+ "rate": "7424000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "401000000000000000000000",
+ "isEnabled": true,
+ "rate": "4651600000000000000"
+ },
+ "out": {
+ "capacity": "665000000000000000000000",
+ "isEnabled": true,
+ "rate": "7714000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "654000000000000000000000",
+ "isEnabled": true,
+ "rate": "7586400000000000000"
+ },
+ "out": {
+ "capacity": "677000000000000000000000",
+ "isEnabled": true,
+ "rate": "7853200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "480000000000000000000000",
+ "isEnabled": true,
+ "rate": "5568000000000000000"
+ },
+ "out": {
+ "capacity": "514000000000000000000000",
+ "isEnabled": true,
+ "rate": "5962400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "562000000000000000000000",
+ "isEnabled": true,
+ "rate": "6519200000000000000"
+ },
+ "out": {
+ "capacity": "367000000000000000000000",
+ "isEnabled": true,
+ "rate": "4257200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "322000000000000000000000",
+ "isEnabled": true,
+ "rate": "3735200000000000000"
+ },
+ "out": {
+ "capacity": "686000000000000000000000",
+ "isEnabled": true,
+ "rate": "7957600000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "350000000000000000000000",
+ "isEnabled": true,
+ "rate": "4060000000000000000"
+ },
+ "out": {
+ "capacity": "452000000000000000000000",
+ "isEnabled": true,
+ "rate": "5243200000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "418000000000000000000000",
+ "isEnabled": true,
+ "rate": "4848800000000000000"
+ },
+ "out": {
+ "capacity": "629000000000000000000000",
+ "isEnabled": true,
+ "rate": "7296400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "363000000000000000000000",
+ "isEnabled": true,
+ "rate": "4210800000000000000"
+ },
+ "out": {
+ "capacity": "389000000000000000000000",
+ "isEnabled": true,
+ "rate": "4512400000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11600000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "7276500000000000000000000",
+ "isEnabled": true,
+ "rate": "803880000000000000000"
+ },
+ "out": {
+ "capacity": "6430000000000000000000000",
+ "isEnabled": true,
+ "rate": "745880000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10500000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5838000000000000000000000",
+ "isEnabled": true,
+ "rate": "644960000000000000000"
+ },
+ "out": {
+ "capacity": "4830000000000000000000000",
+ "isEnabled": true,
+ "rate": "560280000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10500000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3391500000000000000000000",
+ "isEnabled": true,
+ "rate": "374680000000000000000"
+ },
+ "out": {
+ "capacity": "5800000000000000000000000",
+ "isEnabled": true,
+ "rate": "672800000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10500000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "2020000000000000000000000",
+ "isEnabled": true,
+ "rate": "23379641600000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870400000000000000"
+ }
+ }
+ }
+ }
+ },
+ "kaia-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "7686000000000000000000000",
+ "isEnabled": true,
+ "rate": "84912000000000000000"
+ },
+ "out": {
+ "capacity": "13680000000000000000000000",
+ "isEnabled": true,
+ "rate": "158688000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "21000000000000000000000000",
+ "isEnabled": true,
+ "rate": "232000000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "232000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "7213500000000000000000000",
+ "isEnabled": true,
+ "rate": "796920000000000000000"
+ },
+ "out": {
+ "capacity": "3920000000000000000000000",
+ "isEnabled": true,
+ "rate": "454720000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10500000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1160000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3674000000000000000000000",
+ "isEnabled": true,
+ "rate": "42523169920000000000"
+ },
+ "out": {
+ "capacity": "1",
+ "isEnabled": true,
+ "rate": "0"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5500000000000000000000000",
+ "isEnabled": true,
+ "rate": "63657440000000000000"
+ },
+ "out": {
+ "capacity": "2",
+ "isEnabled": true,
+ "rate": "1"
+ }
+ }
+ },
+ "kaia-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "14238000000000000000000000",
+ "isEnabled": true,
+ "rate": "157296000000000000000"
+ },
+ "out": {
+ "capacity": "6420000000000000000000000",
+ "isEnabled": true,
+ "rate": "74472000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "21000000000000000000000000",
+ "isEnabled": true,
+ "rate": "232000000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "232000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDT": {
+ "0g-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3590000000000",
+ "isEnabled": true,
+ "rate": "1795000000"
+ },
+ "out": {
+ "capacity": "5130000000000",
+ "isEnabled": true,
+ "rate": "2565000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "16850000000",
+ "isEnabled": true,
+ "rate": "3370000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "50000000000",
+ "isEnabled": true,
+ "rate": "10000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "5960000000000",
+ "isEnabled": true,
+ "rate": "2980000000"
+ },
+ "out": {
+ "capacity": "5120000000000",
+ "isEnabled": true,
+ "rate": "2560000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4020000000000",
+ "isEnabled": true,
+ "rate": "2010000000"
+ },
+ "out": {
+ "capacity": "6600000000000",
+ "isEnabled": true,
+ "rate": "3300000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3170000000000",
+ "isEnabled": true,
+ "rate": "1585000000"
+ },
+ "out": {
+ "capacity": "5890000000000",
+ "isEnabled": true,
+ "rate": "2945000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-botanix": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3040000000000",
+ "isEnabled": true,
+ "rate": "1520000000"
+ },
+ "out": {
+ "capacity": "6900000000000",
+ "isEnabled": true,
+ "rate": "3450000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "celo-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "4310000000000",
+ "isEnabled": true,
+ "rate": "2155000000"
+ },
+ "out": {
+ "capacity": "5170000000000",
+ "isEnabled": true,
+ "rate": "2585000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "4450000000000",
+ "isEnabled": true,
+ "rate": "2225000000"
+ },
+ "out": {
+ "capacity": "5060000000000",
+ "isEnabled": true,
+ "rate": "2530000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "6730000000000",
+ "isEnabled": true,
+ "rate": "3365000000"
+ },
+ "out": {
+ "capacity": "3820000000000",
+ "isEnabled": true,
+ "rate": "1910000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4620000000000",
+ "isEnabled": true,
+ "rate": "2310000000"
+ },
+ "out": {
+ "capacity": "4190000000000",
+ "isEnabled": true,
+ "rate": "2095000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "4080000000000",
+ "isEnabled": true,
+ "rate": "2040000000"
+ },
+ "out": {
+ "capacity": "4240000000000",
+ "isEnabled": true,
+ "rate": "2120000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3600000000000",
+ "isEnabled": true,
+ "rate": "1800000000"
+ },
+ "out": {
+ "capacity": "5900000000000",
+ "isEnabled": true,
+ "rate": "2950000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3380000000000",
+ "isEnabled": true,
+ "rate": "1690000000"
+ },
+ "out": {
+ "capacity": "3790000000000",
+ "isEnabled": true,
+ "rate": "1895000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "3120000000000",
+ "isEnabled": true,
+ "rate": "1560000000"
+ },
+ "out": {
+ "capacity": "3760000000000",
+ "isEnabled": true,
+ "rate": "1880000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "4980000000000",
+ "isEnabled": true,
+ "rate": "2490000000"
+ },
+ "out": {
+ "capacity": "6080000000000",
+ "isEnabled": true,
+ "rate": "3040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4330000000000",
+ "isEnabled": true,
+ "rate": "2165000000"
+ },
+ "out": {
+ "capacity": "4650000000000",
+ "isEnabled": true,
+ "rate": "2325000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3890000000000",
+ "isEnabled": true,
+ "rate": "1945000000"
+ },
+ "out": {
+ "capacity": "4420000000000",
+ "isEnabled": true,
+ "rate": "2210000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "5030000000000",
+ "isEnabled": true,
+ "rate": "2515000000"
+ },
+ "out": {
+ "capacity": "4660000000000",
+ "isEnabled": true,
+ "rate": "2330000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "5450000000000",
+ "isEnabled": true,
+ "rate": "2725000000"
+ },
+ "out": {
+ "capacity": "6780000000000",
+ "isEnabled": true,
+ "rate": "3390000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4100000000000",
+ "isEnabled": true,
+ "rate": "2050000000"
+ },
+ "out": {
+ "capacity": "6560000000000",
+ "isEnabled": true,
+ "rate": "3280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5420000000000",
+ "isEnabled": true,
+ "rate": "2710000000"
+ },
+ "out": {
+ "capacity": "6140000000000",
+ "isEnabled": true,
+ "rate": "3070000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5140000000000",
+ "isEnabled": true,
+ "rate": "2570000000"
+ },
+ "out": {
+ "capacity": "5060000000000",
+ "isEnabled": true,
+ "rate": "2530000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "5570000000000",
+ "isEnabled": true,
+ "rate": "2785000000"
+ },
+ "out": {
+ "capacity": "4390000000000",
+ "isEnabled": true,
+ "rate": "2195000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-botanix": {
+ "custom": {
+ "in": {
+ "capacity": "3380000000000",
+ "isEnabled": true,
+ "rate": "1690000000"
+ },
+ "out": {
+ "capacity": "3600000000000",
+ "isEnabled": true,
+ "rate": "1800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "celo-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "4990000000000",
+ "isEnabled": true,
+ "rate": "2495000000"
+ },
+ "out": {
+ "capacity": "6970000000000",
+ "isEnabled": true,
+ "rate": "3485000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "5880000000000",
+ "isEnabled": true,
+ "rate": "2940000000"
+ },
+ "out": {
+ "capacity": "6300000000000",
+ "isEnabled": true,
+ "rate": "3150000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "5100000000000",
+ "isEnabled": true,
+ "rate": "2550000000"
+ },
+ "out": {
+ "capacity": "6150000000000",
+ "isEnabled": true,
+ "rate": "3075000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "6150000000000",
+ "isEnabled": true,
+ "rate": "3075000000"
+ },
+ "out": {
+ "capacity": "4040000000000",
+ "isEnabled": true,
+ "rate": "2020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6310000000000",
+ "isEnabled": true,
+ "rate": "3155000000"
+ },
+ "out": {
+ "capacity": "6280000000000",
+ "isEnabled": true,
+ "rate": "3140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "4540000000000",
+ "isEnabled": true,
+ "rate": "2270000000"
+ },
+ "out": {
+ "capacity": "5930000000000",
+ "isEnabled": true,
+ "rate": "2965000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "4280000000000",
+ "isEnabled": true,
+ "rate": "2140000000"
+ },
+ "out": {
+ "capacity": "6820000000000",
+ "isEnabled": true,
+ "rate": "3410000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "6640000000000",
+ "isEnabled": true,
+ "rate": "3320000000"
+ },
+ "out": {
+ "capacity": "4700000000000",
+ "isEnabled": true,
+ "rate": "2350000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6220000000000",
+ "isEnabled": true,
+ "rate": "3110000000"
+ },
+ "out": {
+ "capacity": "6230000000000",
+ "isEnabled": true,
+ "rate": "3115000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ },
+ "out": {
+ "capacity": "10000000000000",
+ "isEnabled": true,
+ "rate": "5000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USELESS": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USUAL": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1431000000000000000000000",
+ "isEnabled": true,
+ "rate": "16695000000000000000"
+ },
+ "out": {
+ "capacity": "2034000000000000000000000",
+ "isEnabled": true,
+ "rate": "23730000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1356000000000000000000000",
+ "isEnabled": true,
+ "rate": "15820000000000000000"
+ },
+ "out": {
+ "capacity": "1557000000000000000000000",
+ "isEnabled": true,
+ "rate": "18165000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1707000000000000000000000",
+ "isEnabled": true,
+ "rate": "19915000000000000000"
+ },
+ "out": {
+ "capacity": "930000000000000000000000",
+ "isEnabled": true,
+ "rate": "10850000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ },
+ "out": {
+ "capacity": "3000000000000000000000000",
+ "isEnabled": true,
+ "rate": "35000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "USX": {
+ "plasma-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "plasma-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "VOOI": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "VRTX": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "6770000000000000000000000",
+ "isEnabled": true,
+ "rate": "677000000000000000000000"
+ },
+ "out": {
+ "capacity": "3420000000000000000000000",
+ "isEnabled": true,
+ "rate": "342000000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2200000000000000000000000",
+ "isEnabled": true,
+ "rate": "25462800000000000000"
+ },
+ "out": {
+ "capacity": "1740000000000000000000000",
+ "isEnabled": true,
+ "rate": "20138760000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "3160000000000000000000000",
+ "isEnabled": true,
+ "rate": "36573840000000000000"
+ },
+ "out": {
+ "capacity": "1885000000000000000000000",
+ "isEnabled": true,
+ "rate": "21816990000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "2810000000000000000000000",
+ "isEnabled": true,
+ "rate": "32522940000000000000"
+ },
+ "out": {
+ "capacity": "3090000000000000000000000",
+ "isEnabled": true,
+ "rate": "35763660000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "5440000000000000000000000",
+ "isEnabled": true,
+ "rate": "544000000000000000000000"
+ },
+ "out": {
+ "capacity": "4570000000000000000000000",
+ "isEnabled": true,
+ "rate": "457000000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "2060000000000000000000000",
+ "isEnabled": true,
+ "rate": "23842440000000000000"
+ },
+ "out": {
+ "capacity": "1895000000000000000000000",
+ "isEnabled": true,
+ "rate": "21932730000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "2845000000000000000000000",
+ "isEnabled": true,
+ "rate": "32928030000000000000"
+ },
+ "out": {
+ "capacity": "2720000000000000000000000",
+ "isEnabled": true,
+ "rate": "31481280000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-blast-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1670000000000000000000000",
+ "isEnabled": true,
+ "rate": "19328580000000000000"
+ },
+ "out": {
+ "capacity": "1530000000000000000000000",
+ "isEnabled": true,
+ "rate": "17708220000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "2715000000000000000000000",
+ "isEnabled": true,
+ "rate": "31423410000000000000"
+ },
+ "out": {
+ "capacity": "1785000000000000000000000",
+ "isEnabled": true,
+ "rate": "20659590000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mantle-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sei-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "6690000000000000000000000",
+ "isEnabled": true,
+ "rate": "669000000000000000000000"
+ },
+ "out": {
+ "capacity": "4380000000000000000000000",
+ "isEnabled": true,
+ "rate": "438000000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "VSN": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "29947500000000000000000000",
+ "isEnabled": true,
+ "rate": "25047000000000000000"
+ },
+ "out": {
+ "capacity": "47850000000000000000000000",
+ "isEnabled": true,
+ "rate": "44022000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "33825000000000000000000000",
+ "isEnabled": true,
+ "rate": "28290000000000000000"
+ },
+ "out": {
+ "capacity": "38100000000000000000000000",
+ "isEnabled": true,
+ "rate": "35052000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "41085000000000000000000000",
+ "isEnabled": true,
+ "rate": "34362000000000000000"
+ },
+ "out": {
+ "capacity": "40650000000000000000000000",
+ "isEnabled": true,
+ "rate": "37398000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "53377500000000000000000000",
+ "isEnabled": true,
+ "rate": "44643000000000000000"
+ },
+ "out": {
+ "capacity": "49725000000000000000000000",
+ "isEnabled": true,
+ "rate": "45747000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "25162500000000000000000000",
+ "isEnabled": true,
+ "rate": "21045000000000000000"
+ },
+ "out": {
+ "capacity": "32025000000000000000000000",
+ "isEnabled": true,
+ "rate": "29463000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "45375000000000000000000000",
+ "isEnabled": true,
+ "rate": "37950000000000000000"
+ },
+ "out": {
+ "capacity": "37875000000000000000000000",
+ "isEnabled": true,
+ "rate": "34845000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "29370000000000000000000000",
+ "isEnabled": true,
+ "rate": "24564000000000000000"
+ },
+ "out": {
+ "capacity": "52350000000000000000000000",
+ "isEnabled": true,
+ "rate": "48162000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "36877500000000000000000000",
+ "isEnabled": true,
+ "rate": "30843000000000000000"
+ },
+ "out": {
+ "capacity": "30900000000000000000000000",
+ "isEnabled": true,
+ "rate": "28428000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "82500000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ },
+ "out": {
+ "capacity": "75000000000000000000000000",
+ "isEnabled": true,
+ "rate": "69000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "W0G": {
+ "0g-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "0g-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WASTR": {
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "polkadot-mainnet-astar": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "4880000000000000000000000",
+ "isEnabled": true,
+ "rate": "1355664000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2778000000000000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "3270000000000000000000000",
+ "isEnabled": true,
+ "rate": "908406000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2778000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "5190000000000000000000000",
+ "isEnabled": true,
+ "rate": "1441782000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "10000000000000000000000000",
+ "isEnabled": true,
+ "rate": "2778000000000000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "10720000000000000000000000",
+ "isEnabled": true,
+ "rate": "2978016000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "5556000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polkadot-mainnet-astar": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ }
+ },
+ "WBTC": {
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2100000000",
+ "isEnabled": true,
+ "rate": "24305"
+ },
+ "out": {
+ "capacity": "2381400000",
+ "isEnabled": true,
+ "rate": "27562"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "4200000000",
+ "isEnabled": true,
+ "rate": "48610"
+ },
+ "out": {
+ "capacity": "3780000000",
+ "isEnabled": true,
+ "rate": "43750"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1650600000",
+ "isEnabled": true,
+ "rate": "19103"
+ },
+ "out": {
+ "capacity": "2570400000",
+ "isEnabled": true,
+ "rate": "29750"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "4200000000",
+ "isEnabled": true,
+ "rate": "48610"
+ },
+ "out": {
+ "capacity": "3780000000",
+ "isEnabled": true,
+ "rate": "43750"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WECO": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "189000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13124160000000000000000"
+ },
+ "out": {
+ "capacity": "190000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13193600000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "177500000000000000000000000",
+ "isEnabled": true,
+ "rate": "12325600000000000000000"
+ },
+ "out": {
+ "capacity": "220500000000000000000000000",
+ "isEnabled": true,
+ "rate": "15311520000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "176000000000000000000000000",
+ "isEnabled": true,
+ "rate": "12221440000000000000000"
+ },
+ "out": {
+ "capacity": "253000000000000000000000000",
+ "isEnabled": true,
+ "rate": "17568320000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "216500000000000000000000000",
+ "isEnabled": true,
+ "rate": "15033760000000000000000"
+ },
+ "out": {
+ "capacity": "322500000000000000000000000",
+ "isEnabled": true,
+ "rate": "22394400000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "199500000000000000000000000",
+ "isEnabled": true,
+ "rate": "13853280000000000000000"
+ },
+ "out": {
+ "capacity": "193000000000000000000000000",
+ "isEnabled": true,
+ "rate": "13401920000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "302000000000000000000000000",
+ "isEnabled": true,
+ "rate": "20970880000000000000000"
+ },
+ "out": {
+ "capacity": "238000000000000000000000000",
+ "isEnabled": true,
+ "rate": "16526720000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "198500000000000000000000000",
+ "isEnabled": true,
+ "rate": "13783840000000000000000"
+ },
+ "out": {
+ "capacity": "211500000000000000000000000",
+ "isEnabled": true,
+ "rate": "14686560000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "168000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11665920000000000000000"
+ },
+ "out": {
+ "capacity": "167000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11596480000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "204000000000000000000000000",
+ "isEnabled": true,
+ "rate": "14165760000000000000000"
+ },
+ "out": {
+ "capacity": "253000000000000000000000000",
+ "isEnabled": true,
+ "rate": "17568320000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "254500000000000000000000000",
+ "isEnabled": true,
+ "rate": "17672480000000000000000"
+ },
+ "out": {
+ "capacity": "168000000000000000000000000",
+ "isEnabled": true,
+ "rate": "11665920000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ },
+ "out": {
+ "capacity": "500000000000000000000000000",
+ "isEnabled": true,
+ "rate": "34720000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WETH": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "12366000000000000000",
+ "isEnabled": true,
+ "rate": "3435000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "18000000000000000000",
+ "isEnabled": true,
+ "rate": "5000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "36481500000000000000",
+ "isEnabled": true,
+ "rate": "10133748660000000"
+ },
+ "out": {
+ "capacity": "28314000000000000000",
+ "isEnabled": true,
+ "rate": "7864998960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "52635000000000000000",
+ "isEnabled": true,
+ "rate": "14620831400000000"
+ },
+ "out": {
+ "capacity": "47825250000000000000",
+ "isEnabled": true,
+ "rate": "13284789910000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "31458960000000000000",
+ "isEnabled": true,
+ "rate": "8738599999999999"
+ },
+ "out": {
+ "capacity": "60076500000000000000",
+ "isEnabled": true,
+ "rate": "16687916666666666"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "47280750000000000000",
+ "isEnabled": true,
+ "rate": "13133539930000000"
+ },
+ "out": {
+ "capacity": "43923000000000000000",
+ "isEnabled": true,
+ "rate": "12200831720000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "37389000000000000000",
+ "isEnabled": true,
+ "rate": "10385831960000000"
+ },
+ "out": {
+ "capacity": "30764250000000000000",
+ "isEnabled": true,
+ "rate": "8545623870000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "58481400000000000000",
+ "isEnabled": true,
+ "rate": "16244833333333333"
+ },
+ "out": {
+ "capacity": "60984000000000000000",
+ "isEnabled": true,
+ "rate": "16939999999999999"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "13453200000000000000",
+ "isEnabled": true,
+ "rate": "3737000000000000"
+ },
+ "out": {
+ "capacity": "9120000000000000000",
+ "isEnabled": true,
+ "rate": "2533333333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "33300000000000000000",
+ "isEnabled": true,
+ "rate": "9250000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000",
+ "isEnabled": true,
+ "rate": "8333333333333333"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "61528500000000000000",
+ "isEnabled": true,
+ "rate": "17091247740000000"
+ },
+ "out": {
+ "capacity": "47825250000000000000",
+ "isEnabled": true,
+ "rate": "13284789910000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "57263250000000000000",
+ "isEnabled": true,
+ "rate": "15906456230000000"
+ },
+ "out": {
+ "capacity": "36753750000000000000",
+ "isEnabled": true,
+ "rate": "10209373650000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208330000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "31458960000000000000",
+ "isEnabled": true,
+ "rate": "8738599999999999"
+ },
+ "out": {
+ "capacity": "57807750000000000000",
+ "isEnabled": true,
+ "rate": "16057708333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "36252000000000000000",
+ "isEnabled": true,
+ "rate": "10176000000000000"
+ },
+ "out": {
+ "capacity": "38760000000000000000",
+ "isEnabled": true,
+ "rate": "10880000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ },
+ "out": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "40634490000000000000",
+ "isEnabled": true,
+ "rate": "11287358333333333"
+ },
+ "out": {
+ "capacity": "33033000000000000000",
+ "isEnabled": true,
+ "rate": "9175833333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "35290500000000000000",
+ "isEnabled": true,
+ "rate": "9802916666666666"
+ },
+ "out": {
+ "capacity": "40928250000000000000",
+ "isEnabled": true,
+ "rate": "11368958333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "17582400000000000000",
+ "isEnabled": true,
+ "rate": "4884000000000000"
+ },
+ "out": {
+ "capacity": "17940000000000000000",
+ "isEnabled": true,
+ "rate": "4983333333333333"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "33300000000000000000",
+ "isEnabled": true,
+ "rate": "9250000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000",
+ "isEnabled": true,
+ "rate": "8333333333333333"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "59792190000000000000",
+ "isEnabled": true,
+ "rate": "16608941666666666"
+ },
+ "out": {
+ "capacity": "39476250000000000000",
+ "isEnabled": true,
+ "rate": "10965624999999999"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100830000000000000000",
+ "isEnabled": true,
+ "rate": "28008333333333333"
+ },
+ "out": {
+ "capacity": "90750000000000000000",
+ "isEnabled": true,
+ "rate": "25208333333333333"
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WFRAGSOL": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "1000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WHLP": {
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WHSK": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-hashkey-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WHY": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WLD": {
+ "ethereum-mainnet-worldchain-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "36900000000000000000000",
+ "isEnabled": true,
+ "rate": "10249971300000000000"
+ },
+ "out": {
+ "capacity": "67900000000000000000000",
+ "isEnabled": true,
+ "rate": "18861058300000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777700000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-worldchain-1": {
+ "custom": {
+ "in": {
+ "capacity": "50900000000000000000000",
+ "isEnabled": true,
+ "rate": "14138849300000000000"
+ },
+ "out": {
+ "capacity": "67300000000000000000000",
+ "isEnabled": true,
+ "rate": "18694392100000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777700000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "27777700000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WLFI": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WMTX": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "602000000000",
+ "isEnabled": true,
+ "rate": "167217540"
+ },
+ "out": {
+ "capacity": "532000000000",
+ "isEnabled": true,
+ "rate": "147773640"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1865000000000",
+ "isEnabled": true,
+ "rate": "86349500"
+ },
+ "out": {
+ "capacity": "3305000000000",
+ "isEnabled": true,
+ "rate": "153021500"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "561000000000",
+ "isEnabled": true,
+ "rate": "155828970"
+ },
+ "out": {
+ "capacity": "560000000000",
+ "isEnabled": true,
+ "rate": "155551200"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "499000000000",
+ "isEnabled": true,
+ "rate": "138607230"
+ },
+ "out": {
+ "capacity": "349000000000",
+ "isEnabled": true,
+ "rate": "96941730"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "617000000000",
+ "isEnabled": true,
+ "rate": "171384090"
+ },
+ "out": {
+ "capacity": "382000000000",
+ "isEnabled": true,
+ "rate": "106108140"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "3255000000000",
+ "isEnabled": true,
+ "rate": "150706500"
+ },
+ "out": {
+ "capacity": "2795000000000",
+ "isEnabled": true,
+ "rate": "129408500"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "353000000000",
+ "isEnabled": true,
+ "rate": "98052810"
+ },
+ "out": {
+ "capacity": "324000000000",
+ "isEnabled": true,
+ "rate": "89997480"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "494000000000",
+ "isEnabled": true,
+ "rate": "137218380"
+ },
+ "out": {
+ "capacity": "529000000000",
+ "isEnabled": true,
+ "rate": "146940330"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "384000000000",
+ "isEnabled": true,
+ "rate": "106663680"
+ },
+ "out": {
+ "capacity": "368000000000",
+ "isEnabled": true,
+ "rate": "102219360"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "351000000000",
+ "isEnabled": true,
+ "rate": "97497270"
+ },
+ "out": {
+ "capacity": "497000000000",
+ "isEnabled": true,
+ "rate": "138051690"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "306000000000",
+ "isEnabled": true,
+ "rate": "84997620"
+ },
+ "out": {
+ "capacity": "638000000000",
+ "isEnabled": true,
+ "rate": "177217260"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "2600000000000",
+ "isEnabled": true,
+ "rate": "120380000"
+ },
+ "out": {
+ "capacity": "2820000000000",
+ "isEnabled": true,
+ "rate": "130566000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "2600000000000",
+ "isEnabled": true,
+ "rate": "120380000"
+ },
+ "out": {
+ "capacity": "3420000000000",
+ "isEnabled": true,
+ "rate": "158346000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ },
+ "out": {
+ "capacity": "5000000000000",
+ "isEnabled": true,
+ "rate": "231500000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "606000000000",
+ "isEnabled": true,
+ "rate": "168328620"
+ },
+ "out": {
+ "capacity": "536000000000",
+ "isEnabled": true,
+ "rate": "148884720"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "681000000000",
+ "isEnabled": true,
+ "rate": "189161370"
+ },
+ "out": {
+ "capacity": "666000000000",
+ "isEnabled": true,
+ "rate": "184994820"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "533000000000",
+ "isEnabled": true,
+ "rate": "148051410"
+ },
+ "out": {
+ "capacity": "626000000000",
+ "isEnabled": true,
+ "rate": "173884020"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "501000000000",
+ "isEnabled": true,
+ "rate": "139162770"
+ },
+ "out": {
+ "capacity": "581000000000",
+ "isEnabled": true,
+ "rate": "161384370"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "567000000000",
+ "isEnabled": true,
+ "rate": "157495590"
+ },
+ "out": {
+ "capacity": "484000000000",
+ "isEnabled": true,
+ "rate": "134440680"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "382000000000",
+ "isEnabled": true,
+ "rate": "106108140"
+ },
+ "out": {
+ "capacity": "495000000000",
+ "isEnabled": true,
+ "rate": "137496150"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "277770000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "wOETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "70566000000000000000",
+ "isEnabled": true,
+ "rate": "19808000000000000"
+ },
+ "out": {
+ "capacity": "78774000000000000000",
+ "isEnabled": true,
+ "rate": "22112000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ },
+ "out": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "924000000000000000000",
+ "isEnabled": true,
+ "rate": "256872000000000000"
+ },
+ "out": {
+ "capacity": "825000000000000000000",
+ "isEnabled": true,
+ "rate": "229350000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "77178000000000000000",
+ "isEnabled": true,
+ "rate": "21664000000000000"
+ },
+ "out": {
+ "capacity": "39102000000000000000",
+ "isEnabled": true,
+ "rate": "10976000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ },
+ "out": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "400000000000000000000",
+ "isEnabled": true,
+ "rate": "111120000000000000"
+ },
+ "out": {
+ "capacity": "682000000000000000000",
+ "isEnabled": true,
+ "rate": "189459600000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "277800000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "277800000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "493500000000000000000",
+ "isEnabled": true,
+ "rate": "137193000000000000"
+ },
+ "out": {
+ "capacity": "484500000000000000000",
+ "isEnabled": true,
+ "rate": "134691000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1500000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000"
+ },
+ "out": {
+ "capacity": "1500000000000000000000",
+ "isEnabled": true,
+ "rate": "417000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "414000000000000000000",
+ "isEnabled": true,
+ "rate": "115009200000000000"
+ },
+ "out": {
+ "capacity": "671000000000000000000",
+ "isEnabled": true,
+ "rate": "186403800000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "277800000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "277800000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WOLF": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WOW": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "shibarium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "WSDM": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "657000000000",
+ "isEnabled": true,
+ "rate": "7884000"
+ },
+ "out": {
+ "capacity": "596000000000",
+ "isEnabled": true,
+ "rate": "7152000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "513000000000",
+ "isEnabled": true,
+ "rate": "6156000"
+ },
+ "out": {
+ "capacity": "558000000000",
+ "isEnabled": true,
+ "rate": "6696000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "575000000000",
+ "isEnabled": true,
+ "rate": "6900000"
+ },
+ "out": {
+ "capacity": "574000000000",
+ "isEnabled": true,
+ "rate": "6888000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "305000000000",
+ "isEnabled": true,
+ "rate": "3660000"
+ },
+ "out": {
+ "capacity": "406000000000",
+ "isEnabled": true,
+ "rate": "4872000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "522000000000",
+ "isEnabled": true,
+ "rate": "6264000"
+ },
+ "out": {
+ "capacity": "386000000000",
+ "isEnabled": true,
+ "rate": "4632000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "500000000000",
+ "isEnabled": true,
+ "rate": "6000000"
+ },
+ "out": {
+ "capacity": "527000000000",
+ "isEnabled": true,
+ "rate": "6324000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "598000000000",
+ "isEnabled": true,
+ "rate": "7176000"
+ },
+ "out": {
+ "capacity": "459000000000",
+ "isEnabled": true,
+ "rate": "5508000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "674000000000",
+ "isEnabled": true,
+ "rate": "8088000"
+ },
+ "out": {
+ "capacity": "364000000000",
+ "isEnabled": true,
+ "rate": "4368000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "485000000000",
+ "isEnabled": true,
+ "rate": "5820000"
+ },
+ "out": {
+ "capacity": "380000000000",
+ "isEnabled": true,
+ "rate": "4560000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "315000000000",
+ "isEnabled": true,
+ "rate": "3780000"
+ },
+ "out": {
+ "capacity": "578000000000",
+ "isEnabled": true,
+ "rate": "6936000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "474000000000",
+ "isEnabled": true,
+ "rate": "5688000"
+ },
+ "out": {
+ "capacity": "300000000000",
+ "isEnabled": true,
+ "rate": "3600000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "394000000000",
+ "isEnabled": true,
+ "rate": "4728000"
+ },
+ "out": {
+ "capacity": "362000000000",
+ "isEnabled": true,
+ "rate": "4344000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ },
+ "out": {
+ "capacity": "1000000000000",
+ "isEnabled": true,
+ "rate": "12000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "wstETH": {
+ "0g-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "71706000000000000000",
+ "isEnabled": true,
+ "rate": "20128000000000000"
+ },
+ "out": {
+ "capacity": "56202000000000000000",
+ "isEnabled": true,
+ "rate": "15776000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ },
+ "out": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "12366000000000000000",
+ "isEnabled": true,
+ "rate": "3435000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "18000000000000000000",
+ "isEnabled": true,
+ "rate": "5000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1296000000000000000000",
+ "isEnabled": true,
+ "rate": "14999999994720000"
+ },
+ "out": {
+ "capacity": "742000000000000000000",
+ "isEnabled": true,
+ "rate": "8587962959940000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1342000000000000000000",
+ "isEnabled": true,
+ "rate": "15532407401940000"
+ },
+ "out": {
+ "capacity": "614000000000000000000",
+ "isEnabled": true,
+ "rate": "7106481478980000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "946000000000000000000",
+ "isEnabled": true,
+ "rate": "10949074070220000"
+ },
+ "out": {
+ "capacity": "1282000000000000000000",
+ "isEnabled": true,
+ "rate": "14837962957740000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "0g-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "67944000000000000000",
+ "isEnabled": true,
+ "rate": "19072000000000000"
+ },
+ "out": {
+ "capacity": "75354000000000000000",
+ "isEnabled": true,
+ "rate": "21152000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ },
+ "out": {
+ "capacity": "114000000000000000000",
+ "isEnabled": true,
+ "rate": "32000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "950000000000000000000",
+ "isEnabled": true,
+ "rate": "10995370366500000"
+ },
+ "out": {
+ "capacity": "730000000000000000000",
+ "isEnabled": true,
+ "rate": "8449074071100000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "678000000000000000000",
+ "isEnabled": true,
+ "rate": "7847222219460000"
+ },
+ "out": {
+ "capacity": "806000000000000000000",
+ "isEnabled": true,
+ "rate": "9328703700420000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "658000000000000000000",
+ "isEnabled": true,
+ "rate": "7615740738060000"
+ },
+ "out": {
+ "capacity": "1274000000000000000000",
+ "isEnabled": true,
+ "rate": "14745370365180000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ }
+ }
+ },
+ "monad-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1234000000000000000000",
+ "isEnabled": true,
+ "rate": "14282407402380000"
+ },
+ "out": {
+ "capacity": "664000000000000000000",
+ "isEnabled": true,
+ "rate": "7685185182480000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1268000000000000000000",
+ "isEnabled": true,
+ "rate": "14675925920760000"
+ },
+ "out": {
+ "capacity": "1256000000000000000000",
+ "isEnabled": true,
+ "rate": "14537037031920000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "892000000000000000000",
+ "isEnabled": true,
+ "rate": "10324074070440000"
+ },
+ "out": {
+ "capacity": "1292000000000000000000",
+ "isEnabled": true,
+ "rate": "14953703698440000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-ink-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "11574074070000000"
+ },
+ "out": {
+ "capacity": "1124000000000000000000",
+ "isEnabled": true,
+ "rate": "13009259254680000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1244000000000000000000",
+ "isEnabled": true,
+ "rate": "14398148143080000"
+ },
+ "out": {
+ "capacity": "634000000000000000000",
+ "isEnabled": true,
+ "rate": "7337962960380000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148148140000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "wstLINK": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "9795000000000000000000",
+ "isEnabled": true,
+ "rate": "2612000000000000000"
+ },
+ "out": {
+ "capacity": "7230000000000000000000",
+ "isEnabled": true,
+ "rate": "1928000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000",
+ "isEnabled": true,
+ "rate": "4000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000",
+ "isEnabled": true,
+ "rate": "4000000000000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "5805000000000000000000",
+ "isEnabled": true,
+ "rate": "1548000000000000000"
+ },
+ "out": {
+ "capacity": "10245000000000000000000",
+ "isEnabled": true,
+ "rate": "2732000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "15000000000000000000000",
+ "isEnabled": true,
+ "rate": "4000000000000000000"
+ },
+ "out": {
+ "capacity": "15000000000000000000000",
+ "isEnabled": true,
+ "rate": "4000000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "wstPOL": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "wUSDx": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "228830000000",
+ "isEnabled": true,
+ "rate": "63563837"
+ },
+ "out": {
+ "capacity": "314580000000",
+ "isEnabled": true,
+ "rate": "87383262"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "185710000000",
+ "isEnabled": true,
+ "rate": "51586069"
+ },
+ "out": {
+ "capacity": "327320000000",
+ "isEnabled": true,
+ "rate": "90922148"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "231280000000",
+ "isEnabled": true,
+ "rate": "64244392"
+ },
+ "out": {
+ "capacity": "265580000000",
+ "isEnabled": true,
+ "rate": "73772162"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "237650000000",
+ "isEnabled": true,
+ "rate": "66013835"
+ },
+ "out": {
+ "capacity": "249900000000",
+ "isEnabled": true,
+ "rate": "69416610"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "315070000000",
+ "isEnabled": true,
+ "rate": "87519373"
+ },
+ "out": {
+ "capacity": "215110000000",
+ "isEnabled": true,
+ "rate": "59752729"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "294980000000",
+ "isEnabled": true,
+ "rate": "81938822"
+ },
+ "out": {
+ "capacity": "187180000000",
+ "isEnabled": true,
+ "rate": "51994402"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "299390000000",
+ "isEnabled": true,
+ "rate": "83163821"
+ },
+ "out": {
+ "capacity": "193060000000",
+ "isEnabled": true,
+ "rate": "53627734"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "289590000000",
+ "isEnabled": true,
+ "rate": "80441601"
+ },
+ "out": {
+ "capacity": "331730000000",
+ "isEnabled": true,
+ "rate": "92147147"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "189630000000",
+ "isEnabled": true,
+ "rate": "52674957"
+ },
+ "out": {
+ "capacity": "155330000000",
+ "isEnabled": true,
+ "rate": "43147187"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "248430000000",
+ "isEnabled": true,
+ "rate": "69008277"
+ },
+ "out": {
+ "capacity": "154350000000",
+ "isEnabled": true,
+ "rate": "42874965"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "325360000000",
+ "isEnabled": true,
+ "rate": "90377704"
+ },
+ "out": {
+ "capacity": "316540000000",
+ "isEnabled": true,
+ "rate": "87927706"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "165620000000",
+ "isEnabled": true,
+ "rate": "46005518"
+ },
+ "out": {
+ "capacity": "161700000000",
+ "isEnabled": true,
+ "rate": "44916630"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "297920000000",
+ "isEnabled": true,
+ "rate": "82755488"
+ },
+ "out": {
+ "capacity": "212660000000",
+ "isEnabled": true,
+ "rate": "59072174"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "261660000000",
+ "isEnabled": true,
+ "rate": "72683274"
+ },
+ "out": {
+ "capacity": "246470000000",
+ "isEnabled": true,
+ "rate": "68463833"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "271460000000",
+ "isEnabled": true,
+ "rate": "75405494"
+ },
+ "out": {
+ "capacity": "184240000000",
+ "isEnabled": true,
+ "rate": "51177736"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "267540000000",
+ "isEnabled": true,
+ "rate": "74316606"
+ },
+ "out": {
+ "capacity": "317520000000",
+ "isEnabled": true,
+ "rate": "88199928"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "308210000000",
+ "isEnabled": true,
+ "rate": "85613819"
+ },
+ "out": {
+ "capacity": "213150000000",
+ "isEnabled": true,
+ "rate": "59208285"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "171500000000",
+ "isEnabled": true,
+ "rate": "47638850"
+ },
+ "out": {
+ "capacity": "318500000000",
+ "isEnabled": true,
+ "rate": "88472150"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "202860000000",
+ "isEnabled": true,
+ "rate": "56349954"
+ },
+ "out": {
+ "capacity": "197960000000",
+ "isEnabled": true,
+ "rate": "54988844"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "179340000000",
+ "isEnabled": true,
+ "rate": "49816626"
+ },
+ "out": {
+ "capacity": "266560000000",
+ "isEnabled": true,
+ "rate": "74044384"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "182280000000",
+ "isEnabled": true,
+ "rate": "50633292"
+ },
+ "out": {
+ "capacity": "218540000000",
+ "isEnabled": true,
+ "rate": "60705506"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "247450000000",
+ "isEnabled": true,
+ "rate": "68736055"
+ },
+ "out": {
+ "capacity": "173950000000",
+ "isEnabled": true,
+ "rate": "48319405"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "247940000000",
+ "isEnabled": true,
+ "rate": "68872166"
+ },
+ "out": {
+ "capacity": "163660000000",
+ "isEnabled": true,
+ "rate": "45461074"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "294980000000",
+ "isEnabled": true,
+ "rate": "81938822"
+ },
+ "out": {
+ "capacity": "173950000000",
+ "isEnabled": true,
+ "rate": "48319405"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "282240000000",
+ "isEnabled": true,
+ "rate": "78399936"
+ },
+ "out": {
+ "capacity": "239610000000",
+ "isEnabled": true,
+ "rate": "66558279"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "188160000000",
+ "isEnabled": true,
+ "rate": "52266624"
+ },
+ "out": {
+ "capacity": "267540000000",
+ "isEnabled": true,
+ "rate": "74316606"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "235690000000",
+ "isEnabled": true,
+ "rate": "65469391"
+ },
+ "out": {
+ "capacity": "174440000000",
+ "isEnabled": true,
+ "rate": "48455516"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "250880000000",
+ "isEnabled": true,
+ "rate": "69688832"
+ },
+ "out": {
+ "capacity": "303310000000",
+ "isEnabled": true,
+ "rate": "84252709"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "269500000000",
+ "isEnabled": true,
+ "rate": "74861050"
+ },
+ "out": {
+ "capacity": "281260000000",
+ "isEnabled": true,
+ "rate": "78127714"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "177870000000",
+ "isEnabled": true,
+ "rate": "49408293"
+ },
+ "out": {
+ "capacity": "202860000000",
+ "isEnabled": true,
+ "rate": "56349954"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "181790000000",
+ "isEnabled": true,
+ "rate": "50497181"
+ },
+ "out": {
+ "capacity": "338100000000",
+ "isEnabled": true,
+ "rate": "93916590"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "260680000000",
+ "isEnabled": true,
+ "rate": "72411052"
+ },
+ "out": {
+ "capacity": "148960000000",
+ "isEnabled": true,
+ "rate": "41377744"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "254800000000",
+ "isEnabled": true,
+ "rate": "70777720"
+ },
+ "out": {
+ "capacity": "186690000000",
+ "isEnabled": true,
+ "rate": "51858291"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "226870000000",
+ "isEnabled": true,
+ "rate": "63019393"
+ },
+ "out": {
+ "capacity": "295960000000",
+ "isEnabled": true,
+ "rate": "82211044"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": null,
+ "standard": null
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "269010000000",
+ "isEnabled": true,
+ "rate": "74724939"
+ },
+ "out": {
+ "capacity": "158760000000",
+ "isEnabled": true,
+ "rate": "44099964"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "325360000000",
+ "isEnabled": true,
+ "rate": "90377704"
+ },
+ "out": {
+ "capacity": "295470000000",
+ "isEnabled": true,
+ "rate": "82074933"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "214130000000",
+ "isEnabled": true,
+ "rate": "59480507"
+ },
+ "out": {
+ "capacity": "261660000000",
+ "isEnabled": true,
+ "rate": "72683274"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "248920000000",
+ "isEnabled": true,
+ "rate": "69144388"
+ },
+ "out": {
+ "capacity": "184240000000",
+ "isEnabled": true,
+ "rate": "51177736"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "158760000000",
+ "isEnabled": true,
+ "rate": "44099964"
+ },
+ "out": {
+ "capacity": "249900000000",
+ "isEnabled": true,
+ "rate": "69416610"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "303800000000",
+ "isEnabled": true,
+ "rate": "84388820"
+ },
+ "out": {
+ "capacity": "246470000000",
+ "isEnabled": true,
+ "rate": "68463833"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "213640000000",
+ "isEnabled": true,
+ "rate": "59344396"
+ },
+ "out": {
+ "capacity": "250390000000",
+ "isEnabled": true,
+ "rate": "69552721"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ },
+ "out": {
+ "capacity": "490000000000",
+ "isEnabled": true,
+ "rate": "136111000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "xGold": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "hedera-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "hedera-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "XLAB": {
+ "bsc-mainnet": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "xrETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "xRPL": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "xSILO": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "xSolvBTC": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "950000000000000000",
+ "isEnabled": true,
+ "rate": "43981200000000"
+ },
+ "out": {
+ "capacity": "1235000000000000000",
+ "isEnabled": true,
+ "rate": "57175560000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1335000000000000000",
+ "isEnabled": true,
+ "rate": "61805160000000"
+ },
+ "out": {
+ "capacity": "1057500000000000000",
+ "isEnabled": true,
+ "rate": "48958020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1537500000000000000",
+ "isEnabled": true,
+ "rate": "71180100000000"
+ },
+ "out": {
+ "capacity": "1240000000000000000",
+ "isEnabled": true,
+ "rate": "57407040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1167500000000000000",
+ "isEnabled": true,
+ "rate": "54050580000000"
+ },
+ "out": {
+ "capacity": "1492500000000000000",
+ "isEnabled": true,
+ "rate": "69096780000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1460000000000000000",
+ "isEnabled": true,
+ "rate": "67592160000000"
+ },
+ "out": {
+ "capacity": "1727500000000000000",
+ "isEnabled": true,
+ "rate": "79976340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1317500000000000000",
+ "isEnabled": true,
+ "rate": "60994980000000"
+ },
+ "out": {
+ "capacity": "885000000000000000",
+ "isEnabled": true,
+ "rate": "40971960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1457500000000000000",
+ "isEnabled": true,
+ "rate": "67476420000000"
+ },
+ "out": {
+ "capacity": "885000000000000000",
+ "isEnabled": true,
+ "rate": "40971960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1130000000000000000",
+ "isEnabled": true,
+ "rate": "52314480000000"
+ },
+ "out": {
+ "capacity": "800000000000000000",
+ "isEnabled": true,
+ "rate": "37036800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "857500000000000000",
+ "isEnabled": true,
+ "rate": "39698820000000"
+ },
+ "out": {
+ "capacity": "1092500000000000000",
+ "isEnabled": true,
+ "rate": "50578380000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1650000000000000000",
+ "isEnabled": true,
+ "rate": "76388400000000"
+ },
+ "out": {
+ "capacity": "1027500000000000000",
+ "isEnabled": true,
+ "rate": "47569140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "810000000000000000",
+ "isEnabled": true,
+ "rate": "37499760000000"
+ },
+ "out": {
+ "capacity": "1267500000000000000",
+ "isEnabled": true,
+ "rate": "58680180000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1297500000000000000",
+ "isEnabled": true,
+ "rate": "60069060000000"
+ },
+ "out": {
+ "capacity": "960000000000000000",
+ "isEnabled": true,
+ "rate": "44444160000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "887500000000000000",
+ "isEnabled": true,
+ "rate": "41087700000000"
+ },
+ "out": {
+ "capacity": "1027500000000000000",
+ "isEnabled": true,
+ "rate": "47569140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "922500000000000000",
+ "isEnabled": true,
+ "rate": "42708060000000"
+ },
+ "out": {
+ "capacity": "1150000000000000000",
+ "isEnabled": true,
+ "rate": "53240400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "997500000000000000",
+ "isEnabled": true,
+ "rate": "46180260000000"
+ },
+ "out": {
+ "capacity": "1552500000000000000",
+ "isEnabled": true,
+ "rate": "71874540000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "792500000000000000",
+ "isEnabled": true,
+ "rate": "36689580000000"
+ },
+ "out": {
+ "capacity": "1035000000000000000",
+ "isEnabled": true,
+ "rate": "47916360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1472500000000000000",
+ "isEnabled": true,
+ "rate": "68170860000000"
+ },
+ "out": {
+ "capacity": "1395000000000000000",
+ "isEnabled": true,
+ "rate": "64582920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1672500000000000000",
+ "isEnabled": true,
+ "rate": "77430060000000"
+ },
+ "out": {
+ "capacity": "857500000000000000",
+ "isEnabled": true,
+ "rate": "39698820000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1035000000000000000",
+ "isEnabled": true,
+ "rate": "47916360000000"
+ },
+ "out": {
+ "capacity": "1187500000000000000",
+ "isEnabled": true,
+ "rate": "54976500000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "920000000000000000",
+ "isEnabled": true,
+ "rate": "42592320000000"
+ },
+ "out": {
+ "capacity": "1522500000000000000",
+ "isEnabled": true,
+ "rate": "70485660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1102500000000000000",
+ "isEnabled": true,
+ "rate": "51041340000000"
+ },
+ "out": {
+ "capacity": "1515000000000000000",
+ "isEnabled": true,
+ "rate": "70138440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1072500000000000000",
+ "isEnabled": true,
+ "rate": "49652460000000"
+ },
+ "out": {
+ "capacity": "917500000000000000",
+ "isEnabled": true,
+ "rate": "42476580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1007500000000000000",
+ "isEnabled": true,
+ "rate": "46643220000000"
+ },
+ "out": {
+ "capacity": "937500000000000000",
+ "isEnabled": true,
+ "rate": "43402500000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "910000000000000000",
+ "isEnabled": true,
+ "rate": "42129360000000"
+ },
+ "out": {
+ "capacity": "1447500000000000000",
+ "isEnabled": true,
+ "rate": "67013460000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "790000000000000000",
+ "isEnabled": true,
+ "rate": "36573840000000"
+ },
+ "out": {
+ "capacity": "880000000000000000",
+ "isEnabled": true,
+ "rate": "40740480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "872500000000000000",
+ "isEnabled": true,
+ "rate": "40393260000000"
+ },
+ "out": {
+ "capacity": "1317500000000000000",
+ "isEnabled": true,
+ "rate": "60994980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1005000000000000000",
+ "isEnabled": true,
+ "rate": "46527480000000"
+ },
+ "out": {
+ "capacity": "1310000000000000000",
+ "isEnabled": true,
+ "rate": "60647760000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "865000000000000000",
+ "isEnabled": true,
+ "rate": "40046040000000"
+ },
+ "out": {
+ "capacity": "1645000000000000000",
+ "isEnabled": true,
+ "rate": "76156920000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1087500000000000000",
+ "isEnabled": true,
+ "rate": "50346900000000"
+ },
+ "out": {
+ "capacity": "1432500000000000000",
+ "isEnabled": true,
+ "rate": "66319020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1220000000000000000",
+ "isEnabled": true,
+ "rate": "56481120000000"
+ },
+ "out": {
+ "capacity": "1592500000000000000",
+ "isEnabled": true,
+ "rate": "73726380000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1337500000000000000",
+ "isEnabled": true,
+ "rate": "61920900000000"
+ },
+ "out": {
+ "capacity": "1622500000000000000",
+ "isEnabled": true,
+ "rate": "75115260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "770000000000000000",
+ "isEnabled": true,
+ "rate": "35647920000000"
+ },
+ "out": {
+ "capacity": "750000000000000000",
+ "isEnabled": true,
+ "rate": "34722000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1147500000000000000",
+ "isEnabled": true,
+ "rate": "53124660000000"
+ },
+ "out": {
+ "capacity": "1625000000000000000",
+ "isEnabled": true,
+ "rate": "75231000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "109250000",
+ "isEnabled": true,
+ "rate": "5057"
+ },
+ "out": {
+ "capacity": "1305000000000000000",
+ "isEnabled": true,
+ "rate": "60416280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1307500000000000000",
+ "isEnabled": true,
+ "rate": "60532020000000"
+ },
+ "out": {
+ "capacity": "792500000000000000",
+ "isEnabled": true,
+ "rate": "36689580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1365000000000000000",
+ "isEnabled": true,
+ "rate": "63194040000000"
+ },
+ "out": {
+ "capacity": "1002500000000000000",
+ "isEnabled": true,
+ "rate": "46411740000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "795000000000000000",
+ "isEnabled": true,
+ "rate": "36805320000000"
+ },
+ "out": {
+ "capacity": "1267500000000000000",
+ "isEnabled": true,
+ "rate": "58680180000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1487500000000000000",
+ "isEnabled": true,
+ "rate": "68865300000000"
+ },
+ "out": {
+ "capacity": "1200000000000000000",
+ "isEnabled": true,
+ "rate": "55555200000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1150000000000000000",
+ "isEnabled": true,
+ "rate": "53240400000000"
+ },
+ "out": {
+ "capacity": "1192500000000000000",
+ "isEnabled": true,
+ "rate": "55207980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1677500000000000000",
+ "isEnabled": true,
+ "rate": "77661540000000"
+ },
+ "out": {
+ "capacity": "1550000000000000000",
+ "isEnabled": true,
+ "rate": "71758800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "752500000000000000",
+ "isEnabled": true,
+ "rate": "34837740000000"
+ },
+ "out": {
+ "capacity": "850000000000000000",
+ "isEnabled": true,
+ "rate": "39351600000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "772500000000000000",
+ "isEnabled": true,
+ "rate": "35763660000000"
+ },
+ "out": {
+ "capacity": "1375000000000000000",
+ "isEnabled": true,
+ "rate": "63657000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1050000000000000000",
+ "isEnabled": true,
+ "rate": "48610800000000"
+ },
+ "out": {
+ "capacity": "1452500000000000000",
+ "isEnabled": true,
+ "rate": "67244940000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1010000000000000000",
+ "isEnabled": true,
+ "rate": "46758960000000"
+ },
+ "out": {
+ "capacity": "800000000000000000",
+ "isEnabled": true,
+ "rate": "37036800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1725000000000000000",
+ "isEnabled": true,
+ "rate": "79860600000000"
+ },
+ "out": {
+ "capacity": "1552500000000000000",
+ "isEnabled": true,
+ "rate": "71874540000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1297500000000000000",
+ "isEnabled": true,
+ "rate": "60069060000000"
+ },
+ "out": {
+ "capacity": "1255000000000000000",
+ "isEnabled": true,
+ "rate": "58101480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "982500000000000000",
+ "isEnabled": true,
+ "rate": "45485820000000"
+ },
+ "out": {
+ "capacity": "1667500000000000000",
+ "isEnabled": true,
+ "rate": "77198580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "997500000000000000",
+ "isEnabled": true,
+ "rate": "46180260000000"
+ },
+ "out": {
+ "capacity": "1352500000000000000",
+ "isEnabled": true,
+ "rate": "62615340000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1600000000000000000",
+ "isEnabled": true,
+ "rate": "74073600000000"
+ },
+ "out": {
+ "capacity": "1220000000000000000",
+ "isEnabled": true,
+ "rate": "56481120000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1080000000000000000",
+ "isEnabled": true,
+ "rate": "49999680000000"
+ },
+ "out": {
+ "capacity": "1417500000000000000",
+ "isEnabled": true,
+ "rate": "65624580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1620000000000000000",
+ "isEnabled": true,
+ "rate": "74999520000000"
+ },
+ "out": {
+ "capacity": "1215000000000000000",
+ "isEnabled": true,
+ "rate": "56249640000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1397500000000000000",
+ "isEnabled": true,
+ "rate": "64698660000000"
+ },
+ "out": {
+ "capacity": "1175000000000000000",
+ "isEnabled": true,
+ "rate": "54397800000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1145000000000000000",
+ "isEnabled": true,
+ "rate": "53008920000000"
+ },
+ "out": {
+ "capacity": "860000000000000000",
+ "isEnabled": true,
+ "rate": "39814560000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1350000000000000000",
+ "isEnabled": true,
+ "rate": "62499600000000"
+ },
+ "out": {
+ "capacity": "1137500000000000000",
+ "isEnabled": true,
+ "rate": "52661700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1527500000000000000",
+ "isEnabled": true,
+ "rate": "70717140000000"
+ },
+ "out": {
+ "capacity": "775000000000000000",
+ "isEnabled": true,
+ "rate": "35879400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1440000000000000000",
+ "isEnabled": true,
+ "rate": "66666240000000"
+ },
+ "out": {
+ "capacity": "1505000000000000000",
+ "isEnabled": true,
+ "rate": "69675480000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1117500000000000000",
+ "isEnabled": true,
+ "rate": "51735780000000"
+ },
+ "out": {
+ "capacity": "1362500000000000000",
+ "isEnabled": true,
+ "rate": "63078300000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1337500000000000000",
+ "isEnabled": true,
+ "rate": "61920900000000"
+ },
+ "out": {
+ "capacity": "1127500000000000000",
+ "isEnabled": true,
+ "rate": "52198740000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1607500000000000000",
+ "isEnabled": true,
+ "rate": "74420820000000"
+ },
+ "out": {
+ "capacity": "1747500000000000000",
+ "isEnabled": true,
+ "rate": "80902260000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1685000000000000000",
+ "isEnabled": true,
+ "rate": "78008760000000"
+ },
+ "out": {
+ "capacity": "885000000000000000",
+ "isEnabled": true,
+ "rate": "40971960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1625000000000000000",
+ "isEnabled": true,
+ "rate": "75231000000000"
+ },
+ "out": {
+ "capacity": "765000000000000000",
+ "isEnabled": true,
+ "rate": "35416440000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "837500000000000000",
+ "isEnabled": true,
+ "rate": "38772900000000"
+ },
+ "out": {
+ "capacity": "1442500000000000000",
+ "isEnabled": true,
+ "rate": "66781980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1335000000000000000",
+ "isEnabled": true,
+ "rate": "61805160000000"
+ },
+ "out": {
+ "capacity": "767500000000000000",
+ "isEnabled": true,
+ "rate": "35532180000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1262500000000000000",
+ "isEnabled": true,
+ "rate": "58448700000000"
+ },
+ "out": {
+ "capacity": "915000000000000000",
+ "isEnabled": true,
+ "rate": "42360840000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1127500000000000000",
+ "isEnabled": true,
+ "rate": "52198740000000"
+ },
+ "out": {
+ "capacity": "1712500000000000000",
+ "isEnabled": true,
+ "rate": "79281900000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1747500000000000000",
+ "isEnabled": true,
+ "rate": "80902260000000"
+ },
+ "out": {
+ "capacity": "1512500000000000000",
+ "isEnabled": true,
+ "rate": "70022700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-taiko-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1387500000000000000",
+ "isEnabled": true,
+ "rate": "64235700000000"
+ },
+ "out": {
+ "capacity": "1557500000000000000",
+ "isEnabled": true,
+ "rate": "72106020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1140000000000000000",
+ "isEnabled": true,
+ "rate": "52777440000000"
+ },
+ "out": {
+ "capacity": "1472500000000000000",
+ "isEnabled": true,
+ "rate": "68170860000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "752500000000000000",
+ "isEnabled": true,
+ "rate": "34837740000000"
+ },
+ "out": {
+ "capacity": "775000000000000000",
+ "isEnabled": true,
+ "rate": "35879400000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "63600000000000000000",
+ "isEnabled": true,
+ "rate": "736064000000000"
+ },
+ "out": {
+ "capacity": "1580000000000000000",
+ "isEnabled": true,
+ "rate": "73147680000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1736000000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1327500000000000000",
+ "isEnabled": true,
+ "rate": "61457940000000"
+ },
+ "out": {
+ "capacity": "1260000000000000000",
+ "isEnabled": true,
+ "rate": "58332960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1080000000000000000",
+ "isEnabled": true,
+ "rate": "49999680000000"
+ },
+ "out": {
+ "capacity": "1510000000000000000",
+ "isEnabled": true,
+ "rate": "69906960000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1032500000000000000",
+ "isEnabled": true,
+ "rate": "47800620000000"
+ },
+ "out": {
+ "capacity": "865000000000000000",
+ "isEnabled": true,
+ "rate": "40046040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1690000000000000000",
+ "isEnabled": true,
+ "rate": "78240240000000"
+ },
+ "out": {
+ "capacity": "1535000000000000000",
+ "isEnabled": true,
+ "rate": "71064360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "berachain-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1147500000000000000",
+ "isEnabled": true,
+ "rate": "53124660000000"
+ },
+ "out": {
+ "capacity": "1137500000000000000",
+ "isEnabled": true,
+ "rate": "52661700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1620000000000000000",
+ "isEnabled": true,
+ "rate": "74999520000000"
+ },
+ "out": {
+ "capacity": "1117500000000000000",
+ "isEnabled": true,
+ "rate": "51735780000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1107500000000000000",
+ "isEnabled": true,
+ "rate": "51272820000000"
+ },
+ "out": {
+ "capacity": "1365000000000000000",
+ "isEnabled": true,
+ "rate": "63194040000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1390000000000000000",
+ "isEnabled": true,
+ "rate": "64351440000000"
+ },
+ "out": {
+ "capacity": "1522500000000000000",
+ "isEnabled": true,
+ "rate": "70485660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1672500000000000000",
+ "isEnabled": true,
+ "rate": "77430060000000"
+ },
+ "out": {
+ "capacity": "1412500000000000000",
+ "isEnabled": true,
+ "rate": "65393100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1617500000000000000",
+ "isEnabled": true,
+ "rate": "74883780000000"
+ },
+ "out": {
+ "capacity": "812500000000000000",
+ "isEnabled": true,
+ "rate": "37615500000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-taiko-1": {
+ "custom": {
+ "in": {
+ "capacity": "1472500000000000000",
+ "isEnabled": true,
+ "rate": "68170860000000"
+ },
+ "out": {
+ "capacity": "1290000000000000000",
+ "isEnabled": true,
+ "rate": "59721840000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1465000000000000000",
+ "isEnabled": true,
+ "rate": "67823640000000"
+ },
+ "out": {
+ "capacity": "92700000000000000000",
+ "isEnabled": true,
+ "rate": "1072848000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "150000000000000000000",
+ "isEnabled": true,
+ "rate": "1736000000000000"
+ }
+ }
+ },
+ "hyperliquid-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1050000000000000000",
+ "isEnabled": true,
+ "rate": "48610800000000"
+ },
+ "out": {
+ "capacity": "1465000000000000000",
+ "isEnabled": true,
+ "rate": "67823640000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1332500000000000000",
+ "isEnabled": true,
+ "rate": "61689420000000"
+ },
+ "out": {
+ "capacity": "1422500000000000000",
+ "isEnabled": true,
+ "rate": "65856060000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "monad-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1675000000000000000",
+ "isEnabled": true,
+ "rate": "77545800000000"
+ },
+ "out": {
+ "capacity": "1730000000000000000",
+ "isEnabled": true,
+ "rate": "80092080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "138750000",
+ "isEnabled": true,
+ "rate": "6423"
+ },
+ "out": {
+ "capacity": "980000000000000000",
+ "isEnabled": true,
+ "rate": "45370080000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "922500000000000000",
+ "isEnabled": true,
+ "rate": "42708060000000"
+ },
+ "out": {
+ "capacity": "26220000000000000000",
+ "isEnabled": true,
+ "rate": "303470280000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "60000000000000000000",
+ "isEnabled": true,
+ "rate": "694440000000000"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "957500000000000000",
+ "isEnabled": true,
+ "rate": "44328420000000"
+ },
+ "out": {
+ "capacity": "1535000000000000000",
+ "isEnabled": true,
+ "rate": "71064360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bitcoin-mainnet-bob-1": {
+ "custom": null,
+ "standard": null
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1417500000000000000",
+ "isEnabled": true,
+ "rate": "65624580000000"
+ },
+ "out": {
+ "capacity": "862500000000000000",
+ "isEnabled": true,
+ "rate": "39930300000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1370000000000000000",
+ "isEnabled": true,
+ "rate": "63425520000000"
+ },
+ "out": {
+ "capacity": "1042500000000000000",
+ "isEnabled": true,
+ "rate": "48263580000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "862500000000000000",
+ "isEnabled": true,
+ "rate": "39930300000000"
+ },
+ "out": {
+ "capacity": "1192500000000000000",
+ "isEnabled": true,
+ "rate": "55207980000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1162500000000000000",
+ "isEnabled": true,
+ "rate": "53819100000000"
+ },
+ "out": {
+ "capacity": "1170000000000000000",
+ "isEnabled": true,
+ "rate": "54166320000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "1560000000000000000",
+ "isEnabled": true,
+ "rate": "72221760000000"
+ },
+ "out": {
+ "capacity": "1220000000000000000",
+ "isEnabled": true,
+ "rate": "56481120000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "1295000000000000000",
+ "isEnabled": true,
+ "rate": "59953320000000"
+ },
+ "out": {
+ "capacity": "1357500000000000000",
+ "isEnabled": true,
+ "rate": "62846820000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1120000000000000000",
+ "isEnabled": true,
+ "rate": "51851520000000"
+ },
+ "out": {
+ "capacity": "1160000000000000000",
+ "isEnabled": true,
+ "rate": "53703360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "sei-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1127500000000000000",
+ "isEnabled": true,
+ "rate": "52198740000000"
+ },
+ "out": {
+ "capacity": "772500000000000000",
+ "isEnabled": true,
+ "rate": "35763660000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1217500000000000000",
+ "isEnabled": true,
+ "rate": "56365380000000"
+ },
+ "out": {
+ "capacity": "807500000000000000",
+ "isEnabled": true,
+ "rate": "37384020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "monad-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "10110000000000000000",
+ "isEnabled": true,
+ "rate": "117013140000000"
+ },
+ "out": {
+ "capacity": "1610000000000000000",
+ "isEnabled": true,
+ "rate": "18634140000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "30000000000000000000",
+ "isEnabled": true,
+ "rate": "347220000000000"
+ },
+ "out": {
+ "capacity": "5000000000000000000",
+ "isEnabled": true,
+ "rate": "57870000000000"
+ }
+ }
+ }
+ }
+ },
+ "sei-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "1555000000000000000",
+ "isEnabled": true,
+ "rate": "71990280000000"
+ },
+ "out": {
+ "capacity": "1660000000000000000",
+ "isEnabled": true,
+ "rate": "76851360000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1312500000000000000",
+ "isEnabled": true,
+ "rate": "60763500000000"
+ },
+ "out": {
+ "capacity": "1197500000000000000",
+ "isEnabled": true,
+ "rate": "55439460000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "1567500000000000000",
+ "isEnabled": true,
+ "rate": "72568980000000"
+ },
+ "out": {
+ "capacity": "1120000000000000000",
+ "isEnabled": true,
+ "rate": "51851520000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1722500000000000000",
+ "isEnabled": true,
+ "rate": "79744860000000"
+ },
+ "out": {
+ "capacity": "985000000000000000",
+ "isEnabled": true,
+ "rate": "45601560000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1597500000000000000",
+ "isEnabled": true,
+ "rate": "73957860000000"
+ },
+ "out": {
+ "capacity": "1420000000000000000",
+ "isEnabled": true,
+ "rate": "65740320000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "153250000",
+ "isEnabled": true,
+ "rate": "7094"
+ },
+ "out": {
+ "capacity": "155750000",
+ "isEnabled": true,
+ "rate": "7210"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "152500000",
+ "isEnabled": true,
+ "rate": "7060"
+ },
+ "out": {
+ "capacity": "169000000",
+ "isEnabled": true,
+ "rate": "7824"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "250000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "soneium-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bitcoin-mainnet-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "890000000000000000",
+ "isEnabled": true,
+ "rate": "41203440000000"
+ },
+ "out": {
+ "capacity": "1617500000000000000",
+ "isEnabled": true,
+ "rate": "74883780000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "942500000000000000",
+ "isEnabled": true,
+ "rate": "43633980000000"
+ },
+ "out": {
+ "capacity": "1677500000000000000",
+ "isEnabled": true,
+ "rate": "77661540000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "22980000000000000000",
+ "isEnabled": true,
+ "rate": "265970520000000"
+ },
+ "out": {
+ "capacity": "1057500000000000000",
+ "isEnabled": true,
+ "rate": "48958020000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "60000000000000000000",
+ "isEnabled": true,
+ "rate": "694440000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1702500000000000000",
+ "isEnabled": true,
+ "rate": "78818940000000"
+ },
+ "out": {
+ "capacity": "1387500000000000000",
+ "isEnabled": true,
+ "rate": "64235700000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1150000000000000000",
+ "isEnabled": true,
+ "rate": "53240400000000"
+ },
+ "out": {
+ "capacity": "1580000000000000000",
+ "isEnabled": true,
+ "rate": "73147680000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ },
+ "out": {
+ "capacity": "2500000000000000000",
+ "isEnabled": true,
+ "rate": "115740000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "XSWAP": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "12120000000000000000000000",
+ "isEnabled": true,
+ "rate": "280578000000000000000"
+ },
+ "out": {
+ "capacity": "8600000000000000000000000",
+ "isEnabled": true,
+ "rate": "199090000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "463000000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "463000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "13420000000000000000000000",
+ "isEnabled": true,
+ "rate": "310673000000000000000"
+ },
+ "out": {
+ "capacity": "9240000000000000000000000",
+ "isEnabled": true,
+ "rate": "213906000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "463000000000000000000"
+ },
+ "out": {
+ "capacity": "20000000000000000000000000",
+ "isEnabled": true,
+ "rate": "463000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "XTFBRICK1": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "memento-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "memento-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "memento-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "XTFCLOBOND": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "memento-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "matic-mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "memento-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "memento-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "matic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "YBTC.B": {
+ "avalanche-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plume-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "bsc-mainnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "avalanche-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-mainnet-ink-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plume-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bitcoin-mainnet-bitlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "YGG": {
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1208000000000000000000000",
+ "isEnabled": true,
+ "rate": "13981452400000000000"
+ },
+ "out": {
+ "capacity": "1116000000000000000000000",
+ "isEnabled": true,
+ "rate": "12916646000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148100000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000000",
+ "isEnabled": true,
+ "rate": "20833300000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1194000000000000000000000",
+ "isEnabled": true,
+ "rate": "13819415700000000000"
+ },
+ "out": {
+ "capacity": "833400000000000000000000",
+ "isEnabled": true,
+ "rate": "9645817900000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23148100000000000000"
+ },
+ "out": {
+ "capacity": "1800000000000000000000000",
+ "isEnabled": true,
+ "rate": "20833300000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "YNE": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "zBTC": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "484000000",
+ "isEnabled": true,
+ "rate": "5601"
+ },
+ "out": {
+ "capacity": "316000000",
+ "isEnabled": true,
+ "rate": "3657"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "480000000",
+ "isEnabled": true,
+ "rate": "5555"
+ },
+ "out": {
+ "capacity": "353000000",
+ "isEnabled": true,
+ "rate": "4085"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "328000000",
+ "isEnabled": true,
+ "rate": "3796"
+ },
+ "out": {
+ "capacity": "639000000",
+ "isEnabled": true,
+ "rate": "7395"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "479000000",
+ "isEnabled": true,
+ "rate": "5543"
+ },
+ "out": {
+ "capacity": "691000000",
+ "isEnabled": true,
+ "rate": "7997"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "429000000",
+ "isEnabled": true,
+ "rate": "4965"
+ },
+ "out": {
+ "capacity": "419000000",
+ "isEnabled": true,
+ "rate": "4849"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "676000000",
+ "isEnabled": true,
+ "rate": "7824"
+ },
+ "out": {
+ "capacity": "495000000",
+ "isEnabled": true,
+ "rate": "5729"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "solana-mainnet": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "520000000",
+ "isEnabled": true,
+ "rate": "6018"
+ },
+ "out": {
+ "capacity": "409000000",
+ "isEnabled": true,
+ "rate": "4733"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "495000000",
+ "isEnabled": true,
+ "rate": "5729"
+ },
+ "out": {
+ "capacity": "616000000",
+ "isEnabled": true,
+ "rate": "7129"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "325000000",
+ "isEnabled": true,
+ "rate": "3761"
+ },
+ "out": {
+ "capacity": "620000000",
+ "isEnabled": true,
+ "rate": "7175"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ },
+ "sonic-mainnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "656000000",
+ "isEnabled": true,
+ "rate": "7592"
+ },
+ "out": {
+ "capacity": "621000000",
+ "isEnabled": true,
+ "rate": "7187"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ },
+ "solana-mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "449000000",
+ "isEnabled": true,
+ "rate": "5196"
+ },
+ "out": {
+ "capacity": "574000000",
+ "isEnabled": true,
+ "rate": "6643"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "11574"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ZENT": {
+ "mainnet": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "ronin-mainnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "ronin-mainnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ZeUSD": {
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "ZUN": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1138000000000000000000000",
+ "isEnabled": true,
+ "rate": "13166660000000000000"
+ },
+ "out": {
+ "capacity": "1018000000000000000000000",
+ "isEnabled": true,
+ "rate": "11778260000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "686000000000000000000000",
+ "isEnabled": true,
+ "rate": "7937020000000000000"
+ },
+ "out": {
+ "capacity": "792000000000000000000000",
+ "isEnabled": true,
+ "rate": "9163440000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "648000000000000000000000",
+ "isEnabled": true,
+ "rate": "7497360000000000000"
+ },
+ "out": {
+ "capacity": "1292000000000000000000000",
+ "isEnabled": true,
+ "rate": "14948440000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "988000000000000000000000",
+ "isEnabled": true,
+ "rate": "11431160000000000000"
+ },
+ "out": {
+ "capacity": "1100000000000000000000000",
+ "isEnabled": true,
+ "rate": "12727000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": null,
+ "standard": null
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "1106000000000000000000000",
+ "isEnabled": true,
+ "rate": "12796420000000000000"
+ },
+ "out": {
+ "capacity": "934000000000000000000000",
+ "isEnabled": true,
+ "rate": "10806380000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1384000000000000000000000",
+ "isEnabled": true,
+ "rate": "16012880000000000000"
+ },
+ "out": {
+ "capacity": "1010000000000000000000000",
+ "isEnabled": true,
+ "rate": "11685700000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1072000000000000000000000",
+ "isEnabled": true,
+ "rate": "12403040000000000000"
+ },
+ "out": {
+ "capacity": "698000000000000000000000",
+ "isEnabled": true,
+ "rate": "8075860000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "996000000000000000000000",
+ "isEnabled": true,
+ "rate": "11523720000000000000"
+ },
+ "out": {
+ "capacity": "626000000000000000000000",
+ "isEnabled": true,
+ "rate": "7242820000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "966000000000000000000000",
+ "isEnabled": true,
+ "rate": "11176620000000000000"
+ },
+ "out": {
+ "capacity": "1170000000000000000000000",
+ "isEnabled": true,
+ "rate": "13536900000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1078000000000000000000000",
+ "isEnabled": true,
+ "rate": "12472460000000000000"
+ },
+ "out": {
+ "capacity": "970000000000000000000000",
+ "isEnabled": true,
+ "rate": "11222900000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "682000000000000000000000",
+ "isEnabled": true,
+ "rate": "7890740000000000000"
+ },
+ "out": {
+ "capacity": "618000000000000000000000",
+ "isEnabled": true,
+ "rate": "7150260000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ },
+ "out": {
+ "capacity": "2000000000000000000000000",
+ "isEnabled": true,
+ "rate": "23140000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "zunETH": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "39096000000000000000",
+ "isEnabled": true,
+ "rate": "904638000000000"
+ },
+ "out": {
+ "capacity": "25128000000000000000",
+ "isEnabled": true,
+ "rate": "581434000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "37080000000000000000",
+ "isEnabled": true,
+ "rate": "857990000000000"
+ },
+ "out": {
+ "capacity": "22032000000000000000",
+ "isEnabled": true,
+ "rate": "509796000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "39456000000000000000",
+ "isEnabled": true,
+ "rate": "912968000000000"
+ },
+ "out": {
+ "capacity": "48456000000000000000",
+ "isEnabled": true,
+ "rate": "1121218000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "49248000000000000000",
+ "isEnabled": true,
+ "rate": "1139544000000000"
+ },
+ "out": {
+ "capacity": "45360000000000000000",
+ "isEnabled": true,
+ "rate": "1049580000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "25344000000000000000",
+ "isEnabled": true,
+ "rate": "586432000000000"
+ },
+ "out": {
+ "capacity": "45504000000000000000",
+ "isEnabled": true,
+ "rate": "1052912000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "32256000000000000000",
+ "isEnabled": true,
+ "rate": "746368000000000"
+ },
+ "out": {
+ "capacity": "36072000000000000000",
+ "isEnabled": true,
+ "rate": "834666000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "33696000000000000000",
+ "isEnabled": true,
+ "rate": "779688000000000"
+ },
+ "out": {
+ "capacity": "41184000000000000000",
+ "isEnabled": true,
+ "rate": "952952000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "40752000000000000000",
+ "isEnabled": true,
+ "rate": "942956000000000"
+ },
+ "out": {
+ "capacity": "39888000000000000000",
+ "isEnabled": true,
+ "rate": "922964000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "23472000000000000000",
+ "isEnabled": true,
+ "rate": "543116000000000"
+ },
+ "out": {
+ "capacity": "38160000000000000000",
+ "isEnabled": true,
+ "rate": "882980000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "37008000000000000000",
+ "isEnabled": true,
+ "rate": "856324000000000"
+ },
+ "out": {
+ "capacity": "36576000000000000000",
+ "isEnabled": true,
+ "rate": "846328000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "45072000000000000000",
+ "isEnabled": true,
+ "rate": "1042916000000000"
+ },
+ "out": {
+ "capacity": "46152000000000000000",
+ "isEnabled": true,
+ "rate": "1067906000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "35712000000000000000",
+ "isEnabled": true,
+ "rate": "826336000000000"
+ },
+ "out": {
+ "capacity": "33480000000000000000",
+ "isEnabled": true,
+ "rate": "774690000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ },
+ "out": {
+ "capacity": "72000000000000000000",
+ "isEnabled": true,
+ "rate": "1666000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "zunUSD": {
+ "ethereum-mainnet-arbitrum-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "125000000000000000000000",
+ "isEnabled": true,
+ "rate": "2893500000000000000"
+ },
+ "out": {
+ "capacity": "129250000000000000000000",
+ "isEnabled": true,
+ "rate": "2991879000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "155750000000000000000000",
+ "isEnabled": true,
+ "rate": "3605301000000000000"
+ },
+ "out": {
+ "capacity": "91250000000000000000000",
+ "isEnabled": true,
+ "rate": "2112255000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "113750000000000000000000",
+ "isEnabled": true,
+ "rate": "2633085000000000000"
+ },
+ "out": {
+ "capacity": "147250000000000000000000",
+ "isEnabled": true,
+ "rate": "3408543000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "77500000000000000000000",
+ "isEnabled": true,
+ "rate": "1793970000000000000"
+ },
+ "out": {
+ "capacity": "89000000000000000000000",
+ "isEnabled": true,
+ "rate": "2060172000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "171250000000000000000000",
+ "isEnabled": true,
+ "rate": "3964095000000000000"
+ },
+ "out": {
+ "capacity": "117250000000000000000000",
+ "isEnabled": true,
+ "rate": "2714103000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "109250000000000000000000",
+ "isEnabled": true,
+ "rate": "2528919000000000000"
+ },
+ "out": {
+ "capacity": "138000000000000000000000",
+ "isEnabled": true,
+ "rate": "3194424000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "123750000000000000000000",
+ "isEnabled": true,
+ "rate": "2864565000000000000"
+ },
+ "out": {
+ "capacity": "116250000000000000000000",
+ "isEnabled": true,
+ "rate": "2690955000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "158000000000000000000000",
+ "isEnabled": true,
+ "rate": "3657384000000000000"
+ },
+ "out": {
+ "capacity": "97250000000000000000000",
+ "isEnabled": true,
+ "rate": "2251143000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "mainnet": {
+ "custom": {
+ "in": {
+ "capacity": "86000000000000000000000",
+ "isEnabled": true,
+ "rate": "1990728000000000000"
+ },
+ "out": {
+ "capacity": "126000000000000000000000",
+ "isEnabled": true,
+ "rate": "2916648000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mainnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-mainnet-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "92500000000000000000000",
+ "isEnabled": true,
+ "rate": "2141190000000000000"
+ },
+ "out": {
+ "capacity": "131750000000000000000000",
+ "isEnabled": true,
+ "rate": "3049749000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "172250000000000000000000",
+ "isEnabled": true,
+ "rate": "3987243000000000000"
+ },
+ "out": {
+ "capacity": "86500000000000000000000",
+ "isEnabled": true,
+ "rate": "2002302000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "101250000000000000000000",
+ "isEnabled": true,
+ "rate": "2343735000000000000"
+ },
+ "out": {
+ "capacity": "124250000000000000000000",
+ "isEnabled": true,
+ "rate": "2876139000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ },
+ "out": {
+ "capacity": "250000000000000000000000",
+ "isEnabled": true,
+ "rate": "5787000000000000000"
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/src/__mocks__/rate-limits-testnet.json b/src/__mocks__/rate-limits-testnet.json
new file mode 100644
index 00000000000..0dfaf068b79
--- /dev/null
+++ b/src/__mocks__/rate-limits-testnet.json
@@ -0,0 +1,7465 @@
+{
+ "CCIP-BnM": {
+ "abstract-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "45500000000000000000000",
+ "isEnabled": true,
+ "rate": "75985000000000000000"
+ },
+ "out": {
+ "capacity": "60300000000000000000000",
+ "isEnabled": true,
+ "rate": "100701000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "apechain-testnet-curtis": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "53700000000000000000000",
+ "isEnabled": true,
+ "rate": "89679000000000000000"
+ },
+ "out": {
+ "capacity": "45300000000000000000000",
+ "isEnabled": true,
+ "rate": "75651000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "aptos-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "sonic-testnet-blaze": {
+ "custom": {
+ "in": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ },
+ "out": {
+ "capacity": "100000000000",
+ "isEnabled": true,
+ "rate": "100000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "avalanche-fuji-testnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "44900000000000000000000",
+ "isEnabled": true,
+ "rate": "74983000000000000000"
+ },
+ "out": {
+ "capacity": "48500000000000000000000",
+ "isEnabled": true,
+ "rate": "80995000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "45500000000000000000000",
+ "isEnabled": true,
+ "rate": "75985000000000000000"
+ },
+ "out": {
+ "capacity": "47900000000000000000000",
+ "isEnabled": true,
+ "rate": "79993000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "33700000000000000000000",
+ "isEnabled": true,
+ "rate": "56279000000000000000"
+ },
+ "out": {
+ "capacity": "56300000000000000000000",
+ "isEnabled": true,
+ "rate": "94021000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "66400000000000000000000",
+ "isEnabled": true,
+ "rate": "110888000000000000000"
+ },
+ "out": {
+ "capacity": "42900000000000000000000",
+ "isEnabled": true,
+ "rate": "71643000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "60700000000000000000000",
+ "isEnabled": true,
+ "rate": "101369000000000000000"
+ },
+ "out": {
+ "capacity": "44300000000000000000000",
+ "isEnabled": true,
+ "rate": "73981000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "41800000000000000000000",
+ "isEnabled": true,
+ "rate": "69806000000000000000"
+ },
+ "out": {
+ "capacity": "44100000000000000000000",
+ "isEnabled": true,
+ "rate": "73647000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "custom": {
+ "in": {
+ "capacity": "42300000000000000000000",
+ "isEnabled": true,
+ "rate": "70641000000000000000"
+ },
+ "out": {
+ "capacity": "58500000000000000000000",
+ "isEnabled": true,
+ "rate": "97695000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "51800000000000000000000",
+ "isEnabled": true,
+ "rate": "86506000000000000000"
+ },
+ "out": {
+ "capacity": "50400000000000000000000",
+ "isEnabled": true,
+ "rate": "84168000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "57900000000000000000000",
+ "isEnabled": true,
+ "rate": "96693000000000000000"
+ },
+ "out": {
+ "capacity": "46000000000000000000000",
+ "isEnabled": true,
+ "rate": "76820000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-testnet-bsquared-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "68000000000000000000000",
+ "isEnabled": true,
+ "rate": "113560000000000000000"
+ },
+ "out": {
+ "capacity": "58300000000000000000000",
+ "isEnabled": true,
+ "rate": "97361000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-testnet-rootstock": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "35000000000000000000000",
+ "isEnabled": true,
+ "rate": "58450000000000000000"
+ },
+ "out": {
+ "capacity": "47800000000000000000000",
+ "isEnabled": true,
+ "rate": "79826000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bitcoin-testnet-sepolia-bob-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "39000000000000000000000",
+ "isEnabled": true,
+ "rate": "65130000000000000000"
+ },
+ "out": {
+ "capacity": "40400000000000000000000",
+ "isEnabled": true,
+ "rate": "67468000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "bsc-testnet": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "aptos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "52400000000000000000000",
+ "isEnabled": true,
+ "rate": "87508000000000000000"
+ },
+ "out": {
+ "capacity": "59100000000000000000000",
+ "isEnabled": true,
+ "rate": "98697000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "42400000000000000000000",
+ "isEnabled": true,
+ "rate": "70808000000000000000"
+ },
+ "out": {
+ "capacity": "38400000000000000000000",
+ "isEnabled": true,
+ "rate": "64128000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "32900000000000000000000",
+ "isEnabled": true,
+ "rate": "54943000000000000000"
+ },
+ "out": {
+ "capacity": "65800000000000000000000",
+ "isEnabled": true,
+ "rate": "109886000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "65900000000000000000000",
+ "isEnabled": true,
+ "rate": "110053000000000000000"
+ },
+ "out": {
+ "capacity": "65600000000000000000000",
+ "isEnabled": true,
+ "rate": "109552000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "34100000000000000000000",
+ "isEnabled": true,
+ "rate": "56947000000000000000"
+ },
+ "out": {
+ "capacity": "64300000000000000000000",
+ "isEnabled": true,
+ "rate": "107381000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "62600000000000000000000",
+ "isEnabled": true,
+ "rate": "104542000000000000000"
+ },
+ "out": {
+ "capacity": "37500000000000000000000",
+ "isEnabled": true,
+ "rate": "62625000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "57400000000000000000000",
+ "isEnabled": true,
+ "rate": "95858000000000000000"
+ },
+ "out": {
+ "capacity": "33900000000000000000000",
+ "isEnabled": true,
+ "rate": "56613000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "celo-testnet-alfajores": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "36700000000000000000000",
+ "isEnabled": true,
+ "rate": "61289000000000000000"
+ },
+ "out": {
+ "capacity": "44400000000000000000000",
+ "isEnabled": true,
+ "rate": "74148000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "cronos-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "47900000000000000000000",
+ "isEnabled": true,
+ "rate": "79993000000000000000"
+ },
+ "out": {
+ "capacity": "35600000000000000000000",
+ "isEnabled": true,
+ "rate": "59452000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-holesky": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "polygon-testnet-tatara": {
+ "custom": {
+ "in": {
+ "capacity": "58500000000000000000000",
+ "isEnabled": true,
+ "rate": "97695000000000000000"
+ },
+ "out": {
+ "capacity": "68700000000000000000000",
+ "isEnabled": true,
+ "rate": "114729000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-holesky-fraxtal-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "49000000000000000000000",
+ "isEnabled": true,
+ "rate": "81830000000000000000"
+ },
+ "out": {
+ "capacity": "53400000000000000000000",
+ "isEnabled": true,
+ "rate": "89178000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-holesky-taiko-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "51400000000000000000000",
+ "isEnabled": true,
+ "rate": "85838000000000000000"
+ },
+ "out": {
+ "capacity": "42300000000000000000000",
+ "isEnabled": true,
+ "rate": "70641000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-hoodi-morph": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "abstract-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "66900000000000000000000",
+ "isEnabled": true,
+ "rate": "111723000000000000000"
+ },
+ "out": {
+ "capacity": "35800000000000000000000",
+ "isEnabled": true,
+ "rate": "59786000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "apechain-testnet-curtis": {
+ "custom": {
+ "in": {
+ "capacity": "65500000000000000000000",
+ "isEnabled": true,
+ "rate": "109385000000000000000"
+ },
+ "out": {
+ "capacity": "55500000000000000000000",
+ "isEnabled": true,
+ "rate": "92685000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "aptos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "avalanche-fuji-testnet": {
+ "custom": null,
+ "standard": null
+ },
+ "bitcoin-testnet-bsquared-1": {
+ "custom": {
+ "in": {
+ "capacity": "68800000000000000000000",
+ "isEnabled": true,
+ "rate": "114896000000000000000"
+ },
+ "out": {
+ "capacity": "65900000000000000000000",
+ "isEnabled": true,
+ "rate": "110053000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bitcoin-testnet-rootstock": {
+ "custom": {
+ "in": {
+ "capacity": "60300000000000000000000",
+ "isEnabled": true,
+ "rate": "100701000000000000000"
+ },
+ "out": {
+ "capacity": "64300000000000000000000",
+ "isEnabled": true,
+ "rate": "107381000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bitcoin-testnet-sepolia-bob-1": {
+ "custom": {
+ "in": {
+ "capacity": "54200000000000000000000",
+ "isEnabled": true,
+ "rate": "90514000000000000000"
+ },
+ "out": {
+ "capacity": "57200000000000000000000",
+ "isEnabled": true,
+ "rate": "95524000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "48300000000000000000000",
+ "isEnabled": true,
+ "rate": "80661000000000000000"
+ },
+ "out": {
+ "capacity": "42500000000000000000000",
+ "isEnabled": true,
+ "rate": "70975000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "celo-testnet-alfajores": {
+ "custom": {
+ "in": {
+ "capacity": "58700000000000000000000",
+ "isEnabled": true,
+ "rate": "98029000000000000000"
+ },
+ "out": {
+ "capacity": "62800000000000000000000",
+ "isEnabled": true,
+ "rate": "104876000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "cronos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "44500000000000000000000",
+ "isEnabled": true,
+ "rate": "74315000000000000000"
+ },
+ "out": {
+ "capacity": "67400000000000000000000",
+ "isEnabled": true,
+ "rate": "112558000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-holesky-fraxtal-1": {
+ "custom": {
+ "in": {
+ "capacity": "33000000000000000000000",
+ "isEnabled": true,
+ "rate": "55110000000000000000"
+ },
+ "out": {
+ "capacity": "41800000000000000000000",
+ "isEnabled": true,
+ "rate": "69806000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-holesky-taiko-1": {
+ "custom": {
+ "in": {
+ "capacity": "45200000000000000000000",
+ "isEnabled": true,
+ "rate": "75484000000000000000"
+ },
+ "out": {
+ "capacity": "57800000000000000000000",
+ "isEnabled": true,
+ "rate": "96526000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-hoodi-morph": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "40100000000000000000000",
+ "isEnabled": true,
+ "rate": "66967000000000000000"
+ },
+ "out": {
+ "capacity": "65600000000000000000000",
+ "isEnabled": true,
+ "rate": "109552000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "54700000000000000000000",
+ "isEnabled": true,
+ "rate": "91349000000000000000"
+ },
+ "out": {
+ "capacity": "33900000000000000000000",
+ "isEnabled": true,
+ "rate": "56613000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "65000000000000000000000",
+ "isEnabled": true,
+ "rate": "108550000000000000000"
+ },
+ "out": {
+ "capacity": "65400000000000000000000",
+ "isEnabled": true,
+ "rate": "109218000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-hashkey-1": {
+ "custom": {
+ "in": {
+ "capacity": "57700000000000000000000",
+ "isEnabled": true,
+ "rate": "96359000000000000000"
+ },
+ "out": {
+ "capacity": "52000000000000000000000",
+ "isEnabled": true,
+ "rate": "86840000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-lisk-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-testnet-sepolia-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "65200000000000000000000",
+ "isEnabled": true,
+ "rate": "108884000000000000000"
+ },
+ "out": {
+ "capacity": "58600000000000000000000",
+ "isEnabled": true,
+ "rate": "97862000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "44100000000000000000000",
+ "isEnabled": true,
+ "rate": "73647000000000000000"
+ },
+ "out": {
+ "capacity": "62900000000000000000000",
+ "isEnabled": true,
+ "rate": "105043000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "38200000000000000000000",
+ "isEnabled": true,
+ "rate": "63794000000000000000"
+ },
+ "out": {
+ "capacity": "57100000000000000000000",
+ "isEnabled": true,
+ "rate": "95357000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "37700000000000000000000",
+ "isEnabled": true,
+ "rate": "62959000000000000000"
+ },
+ "out": {
+ "capacity": "31400000000000000000000",
+ "isEnabled": true,
+ "rate": "52438000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-worldchain-1": {
+ "custom": {
+ "in": {
+ "capacity": "63400000000000000000000",
+ "isEnabled": true,
+ "rate": "105878000000000000000"
+ },
+ "out": {
+ "capacity": "35300000000000000000000",
+ "isEnabled": true,
+ "rate": "58951000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "57400000000000000000000",
+ "isEnabled": true,
+ "rate": "95858000000000000000"
+ },
+ "out": {
+ "capacity": "69300000000000000000000",
+ "isEnabled": true,
+ "rate": "115731000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "hedera-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "57700000000000000000000",
+ "isEnabled": true,
+ "rate": "96359000000000000000"
+ },
+ "out": {
+ "capacity": "60700000000000000000000",
+ "isEnabled": true,
+ "rate": "101369000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ink-testnet-sepolia": {
+ "custom": null,
+ "standard": null
+ },
+ "jovay-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "memento-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "metal-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "69400000000000000000000",
+ "isEnabled": true,
+ "rate": "115898000000000000000"
+ },
+ "out": {
+ "capacity": "30100000000000000000000",
+ "isEnabled": true,
+ "rate": "50267000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "mint-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "36700000000000000000000",
+ "isEnabled": true,
+ "rate": "61289000000000000000"
+ },
+ "out": {
+ "capacity": "40700000000000000000000",
+ "isEnabled": true,
+ "rate": "67969000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "plume-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "58900000000000000000000",
+ "isEnabled": true,
+ "rate": "98363000000000000000"
+ },
+ "out": {
+ "capacity": "49300000000000000000000",
+ "isEnabled": true,
+ "rate": "82331000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polkadot-testnet-astar-shibuya": {
+ "custom": {
+ "in": {
+ "capacity": "61300000000000000000000",
+ "isEnabled": true,
+ "rate": "102371000000000000000"
+ },
+ "out": {
+ "capacity": "35700000000000000000000",
+ "isEnabled": true,
+ "rate": "59619000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "54500000000000000000000",
+ "isEnabled": true,
+ "rate": "91015000000000000000"
+ },
+ "out": {
+ "capacity": "37700000000000000000000",
+ "isEnabled": true,
+ "rate": "62959000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ronin-testnet-saigon": {
+ "custom": {
+ "in": {
+ "capacity": "33300000000000000000000",
+ "isEnabled": true,
+ "rate": "55611000000000000000"
+ },
+ "out": {
+ "capacity": "47800000000000000000000",
+ "isEnabled": true,
+ "rate": "79826000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "sei-testnet-atlantic": {
+ "custom": {
+ "in": {
+ "capacity": "30600000000000000000000",
+ "isEnabled": true,
+ "rate": "51102000000000000000"
+ },
+ "out": {
+ "capacity": "57500000000000000000000",
+ "isEnabled": true,
+ "rate": "96025000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "custom": {
+ "in": {
+ "capacity": "42000000000000000000000",
+ "isEnabled": true,
+ "rate": "70140000000000000000"
+ },
+ "out": {
+ "capacity": "49700000000000000000000",
+ "isEnabled": true,
+ "rate": "82999000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "65200000000000000000000",
+ "isEnabled": true,
+ "rate": "108884000000000000000"
+ },
+ "out": {
+ "capacity": "56100000000000000000000",
+ "isEnabled": true,
+ "rate": "93687000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "sonic-testnet-blaze": {
+ "custom": {
+ "in": {
+ "capacity": "40700000000000000000000",
+ "isEnabled": true,
+ "rate": "67969000000000000000"
+ },
+ "out": {
+ "capacity": "54700000000000000000000",
+ "isEnabled": true,
+ "rate": "91349000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "tac-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "69900000000000000000000",
+ "isEnabled": true,
+ "rate": "116733000000000000000"
+ },
+ "out": {
+ "capacity": "47600000000000000000000",
+ "isEnabled": true,
+ "rate": "79492000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "35100000000000000000000",
+ "isEnabled": true,
+ "rate": "58617000000000000000"
+ },
+ "out": {
+ "capacity": "48200000000000000000000",
+ "isEnabled": true,
+ "rate": "80494000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-andromeda-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "49000000000000000000000",
+ "isEnabled": true,
+ "rate": "81830000000000000000"
+ },
+ "out": {
+ "capacity": "37600000000000000000000",
+ "isEnabled": true,
+ "rate": "62792000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "aptos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "37100000000000000000000",
+ "isEnabled": true,
+ "rate": "61957000000000000000"
+ },
+ "out": {
+ "capacity": "30000000000000000000000",
+ "isEnabled": true,
+ "rate": "50100000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "45600000000000000000000",
+ "isEnabled": true,
+ "rate": "76152000000000000000"
+ },
+ "out": {
+ "capacity": "34800000000000000000000",
+ "isEnabled": true,
+ "rate": "58116000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "59900000000000000000000",
+ "isEnabled": true,
+ "rate": "100033000000000000000"
+ },
+ "out": {
+ "capacity": "38000000000000000000000",
+ "isEnabled": true,
+ "rate": "63460000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "34500000000000000000000",
+ "isEnabled": true,
+ "rate": "57615000000000000000"
+ },
+ "out": {
+ "capacity": "51400000000000000000000",
+ "isEnabled": true,
+ "rate": "85838000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "custom": {
+ "in": {
+ "capacity": "38900000000000000000000",
+ "isEnabled": true,
+ "rate": "64963000000000000000"
+ },
+ "out": {
+ "capacity": "51300000000000000000000",
+ "isEnabled": true,
+ "rate": "85671000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "58100000000000000000000",
+ "isEnabled": true,
+ "rate": "97027000000000000000"
+ },
+ "out": {
+ "capacity": "57500000000000000000000",
+ "isEnabled": true,
+ "rate": "96025000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "31100000000000000000000",
+ "isEnabled": true,
+ "rate": "51937000000000000000"
+ },
+ "out": {
+ "capacity": "66900000000000000000000",
+ "isEnabled": true,
+ "rate": "111723000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "38500000000000000000000",
+ "isEnabled": true,
+ "rate": "64295000000000000000"
+ },
+ "out": {
+ "capacity": "42500000000000000000000",
+ "isEnabled": true,
+ "rate": "70975000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "aptos-testnet": {
+ "custom": null,
+ "standard": null
+ },
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "31200000000000000000000",
+ "isEnabled": true,
+ "rate": "52104000000000000000"
+ },
+ "out": {
+ "capacity": "62900000000000000000000",
+ "isEnabled": true,
+ "rate": "105043000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "68400000000000000000000",
+ "isEnabled": true,
+ "rate": "114228000000000000000"
+ },
+ "out": {
+ "capacity": "43600000000000000000000",
+ "isEnabled": true,
+ "rate": "72812000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "33700000000000000000000",
+ "isEnabled": true,
+ "rate": "56279000000000000000"
+ },
+ "out": {
+ "capacity": "44300000000000000000000",
+ "isEnabled": true,
+ "rate": "73981000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "60000000000000000000000",
+ "isEnabled": true,
+ "rate": "100200000000000000000"
+ },
+ "out": {
+ "capacity": "34500000000000000000000",
+ "isEnabled": true,
+ "rate": "57615000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "63600000000000000000000",
+ "isEnabled": true,
+ "rate": "106212000000000000000"
+ },
+ "out": {
+ "capacity": "43000000000000000000000",
+ "isEnabled": true,
+ "rate": "71810000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "custom": {
+ "in": {
+ "capacity": "54000000000000000000000",
+ "isEnabled": true,
+ "rate": "90180000000000000000"
+ },
+ "out": {
+ "capacity": "46900000000000000000000",
+ "isEnabled": true,
+ "rate": "78323000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "48100000000000000000000",
+ "isEnabled": true,
+ "rate": "80327000000000000000"
+ },
+ "out": {
+ "capacity": "34600000000000000000000",
+ "isEnabled": true,
+ "rate": "57782000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "51900000000000000000000",
+ "isEnabled": true,
+ "rate": "86673000000000000000"
+ },
+ "out": {
+ "capacity": "42500000000000000000000",
+ "isEnabled": true,
+ "rate": "70975000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-blast-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "39000000000000000000000",
+ "isEnabled": true,
+ "rate": "65130000000000000000"
+ },
+ "out": {
+ "capacity": "48200000000000000000000",
+ "isEnabled": true,
+ "rate": "80494000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-hashkey-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "43700000000000000000000",
+ "isEnabled": true,
+ "rate": "72979000000000000000"
+ },
+ "out": {
+ "capacity": "33800000000000000000000",
+ "isEnabled": true,
+ "rate": "56446000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-lisk-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "35400000000000000000000",
+ "isEnabled": true,
+ "rate": "59118000000000000000"
+ },
+ "out": {
+ "capacity": "46300000000000000000000",
+ "isEnabled": true,
+ "rate": "77321000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mantle-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "34700000000000000000000",
+ "isEnabled": true,
+ "rate": "57949000000000000000"
+ },
+ "out": {
+ "capacity": "51500000000000000000000",
+ "isEnabled": true,
+ "rate": "86005000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "42500000000000000000000",
+ "isEnabled": true,
+ "rate": "70975000000000000000"
+ },
+ "out": {
+ "capacity": "49200000000000000000000",
+ "isEnabled": true,
+ "rate": "82164000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "46900000000000000000000",
+ "isEnabled": true,
+ "rate": "78323000000000000000"
+ },
+ "out": {
+ "capacity": "40200000000000000000000",
+ "isEnabled": true,
+ "rate": "67134000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "aptos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "61000000000000000000000",
+ "isEnabled": true,
+ "rate": "101870000000000000000"
+ },
+ "out": {
+ "capacity": "48800000000000000000000",
+ "isEnabled": true,
+ "rate": "81496000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "47300000000000000000000",
+ "isEnabled": true,
+ "rate": "78991000000000000000"
+ },
+ "out": {
+ "capacity": "38600000000000000000000",
+ "isEnabled": true,
+ "rate": "64462000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "54100000000000000000000",
+ "isEnabled": true,
+ "rate": "90347000000000000000"
+ },
+ "out": {
+ "capacity": "54900000000000000000000",
+ "isEnabled": true,
+ "rate": "91683000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "53400000000000000000000",
+ "isEnabled": true,
+ "rate": "89178000000000000000"
+ },
+ "out": {
+ "capacity": "52300000000000000000000",
+ "isEnabled": true,
+ "rate": "87341000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "51100000000000000000000",
+ "isEnabled": true,
+ "rate": "85337000000000000000"
+ },
+ "out": {
+ "capacity": "40400000000000000000000",
+ "isEnabled": true,
+ "rate": "67468000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "custom": {
+ "in": {
+ "capacity": "34700000000000000000000",
+ "isEnabled": true,
+ "rate": "57949000000000000000"
+ },
+ "out": {
+ "capacity": "33500000000000000000000",
+ "isEnabled": true,
+ "rate": "55945000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "49600000000000000000000",
+ "isEnabled": true,
+ "rate": "82832000000000000000"
+ },
+ "out": {
+ "capacity": "65900000000000000000000",
+ "isEnabled": true,
+ "rate": "110053000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "53500000000000000000000",
+ "isEnabled": true,
+ "rate": "89345000000000000000"
+ },
+ "out": {
+ "capacity": "35800000000000000000000",
+ "isEnabled": true,
+ "rate": "59786000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "69700000000000000000000",
+ "isEnabled": true,
+ "rate": "116399000000000000000"
+ },
+ "out": {
+ "capacity": "69400000000000000000000",
+ "isEnabled": true,
+ "rate": "115898000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-unichain-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "61100000000000000000000",
+ "isEnabled": true,
+ "rate": "102037000000000000000"
+ },
+ "out": {
+ "capacity": "64200000000000000000000",
+ "isEnabled": true,
+ "rate": "107214000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-worldchain-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "32400000000000000000000",
+ "isEnabled": true,
+ "rate": "54108000000000000000"
+ },
+ "out": {
+ "capacity": "47700000000000000000000",
+ "isEnabled": true,
+ "rate": "79659000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-zksync-1": {
+ "minBlockConfirmation": null,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "hedera-testnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "68100000000000000000000",
+ "isEnabled": true,
+ "rate": "113727000000000000000"
+ },
+ "out": {
+ "capacity": "64900000000000000000000",
+ "isEnabled": true,
+ "rate": "108383000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ink-testnet-sepolia": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "62400000000000000000000",
+ "isEnabled": true,
+ "rate": "104208000000000000000"
+ },
+ "out": {
+ "capacity": "68900000000000000000000",
+ "isEnabled": true,
+ "rate": "115063000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "jovay-testnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "memento-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "metal-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "57500000000000000000000",
+ "isEnabled": true,
+ "rate": "96025000000000000000"
+ },
+ "out": {
+ "capacity": "59900000000000000000000",
+ "isEnabled": true,
+ "rate": "100033000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "mint-testnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "44900000000000000000000",
+ "isEnabled": true,
+ "rate": "74983000000000000000"
+ },
+ "out": {
+ "capacity": "57400000000000000000000",
+ "isEnabled": true,
+ "rate": "95858000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "plume-testnet-sepolia": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "45900000000000000000000",
+ "isEnabled": true,
+ "rate": "76653000000000000000"
+ },
+ "out": {
+ "capacity": "32800000000000000000000",
+ "isEnabled": true,
+ "rate": "54776000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-testnet-astar-shibuya": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "41800000000000000000000",
+ "isEnabled": true,
+ "rate": "69806000000000000000"
+ },
+ "out": {
+ "capacity": "50300000000000000000000",
+ "isEnabled": true,
+ "rate": "84001000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "40000000000000000000000",
+ "isEnabled": true,
+ "rate": "66800000000000000000"
+ },
+ "out": {
+ "capacity": "55200000000000000000000",
+ "isEnabled": true,
+ "rate": "92184000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "37800000000000000000000",
+ "isEnabled": true,
+ "rate": "63126000000000000000"
+ },
+ "out": {
+ "capacity": "41600000000000000000000",
+ "isEnabled": true,
+ "rate": "69472000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "62200000000000000000000",
+ "isEnabled": true,
+ "rate": "103874000000000000000"
+ },
+ "out": {
+ "capacity": "65300000000000000000000",
+ "isEnabled": true,
+ "rate": "109051000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "59500000000000000000000",
+ "isEnabled": true,
+ "rate": "99365000000000000000"
+ },
+ "out": {
+ "capacity": "64600000000000000000000",
+ "isEnabled": true,
+ "rate": "107882000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "53700000000000000000000",
+ "isEnabled": true,
+ "rate": "89679000000000000000"
+ },
+ "out": {
+ "capacity": "61200000000000000000000",
+ "isEnabled": true,
+ "rate": "102204000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polygon-testnet-tatara": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-holesky": {
+ "custom": {
+ "in": {
+ "capacity": "37500000000000000000000",
+ "isEnabled": true,
+ "rate": "62625000000000000000"
+ },
+ "out": {
+ "capacity": "68700000000000000000000",
+ "isEnabled": true,
+ "rate": "114729000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-testnet-saigon": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "53400000000000000000000",
+ "isEnabled": true,
+ "rate": "89178000000000000000"
+ },
+ "out": {
+ "capacity": "39700000000000000000000",
+ "isEnabled": true,
+ "rate": "66299000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "sei-testnet-atlantic": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "62900000000000000000000",
+ "isEnabled": true,
+ "rate": "105043000000000000000"
+ },
+ "out": {
+ "capacity": "34200000000000000000000",
+ "isEnabled": true,
+ "rate": "57114000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "shibarium-testnet-puppynet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "46200000000000000000000",
+ "isEnabled": true,
+ "rate": "77154000000000000000"
+ },
+ "out": {
+ "capacity": "65700000000000000000000",
+ "isEnabled": true,
+ "rate": "109719000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "48100000000000000000000",
+ "isEnabled": true,
+ "rate": "80327000000000000000"
+ },
+ "out": {
+ "capacity": "58500000000000000000000",
+ "isEnabled": true,
+ "rate": "97695000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "34500000000000000000000",
+ "isEnabled": true,
+ "rate": "57615000000000000000"
+ },
+ "out": {
+ "capacity": "69400000000000000000000",
+ "isEnabled": true,
+ "rate": "115898000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": null,
+ "standard": null
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "45100000000000000000000",
+ "isEnabled": true,
+ "rate": "75317000000000000000"
+ },
+ "out": {
+ "capacity": "63200000000000000000000",
+ "isEnabled": true,
+ "rate": "105544000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "solana-devnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "62200000000000",
+ "isEnabled": true,
+ "rate": "103874000000"
+ },
+ "out": {
+ "capacity": "50400000000000",
+ "isEnabled": true,
+ "rate": "84168000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "54200000000000",
+ "isEnabled": true,
+ "rate": "90514000000"
+ },
+ "out": {
+ "capacity": "55300000000000",
+ "isEnabled": true,
+ "rate": "92351000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "60900000000000",
+ "isEnabled": true,
+ "rate": "101703000000"
+ },
+ "out": {
+ "capacity": "65000000000000",
+ "isEnabled": true,
+ "rate": "108550000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "40800000000000",
+ "isEnabled": true,
+ "rate": "68136000000"
+ },
+ "out": {
+ "capacity": "68300000000000",
+ "isEnabled": true,
+ "rate": "114061000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "36800000000000",
+ "isEnabled": true,
+ "rate": "61456000000"
+ },
+ "out": {
+ "capacity": "41500000000000",
+ "isEnabled": true,
+ "rate": "69305000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ },
+ "sonic-testnet-blaze": {
+ "custom": {
+ "in": {
+ "capacity": "64300000000000",
+ "isEnabled": true,
+ "rate": "107381000000"
+ },
+ "out": {
+ "capacity": "31800000000000",
+ "isEnabled": true,
+ "rate": "53106000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ },
+ "out": {
+ "capacity": "100000000000000",
+ "isEnabled": true,
+ "rate": "167000000000"
+ }
+ }
+ }
+ }
+ },
+ "sonic-testnet-blaze": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "aptos-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "68500000000000000000000",
+ "isEnabled": true,
+ "rate": "114395000000000000000"
+ },
+ "out": {
+ "capacity": "49500000000000000000000",
+ "isEnabled": true,
+ "rate": "82665000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "33200000000000000000000",
+ "isEnabled": true,
+ "rate": "55444000000000000000"
+ },
+ "out": {
+ "capacity": "43200000000000000000000",
+ "isEnabled": true,
+ "rate": "72144000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "tac-testnet": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "wemix-testnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "45600000000000000000000",
+ "isEnabled": true,
+ "rate": "76152000000000000000"
+ },
+ "out": {
+ "capacity": "44700000000000000000000",
+ "isEnabled": true,
+ "rate": "74649000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "60500000000000000000000",
+ "isEnabled": true,
+ "rate": "101035000000000000000"
+ },
+ "out": {
+ "capacity": "52500000000000000000000",
+ "isEnabled": true,
+ "rate": "87675000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "45100000000000000000000",
+ "isEnabled": true,
+ "rate": "75317000000000000000"
+ },
+ "out": {
+ "capacity": "41800000000000000000000",
+ "isEnabled": true,
+ "rate": "69806000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "38300000000000000000000",
+ "isEnabled": true,
+ "rate": "63961000000000000000"
+ },
+ "out": {
+ "capacity": "30700000000000000000000",
+ "isEnabled": true,
+ "rate": "51269000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "66000000000000000000000",
+ "isEnabled": true,
+ "rate": "110220000000000000000"
+ },
+ "out": {
+ "capacity": "38700000000000000000000",
+ "isEnabled": true,
+ "rate": "64629000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "37700000000000000000000",
+ "isEnabled": true,
+ "rate": "62959000000000000000"
+ },
+ "out": {
+ "capacity": "42700000000000000000000",
+ "isEnabled": true,
+ "rate": "71309000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "44700000000000000000000",
+ "isEnabled": true,
+ "rate": "74649000000000000000"
+ },
+ "out": {
+ "capacity": "38100000000000000000000",
+ "isEnabled": true,
+ "rate": "63627000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "59100000000000000000000",
+ "isEnabled": true,
+ "rate": "98697000000000000000"
+ },
+ "out": {
+ "capacity": "51300000000000000000000",
+ "isEnabled": true,
+ "rate": "85671000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "52500000000000000000000",
+ "isEnabled": true,
+ "rate": "87675000000000000000"
+ },
+ "out": {
+ "capacity": "61300000000000000000000",
+ "isEnabled": true,
+ "rate": "102371000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "40300000000000000000000",
+ "isEnabled": true,
+ "rate": "67301000000000000000"
+ },
+ "out": {
+ "capacity": "51500000000000000000000",
+ "isEnabled": true,
+ "rate": "86005000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "50000000000000000000000",
+ "isEnabled": true,
+ "rate": "83500000000000000000"
+ },
+ "out": {
+ "capacity": "54500000000000000000000",
+ "isEnabled": true,
+ "rate": "91015000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "56900000000000000000000",
+ "isEnabled": true,
+ "rate": "95023000000000000000"
+ },
+ "out": {
+ "capacity": "45900000000000000000000",
+ "isEnabled": true,
+ "rate": "76653000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "64700000000000000000000",
+ "isEnabled": true,
+ "rate": "108049000000000000000"
+ },
+ "out": {
+ "capacity": "53500000000000000000000",
+ "isEnabled": true,
+ "rate": "89345000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdc-testnet": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ },
+ "out": {
+ "capacity": "1000000000000000000000",
+ "isEnabled": true,
+ "rate": "1000000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "CCIP-LnM": {
+ "avalanche-fuji-testnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "31500000000000000000000",
+ "isEnabled": true,
+ "rate": "52605000000000000000"
+ },
+ "out": {
+ "capacity": "49900000000000000000000",
+ "isEnabled": true,
+ "rate": "83333000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "58000000000000000000000",
+ "isEnabled": true,
+ "rate": "96860000000000000000"
+ },
+ "out": {
+ "capacity": "47600000000000000000000",
+ "isEnabled": true,
+ "rate": "79492000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "43000000000000000000000",
+ "isEnabled": true,
+ "rate": "71810000000000000000"
+ },
+ "out": {
+ "capacity": "57200000000000000000000",
+ "isEnabled": true,
+ "rate": "95524000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "32600000000000000000000",
+ "isEnabled": true,
+ "rate": "54442000000000000000"
+ },
+ "out": {
+ "capacity": "49100000000000000000000",
+ "isEnabled": true,
+ "rate": "81997000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "37400000000000000000000",
+ "isEnabled": true,
+ "rate": "62458000000000000000"
+ },
+ "out": {
+ "capacity": "37600000000000000000000",
+ "isEnabled": true,
+ "rate": "62792000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "56600000000000000000000",
+ "isEnabled": true,
+ "rate": "94522000000000000000"
+ },
+ "out": {
+ "capacity": "64000000000000000000000",
+ "isEnabled": true,
+ "rate": "106880000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "38000000000000000000000",
+ "isEnabled": true,
+ "rate": "63460000000000000000"
+ },
+ "out": {
+ "capacity": "34800000000000000000000",
+ "isEnabled": true,
+ "rate": "58116000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "bsc-testnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "60000000000000000000000",
+ "isEnabled": true,
+ "rate": "100200000000000000000"
+ },
+ "out": {
+ "capacity": "60200000000000000000000",
+ "isEnabled": true,
+ "rate": "100534000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "42400000000000000000000",
+ "isEnabled": true,
+ "rate": "70808000000000000000"
+ },
+ "out": {
+ "capacity": "51700000000000000000000",
+ "isEnabled": true,
+ "rate": "86339000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "46000000000000000000000",
+ "isEnabled": true,
+ "rate": "76820000000000000000"
+ },
+ "out": {
+ "capacity": "48100000000000000000000",
+ "isEnabled": true,
+ "rate": "80327000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "67200000000000000000000",
+ "isEnabled": true,
+ "rate": "112224000000000000000"
+ },
+ "out": {
+ "capacity": "69300000000000000000000",
+ "isEnabled": true,
+ "rate": "115731000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "65300000000000000000000",
+ "isEnabled": true,
+ "rate": "109051000000000000000"
+ },
+ "out": {
+ "capacity": "39300000000000000000000",
+ "isEnabled": true,
+ "rate": "65631000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "48700000000000000000000",
+ "isEnabled": true,
+ "rate": "81329000000000000000"
+ },
+ "out": {
+ "capacity": "60000000000000000000000",
+ "isEnabled": true,
+ "rate": "100200000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "celo-testnet-alfajores": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "67700000000000000000000",
+ "isEnabled": true,
+ "rate": "113059000000000000000"
+ },
+ "out": {
+ "capacity": "64100000000000000000000",
+ "isEnabled": true,
+ "rate": "107047000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "44500000000000000000000",
+ "isEnabled": true,
+ "rate": "74315000000000000000"
+ },
+ "out": {
+ "capacity": "64400000000000000000000",
+ "isEnabled": true,
+ "rate": "107548000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "68800000000000000000000",
+ "isEnabled": true,
+ "rate": "114896000000000000000"
+ },
+ "out": {
+ "capacity": "35200000000000000000000",
+ "isEnabled": true,
+ "rate": "58784000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "celo-testnet-alfajores": {
+ "custom": {
+ "in": {
+ "capacity": "41000000000000000000000",
+ "isEnabled": true,
+ "rate": "68470000000000000000"
+ },
+ "out": {
+ "capacity": "60800000000000000000000",
+ "isEnabled": true,
+ "rate": "101536000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-andromeda-1": {
+ "custom": {
+ "in": {
+ "capacity": "68000000000000000000000",
+ "isEnabled": true,
+ "rate": "113560000000000000000"
+ },
+ "out": {
+ "capacity": "45500000000000000000000",
+ "isEnabled": true,
+ "rate": "75985000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "52900000000000000000000",
+ "isEnabled": true,
+ "rate": "88343000000000000000"
+ },
+ "out": {
+ "capacity": "36700000000000000000000",
+ "isEnabled": true,
+ "rate": "61289000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "35000000000000000000000",
+ "isEnabled": true,
+ "rate": "58450000000000000000"
+ },
+ "out": {
+ "capacity": "47700000000000000000000",
+ "isEnabled": true,
+ "rate": "79659000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-blast-1": {
+ "custom": {
+ "in": {
+ "capacity": "50300000000000000000000",
+ "isEnabled": true,
+ "rate": "84001000000000000000"
+ },
+ "out": {
+ "capacity": "47800000000000000000000",
+ "isEnabled": true,
+ "rate": "79826000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-linea-1": {
+ "custom": {
+ "in": {
+ "capacity": "51600000000000000000000",
+ "isEnabled": true,
+ "rate": "86172000000000000000"
+ },
+ "out": {
+ "capacity": "43400000000000000000000",
+ "isEnabled": true,
+ "rate": "72478000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "54400000000000000000000",
+ "isEnabled": true,
+ "rate": "90848000000000000000"
+ },
+ "out": {
+ "capacity": "52000000000000000000000",
+ "isEnabled": true,
+ "rate": "86840000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "53800000000000000000000",
+ "isEnabled": true,
+ "rate": "89846000000000000000"
+ },
+ "out": {
+ "capacity": "59400000000000000000000",
+ "isEnabled": true,
+ "rate": "99198000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "59300000000000000000000",
+ "isEnabled": true,
+ "rate": "99031000000000000000"
+ },
+ "out": {
+ "capacity": "37700000000000000000000",
+ "isEnabled": true,
+ "rate": "62959000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-polygon-zkevm-1": {
+ "custom": {
+ "in": {
+ "capacity": "65400000000000000000000",
+ "isEnabled": true,
+ "rate": "109218000000000000000"
+ },
+ "out": {
+ "capacity": "32400000000000000000000",
+ "isEnabled": true,
+ "rate": "54108000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-scroll-1": {
+ "custom": {
+ "in": {
+ "capacity": "67400000000000000000000",
+ "isEnabled": true,
+ "rate": "112558000000000000000"
+ },
+ "out": {
+ "capacity": "53200000000000000000000",
+ "isEnabled": true,
+ "rate": "88844000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-xlayer-1": {
+ "custom": {
+ "in": {
+ "capacity": "68700000000000000000000",
+ "isEnabled": true,
+ "rate": "114729000000000000000"
+ },
+ "out": {
+ "capacity": "55500000000000000000000",
+ "isEnabled": true,
+ "rate": "92685000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-zksync-1": {
+ "custom": {
+ "in": {
+ "capacity": "40800000000000000000000",
+ "isEnabled": true,
+ "rate": "68136000000000000000"
+ },
+ "out": {
+ "capacity": "62400000000000000000000",
+ "isEnabled": true,
+ "rate": "104208000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polkadot-testnet-astar-shibuya": {
+ "custom": {
+ "in": {
+ "capacity": "114228000000000000000",
+ "isEnabled": true,
+ "rate": "68400000000000000000"
+ },
+ "out": {
+ "capacity": "84001000000000000000",
+ "isEnabled": true,
+ "rate": "50300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "167000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000000"
+ },
+ "out": {
+ "capacity": "167000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "36900000000000000000000",
+ "isEnabled": true,
+ "rate": "61623000000000000000"
+ },
+ "out": {
+ "capacity": "44600000000000000000000",
+ "isEnabled": true,
+ "rate": "74482000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ronin-testnet-saigon": {
+ "custom": {
+ "in": {
+ "capacity": "59400000000000000000000",
+ "isEnabled": true,
+ "rate": "99198000000000000000"
+ },
+ "out": {
+ "capacity": "38200000000000000000000",
+ "isEnabled": true,
+ "rate": "63794000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "69700000000000000000000",
+ "isEnabled": true,
+ "rate": "116399000000000000000"
+ },
+ "out": {
+ "capacity": "101703000000000000000",
+ "isEnabled": true,
+ "rate": "60900000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "167000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "58500000000000000000000",
+ "isEnabled": true,
+ "rate": "97695000000000000000"
+ },
+ "out": {
+ "capacity": "33200000000000000000000",
+ "isEnabled": true,
+ "rate": "55444000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-andromeda-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "61100000000000000000000",
+ "isEnabled": true,
+ "rate": "102037000000000000000"
+ },
+ "out": {
+ "capacity": "48100000000000000000000",
+ "isEnabled": true,
+ "rate": "80327000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "47300000000000000000000",
+ "isEnabled": true,
+ "rate": "78991000000000000000"
+ },
+ "out": {
+ "capacity": "30900000000000000000000",
+ "isEnabled": true,
+ "rate": "51603000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "69900000000000000000000",
+ "isEnabled": true,
+ "rate": "116733000000000000000"
+ },
+ "out": {
+ "capacity": "48500000000000000000000",
+ "isEnabled": true,
+ "rate": "80995000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "41300000000000000000000",
+ "isEnabled": true,
+ "rate": "68971000000000000000"
+ },
+ "out": {
+ "capacity": "52700000000000000000000",
+ "isEnabled": true,
+ "rate": "88009000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "41900000000000000000000",
+ "isEnabled": true,
+ "rate": "69973000000000000000"
+ },
+ "out": {
+ "capacity": "33200000000000000000000",
+ "isEnabled": true,
+ "rate": "55444000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "34500000000000000000000",
+ "isEnabled": true,
+ "rate": "57615000000000000000"
+ },
+ "out": {
+ "capacity": "66400000000000000000000",
+ "isEnabled": true,
+ "rate": "110888000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "31400000000000000000000",
+ "isEnabled": true,
+ "rate": "52438000000000000000"
+ },
+ "out": {
+ "capacity": "47300000000000000000000",
+ "isEnabled": true,
+ "rate": "78991000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "44400000000000000000000",
+ "isEnabled": true,
+ "rate": "74148000000000000000"
+ },
+ "out": {
+ "capacity": "61600000000000000000000",
+ "isEnabled": true,
+ "rate": "102872000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "46400000000000000000000",
+ "isEnabled": true,
+ "rate": "77488000000000000000"
+ },
+ "out": {
+ "capacity": "55000000000000000000000",
+ "isEnabled": true,
+ "rate": "91850000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "50200000000000000000000",
+ "isEnabled": true,
+ "rate": "83834000000000000000"
+ },
+ "out": {
+ "capacity": "32300000000000000000000",
+ "isEnabled": true,
+ "rate": "53941000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "61800000000000000000000",
+ "isEnabled": true,
+ "rate": "103206000000000000000"
+ },
+ "out": {
+ "capacity": "39200000000000000000000",
+ "isEnabled": true,
+ "rate": "65464000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "custom": {
+ "in": {
+ "capacity": "47000000000000000000000",
+ "isEnabled": true,
+ "rate": "78490000000000000000"
+ },
+ "out": {
+ "capacity": "57500000000000000000000",
+ "isEnabled": true,
+ "rate": "96025000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "32600000000000000000000",
+ "isEnabled": true,
+ "rate": "54442000000000000000"
+ },
+ "out": {
+ "capacity": "37300000000000000000000",
+ "isEnabled": true,
+ "rate": "62291000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "35600000000000000000000",
+ "isEnabled": true,
+ "rate": "59452000000000000000"
+ },
+ "out": {
+ "capacity": "44000000000000000000000",
+ "isEnabled": true,
+ "rate": "73480000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-blast-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "35900000000000000000000",
+ "isEnabled": true,
+ "rate": "59953000000000000000"
+ },
+ "out": {
+ "capacity": "43900000000000000000000",
+ "isEnabled": true,
+ "rate": "73313000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-kroma-1": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "48200000000000000000000",
+ "isEnabled": true,
+ "rate": "80494000000000000000"
+ },
+ "out": {
+ "capacity": "53500000000000000000000",
+ "isEnabled": true,
+ "rate": "89345000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-linea-1": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "63800000000000000000000",
+ "isEnabled": true,
+ "rate": "106546000000000000000"
+ },
+ "out": {
+ "capacity": "65400000000000000000000",
+ "isEnabled": true,
+ "rate": "109218000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mantle-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "63200000000000000000000",
+ "isEnabled": true,
+ "rate": "105544000000000000000"
+ },
+ "out": {
+ "capacity": "35500000000000000000000",
+ "isEnabled": true,
+ "rate": "59285000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mode-1": {
+ "minBlockConfirmation": 4,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "50700000000000000000000",
+ "isEnabled": true,
+ "rate": "84669000000000000000"
+ },
+ "out": {
+ "capacity": "49500000000000000000000",
+ "isEnabled": true,
+ "rate": "82665000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "40900000000000000000000",
+ "isEnabled": true,
+ "rate": "68303000000000000000"
+ },
+ "out": {
+ "capacity": "45900000000000000000000",
+ "isEnabled": true,
+ "rate": "76653000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "68400000000000000000000",
+ "isEnabled": true,
+ "rate": "114228000000000000000"
+ },
+ "out": {
+ "capacity": "41500000000000000000000",
+ "isEnabled": true,
+ "rate": "69305000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "52900000000000000000000",
+ "isEnabled": true,
+ "rate": "88343000000000000000"
+ },
+ "out": {
+ "capacity": "59700000000000000000000",
+ "isEnabled": true,
+ "rate": "99699000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "50400000000000000000000",
+ "isEnabled": true,
+ "rate": "84168000000000000000"
+ },
+ "out": {
+ "capacity": "54800000000000000000000",
+ "isEnabled": true,
+ "rate": "91516000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "61100000000000000000000",
+ "isEnabled": true,
+ "rate": "102037000000000000000"
+ },
+ "out": {
+ "capacity": "57200000000000000000000",
+ "isEnabled": true,
+ "rate": "95524000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "54100000000000000000000",
+ "isEnabled": true,
+ "rate": "90347000000000000000"
+ },
+ "out": {
+ "capacity": "48600000000000000000000",
+ "isEnabled": true,
+ "rate": "81162000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "33300000000000000000000",
+ "isEnabled": true,
+ "rate": "55611000000000000000"
+ },
+ "out": {
+ "capacity": "38900000000000000000000",
+ "isEnabled": true,
+ "rate": "64963000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "52100000000000000000000",
+ "isEnabled": true,
+ "rate": "87007000000000000000"
+ },
+ "out": {
+ "capacity": "61200000000000000000000",
+ "isEnabled": true,
+ "rate": "102204000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-polygon-zkevm-1": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "46000000000000000000000",
+ "isEnabled": true,
+ "rate": "76820000000000000000"
+ },
+ "out": {
+ "capacity": "42000000000000000000000",
+ "isEnabled": true,
+ "rate": "70140000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-scroll-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "41500000000000000000000",
+ "isEnabled": true,
+ "rate": "69305000000000000000"
+ },
+ "out": {
+ "capacity": "57000000000000000000000",
+ "isEnabled": true,
+ "rate": "95190000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-xlayer-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "55100000000000000000000",
+ "isEnabled": true,
+ "rate": "92017000000000000000"
+ },
+ "out": {
+ "capacity": "52200000000000000000000",
+ "isEnabled": true,
+ "rate": "87174000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-zksync-1": {
+ "minBlockConfirmation": 9,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "69000000000000000000000",
+ "isEnabled": true,
+ "rate": "115230000000000000000"
+ },
+ "out": {
+ "capacity": "48400000000000000000000",
+ "isEnabled": true,
+ "rate": "80828000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polkadot-testnet-astar-shibuya": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "78490000000000000000",
+ "isEnabled": true,
+ "rate": "47000000000000000000"
+ },
+ "out": {
+ "capacity": "92351000000000000000",
+ "isEnabled": true,
+ "rate": "55300000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "167000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000000"
+ },
+ "out": {
+ "capacity": "167000000000000000000",
+ "isEnabled": true,
+ "rate": "100000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "63700000000000000000000",
+ "isEnabled": true,
+ "rate": "106379000000000000000"
+ },
+ "out": {
+ "capacity": "41100000000000000000000",
+ "isEnabled": true,
+ "rate": "68637000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "64800000000000000000000",
+ "isEnabled": true,
+ "rate": "108216000000000000000"
+ },
+ "out": {
+ "capacity": "58500000000000000000000",
+ "isEnabled": true,
+ "rate": "97695000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "58400000000000000000000",
+ "isEnabled": true,
+ "rate": "97528000000000000000"
+ },
+ "out": {
+ "capacity": "37100000000000000000000",
+ "isEnabled": true,
+ "rate": "61957000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "36600000000000000000000",
+ "isEnabled": true,
+ "rate": "61122000000000000000"
+ },
+ "out": {
+ "capacity": "56400000000000000000000",
+ "isEnabled": true,
+ "rate": "94188000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "wemix-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "32300000000000000000000",
+ "isEnabled": true,
+ "rate": "53941000000000000000"
+ },
+ "out": {
+ "capacity": "30900000000000000000000",
+ "isEnabled": true,
+ "rate": "51603000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "custom": {
+ "in": {
+ "capacity": "34200000000000000000000",
+ "isEnabled": true,
+ "rate": "57114000000000000000"
+ },
+ "out": {
+ "capacity": "68200000000000000000000",
+ "isEnabled": true,
+ "rate": "113894000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "ronin-testnet-saigon": {
+ "minBlockConfirmation": 7,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "56900000000000000000000",
+ "isEnabled": true,
+ "rate": "95023000000000000000"
+ },
+ "out": {
+ "capacity": "53000000000000000000000",
+ "isEnabled": true,
+ "rate": "88510000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "wemix-testnet": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "54300000000000000000000",
+ "isEnabled": true,
+ "rate": "90681000000000000000"
+ },
+ "out": {
+ "capacity": "46600000000000000000000",
+ "isEnabled": true,
+ "rate": "77822000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "68900000000000000000000",
+ "isEnabled": true,
+ "rate": "115063000000000000000"
+ },
+ "out": {
+ "capacity": "66400000000000000000000",
+ "isEnabled": true,
+ "rate": "110888000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "43200000000000000000000",
+ "isEnabled": true,
+ "rate": "72144000000000000000"
+ },
+ "out": {
+ "capacity": "43200000000000000000000",
+ "isEnabled": true,
+ "rate": "72144000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "33200000000000000000000",
+ "isEnabled": true,
+ "rate": "55444000000000000000"
+ },
+ "out": {
+ "capacity": "64100000000000000000000",
+ "isEnabled": true,
+ "rate": "107047000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-kroma-1": {
+ "custom": {
+ "in": {
+ "capacity": "48600000000000000000000",
+ "isEnabled": true,
+ "rate": "81162000000000000000"
+ },
+ "out": {
+ "capacity": "37500000000000000000000",
+ "isEnabled": true,
+ "rate": "62625000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "63600000000000000000000",
+ "isEnabled": true,
+ "rate": "106212000000000000000"
+ },
+ "out": {
+ "capacity": "59500000000000000000000",
+ "isEnabled": true,
+ "rate": "99365000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "63200000000000000000000",
+ "isEnabled": true,
+ "rate": "105544000000000000000"
+ },
+ "out": {
+ "capacity": "35200000000000000000000",
+ "isEnabled": true,
+ "rate": "58784000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ },
+ "xdai-testnet-chiado": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "63600000000000000000000",
+ "isEnabled": true,
+ "rate": "106212000000000000000"
+ },
+ "out": {
+ "capacity": "36900000000000000000000",
+ "isEnabled": true,
+ "rate": "61623000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "bsc-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "68700000000000000000000",
+ "isEnabled": true,
+ "rate": "114729000000000000000"
+ },
+ "out": {
+ "capacity": "67200000000000000000000",
+ "isEnabled": true,
+ "rate": "112224000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "64900000000000000000000",
+ "isEnabled": true,
+ "rate": "108383000000000000000"
+ },
+ "out": {
+ "capacity": "37200000000000000000000",
+ "isEnabled": true,
+ "rate": "62124000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "59800000000000000000000",
+ "isEnabled": true,
+ "rate": "99866000000000000000"
+ },
+ "out": {
+ "capacity": "60800000000000000000000",
+ "isEnabled": true,
+ "rate": "101536000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "60300000000000000000000",
+ "isEnabled": true,
+ "rate": "100701000000000000000"
+ },
+ "out": {
+ "capacity": "60500000000000000000000",
+ "isEnabled": true,
+ "rate": "101035000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "30800000000000000000000",
+ "isEnabled": true,
+ "rate": "51436000000000000000"
+ },
+ "out": {
+ "capacity": "32800000000000000000000",
+ "isEnabled": true,
+ "rate": "54776000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "33200000000000000000000",
+ "isEnabled": true,
+ "rate": "55444000000000000000"
+ },
+ "out": {
+ "capacity": "46400000000000000000000",
+ "isEnabled": true,
+ "rate": "77488000000000000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ },
+ "out": {
+ "capacity": "100000000000000000000000",
+ "isEnabled": true,
+ "rate": "167000000000000000000"
+ }
+ }
+ }
+ }
+ }
+ },
+ "syrupUSDC": {
+ "ethereum-testnet-sepolia": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "solana-devnet": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "syrupUSDT": {
+ "ethereum-testnet-sepolia": {
+ "minBlockConfirmation": 1,
+ "remote": {
+ "ethereum-testnet-sepolia-mantle-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "plasma-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-mantle-1": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "plasma-testnet": {
+ "minBlockConfirmation": 5,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "USDC": {
+ "avalanche-fuji-testnet": {
+ "minBlockConfirmation": 10,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "avalanche-fuji-testnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "minBlockConfirmation": 8,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "minBlockConfirmation": 3,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-unichain-1": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "minBlockConfirmation": 2,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "solana-devnet": {
+ "custom": null,
+ "standard": null
+ }
+ }
+ },
+ "solana-devnet": {
+ "minBlockConfirmation": 6,
+ "remote": {
+ "ethereum-testnet-sepolia": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "ethereum-testnet-sepolia-unichain-1": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ },
+ "polygon-testnet-amoy": {
+ "custom": {
+ "in": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ },
+ "out": {
+ "capacity": "1000000000",
+ "isEnabled": true,
+ "rate": "1000000"
+ }
+ },
+ "standard": {
+ "in": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ },
+ "out": {
+ "capacity": "0",
+ "isEnabled": false,
+ "rate": "0"
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/src/components/CCIP/Chain/ChainTokenGrid.tsx b/src/components/CCIP/Chain/ChainTokenGrid.tsx
index ad2502efcff..fd267bcfd56 100644
--- a/src/components/CCIP/Chain/ChainTokenGrid.tsx
+++ b/src/components/CCIP/Chain/ChainTokenGrid.tsx
@@ -53,8 +53,9 @@ function ChainTokenGrid({ tokens, network, environment }: ChainTokenGridProps) {
tokenSymbol: data[key].symbol,
tokenDecimals: data[key].decimals,
tokenAddress: data[key].tokenAddress,
- tokenPoolType: data[key].poolType,
- tokenPoolAddress: data[key].poolAddress || "",
+ tokenPoolType: data[key].pool.type,
+ tokenPoolAddress: data[key].pool.address || "",
+ tokenPoolVersion: data[key].pool.version || "",
explorer: network.explorer,
chainType,
}
diff --git a/src/components/CCIP/Drawer/LaneDrawer.tsx b/src/components/CCIP/Drawer/LaneDrawer.tsx
index cfc602ea850..18f91339c21 100644
--- a/src/components/CCIP/Drawer/LaneDrawer.tsx
+++ b/src/components/CCIP/Drawer/LaneDrawer.tsx
@@ -2,12 +2,11 @@ import Address from "~/components/AddressReact.tsx"
import "../Tables/Table.css"
import { Environment, LaneConfig, LaneFilter, Version } from "~/config/data/ccip/types.ts"
import { getNetwork, getTokenData } from "~/config/data/ccip/data.ts"
-import { displayCapacity, determineTokenMechanism, isTokenPaused } from "~/config/data/ccip/utils.ts"
+import { determineTokenMechanism } from "~/config/data/ccip/utils.ts"
import { useState } from "react"
import LaneDetailsHero from "../ChainHero/LaneDetailsHero.tsx"
import { getExplorerAddressUrl, getTokenIconUrl, fallbackTokenIconUrl } from "~/features/utils/index.ts"
import TableSearchInput from "../Tables/TableSearchInput.tsx"
-import RateTooltip from "../Tooltip/RateTooltip.tsx"
import { Tooltip } from "~/features/common/Tooltip/Tooltip.tsx"
import { ChainType, ExplorerInfo } from "@config/types.ts"
@@ -63,7 +62,7 @@ function LaneDrawer({
- Tokens ({lane?.supportedTokens ? Object.keys(lane.supportedTokens).length : 0})
+ Tokens ({lane?.supportedTokens ? lane.supportedTokens.length : 0})
@@ -124,8 +123,8 @@ function LaneDrawer({
{lane.supportedTokens &&
- Object.keys(lane.supportedTokens)
- ?.filter((token) => token.toLowerCase().includes(search.toLowerCase()))
+ lane.supportedTokens
+ .filter((token) => token.toLowerCase().includes(search.toLowerCase()))
.map((token, index) => {
const data = getTokenData({
environment,
@@ -135,13 +134,10 @@ function LaneDrawer({
if (!Object.keys(data).length) return null
const logo = getTokenIconUrl(token)
- // Check if token is paused
- const tokenPaused = isTokenPaused(
- data[sourceNetwork.key].decimals,
- lane.supportedTokens?.[token]?.rateLimiterConfig?.[
- inOutbound === LaneFilter.Inbound ? "in" : "out"
- ]
- )
+ // TODO: Fetch rate limits from API for both inbound and outbound
+ // Token pause detection requires rate limiter data from API
+ // A token is paused when rate limit capacity is 0
+ const tokenPaused = false
return (
@@ -179,35 +175,25 @@ function LaneDrawer({
|
{inOutbound === LaneFilter.Outbound
? determineTokenMechanism(
- data[sourceNetwork.key].poolType,
- data[destinationNetwork.key].poolType
+ data[sourceNetwork.key].pool.type,
+ data[destinationNetwork.key].pool.type
)
: determineTokenMechanism(
- data[destinationNetwork.key].poolType,
- data[sourceNetwork.key].poolType
+ data[destinationNetwork.key].pool.type,
+ data[sourceNetwork.key].pool.type
)}
|
- {lane.supportedTokens &&
- displayCapacity(
- data[sourceNetwork.key].decimals,
- token,
- lane.supportedTokens[token]?.rateLimiterConfig?.[
- inOutbound === LaneFilter.Inbound ? "in" : "out"
- ]
- )}
+ {/* TODO: Fetch rate limits from API for both inbound and outbound
+ GET /api/ccip/v1/lanes/by-internal-id/{source}/{destination}/supported-tokens?environment={environment}
+ Response will contain both standard and custom rate limits per token */}
+ Disabled
|
- {lane.supportedTokens && (
-
- )}
+ {/* TODO: Fetch rate limits from API for both inbound and outbound
+ Display refill rate from standard.in/out or custom.in/out based on inOutbound filter */}
+ Disabled
|
)
@@ -217,8 +203,9 @@ function LaneDrawer({
{lane.supportedTokens &&
- Object.keys(lane.supportedTokens)?.filter((lane) => lane.toLowerCase().includes(search.toLowerCase()))
- .length === 0 && <>No tokens found>}
+ lane.supportedTokens.filter((token) => token.toLowerCase().includes(search.toLowerCase())).length === 0 && (
+ <>No tokens found>
+ )}
>
diff --git a/src/components/CCIP/Drawer/TokenDrawer.tsx b/src/components/CCIP/Drawer/TokenDrawer.tsx
index c883f61d77f..77bea831f25 100644
--- a/src/components/CCIP/Drawer/TokenDrawer.tsx
+++ b/src/components/CCIP/Drawer/TokenDrawer.tsx
@@ -8,20 +8,17 @@ import {
SupportedTokenConfig,
Version,
LaneFilter,
- displayCapacity,
determineTokenMechanism,
PoolType,
getTokenData,
LaneConfig,
} from "~/config/data/ccip/index.ts"
-import { isTokenPaused } from "~/config/data/ccip/utils.ts"
import { useState } from "react"
import { ChainType, ExplorerInfo, SupportedChain } from "~/config/index.ts"
import LaneDrawer from "../Drawer/LaneDrawer.tsx"
import TableSearchInput from "../Tables/TableSearchInput.tsx"
import Tabs from "../Tables/Tabs.tsx"
import { Tooltip } from "~/features/common/Tooltip/Tooltip.tsx"
-import RateTooltip from "../Tooltip/RateTooltip.tsx"
function TokenDrawer({
token,
@@ -84,7 +81,7 @@ function TokenDrawer({
console.error(`No token data found for ${token.id} on ${network.key} -> ${destinationChain}`)
return null
}
- const destinationPoolType = destinationTokenData.poolType
+ const destinationPoolType = destinationTokenData.pool.type
if (!destinationPoolType) {
console.error(`No pool type found for ${token.id} on ${network.key} -> ${destinationChain}`)
return null
@@ -100,11 +97,11 @@ function TokenDrawer({
console.error(`No lane data found for ${token.id} on ${network.key} -> ${destinationChain}`)
return null
}
- if (!laneData.supportedTokens) {
+ if (!laneData.supportedTokens || !Array.isArray(laneData.supportedTokens)) {
console.error(`No supported tokens found for ${token.id} on ${network.key} -> ${destinationChain}`)
return null
}
- if (!(token.id in laneData.supportedTokens)) {
+ if (!laneData.supportedTokens.includes(token.id)) {
console.error(`${token.id} not found in supported tokens for ${network.key} -> ${destinationChain}`)
return null
}
@@ -216,13 +213,10 @@ function TokenDrawer({
.map(({ networkDetails, laneData, destinationChain, destinationPoolType }) => {
if (!laneData || !networkDetails) return null
- // Check if token is paused on this lane
- const tokenPaused = isTokenPaused(
- network.tokenDecimals,
- destinationLanes[destinationChain].rateLimiterConfig?.[
- inOutbound === LaneFilter.Inbound ? "in" : "out"
- ]
- )
+ // TODO: Fetch rate limits from API for both inbound and outbound
+ // Token pause detection requires rate limiter data from API
+ // A token is paused when rate limit capacity is 0
+ const tokenPaused = false
return (
@@ -262,21 +256,15 @@ function TokenDrawer({
|
- {displayCapacity(
- network.tokenDecimals,
- network.tokenSymbol,
- destinationLanes[destinationChain].rateLimiterConfig?.[
- inOutbound === LaneFilter.Inbound ? "in" : "out"
- ]
- )}
+ {/* TODO: Fetch rate limits from API for both inbound and outbound
+ GET /api/ccip/v1/lanes/by-internal-id/{source}/{destination}/supported-tokens?environment={environment}
+ Response will contain both standard and custom rate limits per token */}
+ Disabled
|
-
+ {/* TODO: Fetch rate limits from API for both inbound and outbound
+ Display refill rate from standard.in/out or custom.in/out based on inOutbound filter */}
+ Disabled
|
{inOutbound === LaneFilter.Outbound
diff --git a/src/components/CCIP/Search/Search.tsx b/src/components/CCIP/Search/Search.tsx
index f869bf20860..92b0c776971 100644
--- a/src/components/CCIP/Search/Search.tsx
+++ b/src/components/CCIP/Search/Search.tsx
@@ -273,10 +273,8 @@ function Search({ chains, tokens, small, environment, lanes }: SearchProps) {
{lane.sourceNetwork.name} {">"} {lane.destinationNetwork.name}
{!small && (
- {lane?.lane?.supportedTokens ? Object.keys(lane.lane.supportedTokens).length : 0}{" "}
- {lane?.lane?.supportedTokens && Object.keys(lane.lane.supportedTokens).length > 1
- ? "tokens"
- : "token"}
+ {lane?.lane?.supportedTokens ? lane.lane.supportedTokens.length : 0}{" "}
+ {lane?.lane?.supportedTokens && lane.lane.supportedTokens.length > 1 ? "tokens" : "token"}
)}
diff --git a/src/components/CCIP/Tables/TokenChainsTable.tsx b/src/components/CCIP/Tables/TokenChainsTable.tsx
index ca40a294da8..9f3add6065c 100644
--- a/src/components/CCIP/Tables/TokenChainsTable.tsx
+++ b/src/components/CCIP/Tables/TokenChainsTable.tsx
@@ -23,6 +23,7 @@ interface TableProps {
tokenAddress: string
tokenPoolType: PoolType
tokenPoolAddress: string
+ tokenPoolVersion: string
explorer: ExplorerInfo
}[]
token: {
@@ -60,6 +61,9 @@ function TokenChainsTable({ networks, token, lanes, environment }: TableProps) {
| Token address |
Token pool type |
Token pool address |
+ Pool version |
+ Custom finality |
+ Min Blocks required |
@@ -139,6 +143,18 @@ function TokenChainsTable({ networks, token, lanes, environment }: TableProps) {
endLength={6}
/>
+ {network.tokenPoolVersion} |
+
+ {/* TODO: Fetch from API - GET /api/ccip/v1/tokens/{tokenCanonicalSymbol}/finality?environment={environment}
+ Custom finality is derived from minBlockConfirmation > 0
+ Display: "Yes" | "No" | "N/A" (with tooltip for unavailable) */}
+ -
+ |
+
+ {/* TODO: Fetch from API - GET /api/ccip/v1/tokens/{tokenCanonicalSymbol}/finality?environment={environment}
+ Display minBlockConfirmation value or "-" if custom finality is disabled/unavailable */}
+ -
+ |
)
})}
diff --git a/src/components/CCIP/Token/Token.astro b/src/components/CCIP/Token/Token.astro
index 58071e03c39..9ba14b50e4f 100644
--- a/src/components/CCIP/Token/Token.astro
+++ b/src/components/CCIP/Token/Token.astro
@@ -150,8 +150,9 @@ const tokenStructuredData = generateTokenStructuredData(token, environment, chai
tokenSymbol: data[key]?.symbol ?? "",
tokenDecimals: data[key]?.decimals ?? 0,
tokenAddress: data[key]?.tokenAddress ?? "",
- tokenPoolType: data[key]?.poolType,
- tokenPoolAddress: data[key]?.poolAddress ?? "",
+ tokenPoolType: data[key]?.pool.type,
+ tokenPoolAddress: data[key]?.pool.address ?? "",
+ tokenPoolVersion: data[key]?.pool.version ?? "",
explorer: explorer,
chainType: chainType,
}
diff --git a/src/config/cdn.ts b/src/config/cdn.ts
new file mode 100644
index 00000000000..43eb8fbb53c
--- /dev/null
+++ b/src/config/cdn.ts
@@ -0,0 +1,14 @@
+/**
+ * CDN Base URLs and asset path configuration
+ * Centralized configuration for all CDN-hosted assets
+ */
+
+// CloudFront CDN base URL
+export const CLOUDFRONT_CDN_BASE = "https://d2f70xi62kby8n.cloudfront.net"
+
+// Asset-specific paths
+export const TOKEN_ICONS_PATH = `${CLOUDFRONT_CDN_BASE}/tokens`
+export const VERIFIER_LOGOS_PATH = `${CLOUDFRONT_CDN_BASE}/verifiers`
+
+// Other CDNs (for future centralization if needed)
+export const IMGIX_CDN_BASE = "https://smartcontract.imgix.net"
diff --git a/src/config/data/ccip/data.ts b/src/config/data/ccip/data.ts
index 3eec6d88f9e..9773dee205b 100644
--- a/src/config/data/ccip/data.ts
+++ b/src/config/data/ccip/data.ts
@@ -13,9 +13,13 @@ import {
Network,
DecomConfig,
DecommissionedNetwork,
+ VerifiersConfig,
+ Verifier,
+ VerifierType,
} from "./types.ts"
import { determineTokenMechanism } from "./utils.ts"
import { ExplorerInfo, SupportedChain, ChainType } from "@config/types.ts"
+import { VERIFIER_LOGOS_PATH } from "@config/cdn.ts"
import {
directoryToSupportedChain,
getChainIcon,
@@ -42,6 +46,10 @@ import tokensTestnetv120 from "@config/data/ccip/v1_2_0/testnet/tokens.json" wit
import decomMainnetv120 from "@config/data/ccip/v1_2_0/mainnet/decom.json" with { type: "json" }
import decomTestnetv120 from "@config/data/ccip/v1_2_0/testnet/decom.json" with { type: "json" }
+// For verifiers
+import verifiersMainnetv120 from "@config/data/ccip/v1_2_0/mainnet/verifiers.json" with { type: "json" }
+import verifiersTestnetv120 from "@config/data/ccip/v1_2_0/testnet/verifiers.json" with { type: "json" }
+
// Import errors by version
// eslint-disable-next-line camelcase
import * as errors_v1_5_0 from "./errors/v1_5_0/index.ts"
@@ -264,13 +272,14 @@ export const getAllSupportedTokens = (params: { environment: Environment; versio
Object.entries(laneReferenceData).forEach(([destinationChainRdd, destinationLaneReferenceData]) => {
const supportedTokens = destinationLaneReferenceData.supportedTokens
- if (supportedTokens) {
- Object.entries(supportedTokens).forEach(([token, tokenConfig]) => {
+ if (supportedTokens && Array.isArray(supportedTokens)) {
+ supportedTokens.forEach((token) => {
const destinationChain = directoryToSupportedChain(destinationChainRdd)
tokens[token] = tokens[token] || {}
tokens[token][sourceChain] = tokens[token][sourceChain] || {}
- tokens[token][sourceChain][destinationChain] = tokenConfig
+ // Rate limiter config is now in separate files, store empty config
+ tokens[token][sourceChain][destinationChain] = {}
})
}
})
@@ -308,8 +317,8 @@ export const getTokenMechanism = (params: {
const tokenConfig = tokensReferenceData[params.token]
const sourceChainPoolInfo = tokenConfig[sourceChainRdd]
const destinationChainPoolInfo = tokenConfig[destinationChainRdd]
- const sourceChainPoolType = sourceChainPoolInfo.poolType
- const destinationChainPoolType = destinationChainPoolInfo.poolType
+ const sourceChainPoolType = sourceChainPoolInfo.pool.type
+ const destinationChainPoolType = destinationChainPoolInfo.pool.type
const tokenMechanism = determineTokenMechanism(sourceChainPoolType, destinationChainPoolType)
return tokenMechanism
}
@@ -466,7 +475,7 @@ export const getTokensOfChain = ({ chain, filter }: { chain: string; filter: Env
return Object.keys(tokensData).filter((token) => {
const tokenData = tokensData[token]
// Check if tokenData for the given chain exists and isn't 'feeTokenOnly'
- if (tokenData[chain] && tokenData[chain].poolType !== "feeTokenOnly") {
+ if (tokenData[chain] && tokenData[chain].pool.type !== "feeTokenOnly") {
const lanes = getAllTokenLanes({ token, environment: filter })
// Ensure there is at least one lane and that the lane exists for the given chain
return Object.keys(lanes).length > 0 && lanes[chain] && Object.keys(lanes[chain]).length > 0
@@ -585,7 +594,7 @@ export const getChainsOfToken = ({ token, filter }: { token: string; filter: Env
// Get all valid chains for the given token
return Object.entries(tokensData[token])
- .filter(([, tokenData]) => tokenData.poolType !== "feeTokenOnly")
+ .filter(([, tokenData]) => tokenData.pool.type !== "feeTokenOnly")
.filter(([chain]) => {
const lanes = getAllTokenLanes({ token, environment: filter })
return Object.keys(lanes).length > 0 && lanes[chain] && Object.keys(lanes[chain]).length > 0
@@ -669,11 +678,13 @@ export function getAllTokenLanes({
for (const destinationChain in sourceData) {
const destinationData = sourceData[destinationChain]
- // Check if the token is supported
- if (destinationData?.supportedTokens?.[token]) {
+ // Check if the token is supported (supportedTokens is now an array)
+ const supportedTokens = destinationData?.supportedTokens
+ if (Array.isArray(supportedTokens) && supportedTokens.includes(token)) {
allDestinationLanes[sourceChain] = {
...allDestinationLanes[sourceChain],
- [destinationChain]: destinationData.supportedTokens[token],
+ // Rate limiter config is now in separate files, store empty config
+ [destinationChain]: {},
}
}
}
@@ -815,3 +826,233 @@ export const getDecommissionedNetwork = ({ chain, filter }: { chain: string; fil
const decommissionedChains = getAllDecommissionedNetworks({ filter })
return decommissionedChains.find((network) => network.chain === chain)
}
+
+// ============================================================================
+// Verifier utilities
+// ============================================================================
+
+/**
+ * Load verifiers data for a specific environment and version
+ */
+export const loadVerifiersData = ({ environment, version }: { environment: Environment; version: Version }) => {
+ let verifiersReferenceData: VerifiersConfig
+
+ if (environment === Environment.Mainnet && version === Version.V1_2_0) {
+ verifiersReferenceData = verifiersMainnetv120 as unknown as VerifiersConfig
+ } else if (environment === Environment.Testnet && version === Version.V1_2_0) {
+ verifiersReferenceData = verifiersTestnetv120 as unknown as VerifiersConfig
+ } else {
+ throw new Error(`Invalid environment/version combination for verifiers: ${environment}/${version}`)
+ }
+
+ return { verifiersReferenceData }
+}
+
+/**
+ * Get logo URL for a verifier by ID
+ * Uses CloudFront CDN, same infrastructure as token icons
+ */
+export const getVerifierLogoUrl = (verifierId: string): string => {
+ return `${VERIFIER_LOGOS_PATH}/${verifierId}.svg`
+}
+
+/**
+ * Map verifier type to display-friendly name
+ */
+export const getVerifierTypeDisplay = (type: VerifierType): string => {
+ const VERIFIER_TYPE_DISPLAY: Record = {
+ committee: "Committee",
+ api: "API",
+ }
+
+ return VERIFIER_TYPE_DISPLAY[type] || type
+}
+
+/**
+ * Get all verifiers for a specific environment as a flattened list
+ */
+export const getAllVerifiers = ({
+ environment,
+ version = Version.V1_2_0,
+}: {
+ environment: Environment
+ version?: Version
+}): Verifier[] => {
+ const { verifiersReferenceData } = loadVerifiersData({ environment, version })
+
+ const verifiers: Verifier[] = []
+
+ // Flatten the network -> address -> metadata structure
+ for (const [networkId, addressMap] of Object.entries(verifiersReferenceData)) {
+ for (const [address, metadata] of Object.entries(addressMap)) {
+ verifiers.push({
+ ...metadata,
+ network: networkId,
+ address,
+ logo: getVerifierLogoUrl(metadata.id),
+ })
+ }
+ }
+
+ // Sort by verifier name, then by network
+ return verifiers.sort((a, b) => {
+ const nameComparison = a.name.localeCompare(b.name)
+ if (nameComparison !== 0) return nameComparison
+ return a.network.localeCompare(b.network)
+ })
+}
+
+/**
+ * Get all verifiers for a specific network
+ */
+export const getVerifiersByNetwork = ({
+ networkId,
+ environment,
+ version = Version.V1_2_0,
+}: {
+ networkId: string
+ environment: Environment
+ version?: Version
+}): Verifier[] => {
+ const { verifiersReferenceData } = loadVerifiersData({ environment, version })
+
+ const addressMap = verifiersReferenceData[networkId]
+ if (!addressMap) {
+ return []
+ }
+
+ const verifiers: Verifier[] = []
+ for (const [address, metadata] of Object.entries(addressMap)) {
+ verifiers.push({
+ ...metadata,
+ network: networkId,
+ address,
+ logo: getVerifierLogoUrl(metadata.id),
+ })
+ }
+
+ return verifiers.sort((a, b) => a.name.localeCompare(b.name))
+}
+
+/**
+ * Get all verifiers of a specific type (committee or api)
+ */
+export const getVerifiersByType = ({
+ type,
+ environment,
+ version = Version.V1_2_0,
+}: {
+ type: VerifierType
+ environment: Environment
+ version?: Version
+}): Verifier[] => {
+ const allVerifiers = getAllVerifiers({ environment, version })
+ return allVerifiers.filter((verifier) => verifier.type === type)
+}
+
+/**
+ * Get all networks where a specific verifier exists (by verifier ID)
+ */
+export const getVerifierById = ({
+ id,
+ environment,
+ version = Version.V1_2_0,
+}: {
+ id: string
+ environment: Environment
+ version?: Version
+}): Verifier[] => {
+ const allVerifiers = getAllVerifiers({ environment, version })
+ return allVerifiers.filter((verifier) => verifier.id === id)
+}
+
+/**
+ * Get a specific verifier by network and address
+ */
+export const getVerifier = ({
+ networkId,
+ address,
+ environment,
+ version = Version.V1_2_0,
+}: {
+ networkId: string
+ address: string
+ environment: Environment
+ version?: Version
+}): Verifier | undefined => {
+ const { verifiersReferenceData } = loadVerifiersData({ environment, version })
+
+ const addressMap = verifiersReferenceData[networkId]
+ if (!addressMap) {
+ return undefined
+ }
+
+ const metadata = addressMap[address]
+ if (!metadata) {
+ return undefined
+ }
+
+ return {
+ ...metadata,
+ network: networkId,
+ address,
+ logo: getVerifierLogoUrl(metadata.id),
+ }
+}
+
+/**
+ * Get all network IDs where a specific verifier exists
+ * Similar to getChainsOfToken for tokens
+ */
+export const getNetworksOfVerifier = ({
+ id,
+ environment,
+ version = Version.V1_2_0,
+}: {
+ id: string
+ environment: Environment
+ version?: Version
+}): string[] => {
+ const verifiers = getVerifierById({ id, environment, version })
+ return verifiers.map((v) => v.network)
+}
+
+/**
+ * Get unique verifiers for display (deduplicated by ID)
+ * Returns one entry per verifier with totalNetworks count
+ * Useful for landing page display where each verifier should appear once
+ */
+export const getAllUniqueVerifiers = ({
+ environment,
+ version = Version.V1_2_0,
+}: {
+ environment: Environment
+ version?: Version
+}): Array<{
+ id: string
+ name: string
+ type: VerifierType
+ logo: string
+ totalNetworks: number
+}> => {
+ const allVerifiers = getAllVerifiers({ environment, version })
+
+ // Get unique verifier IDs
+ const uniqueIds = Array.from(new Set(allVerifiers.map((v) => v.id)))
+
+ // Map to display format with network count
+ return uniqueIds
+ .map((id) => {
+ const instances = allVerifiers.filter((v) => v.id === id)
+ const firstInstance = instances[0]
+
+ return {
+ id,
+ name: firstInstance.name,
+ type: firstInstance.type,
+ logo: firstInstance.logo,
+ totalNetworks: instances.length,
+ }
+ })
+ .sort((a, b) => a.name.localeCompare(b.name))
+}
diff --git a/src/config/data/ccip/types.ts b/src/config/data/ccip/types.ts
index e12d25d1828..ac6f97c6547 100644
--- a/src/config/data/ccip/types.ts
+++ b/src/config/data/ccip/types.ts
@@ -17,7 +17,7 @@ export type SupportedTokensConfig = {
}
export type LaneConfig = {
- supportedTokens?: SupportedTokensConfig
+ supportedTokens?: string[]
rateLimiterConfig?: RateLimiterConfig
onRamp: {
address: string
@@ -36,11 +36,19 @@ export type DestinationsLaneConfig = {
export type PoolType = "lockRelease" | "burnMint" | "usdc" | "feeTokenOnly"
+export type PoolRawType = "LockRelease" | "BurnMint" | "usdc"
+
+type Pool = {
+ address?: string
+ rawType: PoolRawType
+ type: PoolType
+ version: string
+}
+
type PoolInfo = {
tokenAddress: string
allowListEnabled: boolean
- poolAddress?: string
- poolType: PoolType
+ pool: Pool
name?: string
symbol: string
decimals: number
@@ -232,3 +240,24 @@ export interface DecommissionedNetwork {
explorer: ExplorerInfo
chainType: ChainType
}
+
+// Verifier types
+export type VerifierType = "committee" | "api"
+
+export interface VerifierMetadata {
+ id: string
+ name: string
+ type: VerifierType
+}
+
+export interface VerifiersConfig {
+ [networkId: string]: {
+ [address: string]: VerifierMetadata
+ }
+}
+
+export interface Verifier extends VerifierMetadata {
+ network: string
+ address: string
+ logo: string
+}
diff --git a/src/config/data/ccip/v1_2_0/mainnet/lanes.json b/src/config/data/ccip/v1_2_0/mainnet/lanes.json
index 7693213e7e8..238879c00b1 100644
--- a/src/config/data/ccip/v1_2_0/mainnet/lanes.json
+++ b/src/config/data/ccip/v1_2_0/mainnet/lanes.json
@@ -21,22 +21,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["W0G"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -48,22 +33,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["W0G"]
},
"hyperliquid-mainnet": {
"offRamp": {
@@ -86,78 +56,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USDC", "USDT", "W0G", "wstETH"]
},
"monad-mainnet": {
"offRamp": {
@@ -193,36 +92,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1"]
}
},
"abstract-mainnet": {
@@ -317,50 +187,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USD1", "brBTC", "uniBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -383,22 +210,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -454,64 +266,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1", "brBTC", "uniBTC"]
},
"plasma-mainnet": {
"offRamp": {
@@ -534,22 +289,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"xdai-mainnet": {
"offRamp": {
@@ -585,22 +325,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -612,36 +337,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -653,134 +349,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NXPC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "LBTC", "LEND", "NXPC", "SHIB", "SolvBTC", "YBTC.B", "savBTC", "xSolvBTC"]
},
"core-mainnet": {
"offRamp": {
@@ -803,218 +372,23 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- },
- "out": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "GHO",
+ "GRT",
+ "LEND",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "wstLINK",
+ "xSILO",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -1026,246 +400,25 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ORNG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BYTES",
+ "GHO",
+ "GRT",
+ "LBTC",
+ "LEND",
+ "MYST",
+ "Memento",
+ "ORNG",
+ "SHIB",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "wstLINK",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -1277,50 +430,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -1332,148 +442,18 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "SolvBTC",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -1485,64 +465,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "BOLD", "USDC", "USDM"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -1554,36 +477,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -1606,22 +500,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"everclear-mainnet": {
"offRamp": {
@@ -1644,470 +523,41 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- },
- "out": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EmCH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TREE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BONE",
+ "BYTES",
+ "EmCH",
+ "GHO",
+ "LBTC",
+ "LEASH",
+ "LEND",
+ "MYST",
+ "Memento",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "SolvBTC",
+ "TREE",
+ "USDC",
+ "USDM",
+ "YBTC.B",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "oXAUT",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "tETH",
+ "wstLINK",
+ "wstPOL",
+ "xSILO",
+ "xSolvBTC"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -2119,134 +569,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- },
- "out": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "LEND", "Memento", "SolvBTC", "USDC", "USDM", "wstLINK", "wstPOL", "xSolvBTC"]
},
"monad-mainnet": {
"offRamp": {
@@ -2258,22 +581,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"nexon-mainnet-henesys": {
"offRamp": {
@@ -2296,36 +604,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "savUSD"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -2337,36 +616,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"sei-mainnet": {
"offRamp": {
@@ -2378,36 +628,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "VRTX"]
},
"shibarium-mainnet": {
"offRamp": {
@@ -2430,22 +651,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -2457,78 +663,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "LBTC", "SILO", "VRTX", "xSILO"]
},
"stable-mainnet": {
"offRamp": {
@@ -2540,22 +675,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"wemix-mainnet": {
"offRamp": {
@@ -2567,22 +687,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -2594,22 +699,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
}
},
"berachain-mainnet": {
@@ -2634,50 +724,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "SolvBTC.BERA", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -2689,78 +736,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "beraBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BR", "SolvBTC", "SolvBTC.BERA", "beraBTC", "xSolvBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -2772,50 +748,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "DOLO", "sDOLA"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -2827,50 +760,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "BR", "sDOLA"]
},
"ethereum-mainnet-worldchain-1": {
"offRamp": {
@@ -2904,162 +794,19 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BOLD",
+ "BR",
+ "DOLO",
+ "LBTC",
+ "SolvBTC",
+ "SolvBTC.BERA",
+ "brBTC",
+ "pufETH",
+ "sDOLA",
+ "uniBTC",
+ "xSolvBTC"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -3106,22 +853,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "THE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["THE"]
},
"mainnet": {
"offRamp": {
@@ -3146,22 +878,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"bsc-mainnet": {
"offRamp": {
@@ -3173,36 +890,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BTR", "YBTC.B"]
},
"mainnet": {
"offRamp": {
@@ -3214,106 +902,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "50000000000",
- "isEnabled": true,
- "rate": "10000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "50000000000",
- "isEnabled": true,
- "rate": "10000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "18000000000000000000",
- "isEnabled": true,
- "rate": "5000000000000000"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "18000000000000000000",
- "isEnabled": true,
- "rate": "5000000000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BTR", "USDC", "USDT", "WETH", "YBTC.B", "uniBTC", "wstETH"]
},
"plasma-mainnet": {
"offRamp": {
@@ -3325,22 +914,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"plume-mainnet": {
"offRamp": {
@@ -3352,22 +926,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"solana-mainnet": {
"offRamp": {
@@ -3379,22 +938,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
}
},
"bitcoin-mainnet-bob-1": {
@@ -3408,36 +952,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"berachain-mainnet": {
"offRamp": {
@@ -3449,50 +964,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "SolvBTC.BERA", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -3504,78 +976,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOB", "SolvBTC", "SolvBTC.BERA", "SolvBTC.JUP", "xSolvBTC"]
},
"corn-mainnet": {
"offRamp": {
@@ -3598,36 +999,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -3639,50 +1011,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "USDT", "xSolvBTC"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -3694,36 +1023,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -3735,36 +1035,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-zksync-1": {
"offRamp": {
@@ -3776,36 +1047,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"mainnet": {
"offRamp": {
@@ -3817,106 +1059,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOB", "SolvBTC", "SolvBTC.BERA", "USDC", "USDT", "uniBTC", "xSolvBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -3928,36 +1071,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"sei-mainnet": {
"offRamp": {
@@ -3969,36 +1083,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"soneium-mainnet": {
"offRamp": {
@@ -4010,50 +1095,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "SolvBTC.JUP", "xSolvBTC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -4065,22 +1107,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
}
},
"bitcoin-mainnet-botanix": {
@@ -4094,22 +1121,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
}
},
"bitcoin-mainnet-bsquared-1": {
@@ -4123,22 +1135,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "stBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["stBTC"]
},
"mainnet": {
"offRamp": {
@@ -4150,22 +1147,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["uniBTC"]
},
"soneium-mainnet": {
"offRamp": {
@@ -4249,50 +1231,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USD1", "brBTC", "uniBTC"]
},
"avalanche-mainnet": {
"offRamp": {
@@ -4304,134 +1243,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NXPC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "LBTC", "LEND", "NXPC", "SHIB", "SolvBTC", "YBTC.B", "savBTC", "xSolvBTC"]
},
"berachain-mainnet": {
"offRamp": {
@@ -4443,78 +1255,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "beraBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BR", "SolvBTC", "SolvBTC.BERA", "beraBTC", "xSolvBTC"]
},
"binance-smart-chain-mainnet-opbnb-1": {
"offRamp": {
@@ -4526,22 +1267,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "THE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["THE"]
},
"bitcoin-mainnet-bitlayer-1": {
"offRamp": {
@@ -4553,36 +1279,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BTR", "YBTC.B"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -4594,78 +1291,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOB", "SolvBTC", "SolvBTC.BERA", "SolvBTC.JUP", "xSolvBTC"]
},
"bitcoin-mainnet-bsquared-1": {
"offRamp": {
@@ -4677,22 +1303,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "stBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["stBTC"]
},
"bittensor-mainnet": {
"offRamp": {
@@ -4715,274 +1326,27 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CKP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "28000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "28000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "RDP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "580000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "580000000000000000"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "CKP",
+ "DOBO",
+ "IXT",
+ "LAND",
+ "LEND",
+ "RDP",
+ "SDT",
+ "STABLE",
+ "STBU",
+ "SolvBTC",
+ "USDFI",
+ "VSN",
+ "WECO",
+ "WMTX",
+ "WSDM",
+ "mBTC",
+ "wUSDx",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -4994,330 +1358,31 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SNOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13888880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13888880000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10500000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- }
- }
- },
- "WHY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "AISTR",
+ "BETS",
+ "BKN",
+ "BR",
+ "CHEX",
+ "DOBO",
+ "IXT",
+ "LBTC",
+ "LEND",
+ "RIZE",
+ "SAS",
+ "SKYA",
+ "SNOW",
+ "SolvBTC",
+ "TRADE",
+ "UNIO",
+ "USDO",
+ "WHY",
+ "WMTX",
+ "wUSDx",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-blast-1": {
"offRamp": {
@@ -5340,22 +1405,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "enzoBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["enzoBTC"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -5367,36 +1417,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -5408,92 +1429,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["AISTR", "SolvBTC", "TURTLE", "savBTC", "savUSD", "xSolvBTC"]
},
"ethereum-mainnet-mantle-1": {
"offRamp": {
@@ -5516,22 +1452,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -5543,36 +1464,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "wUSDx"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -5584,22 +1476,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -5633,50 +1510,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xGold", "xSolvBTC"]
},
"kaia-mainnet": {
"offRamp": {
@@ -5699,806 +1533,65 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BANK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BARD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EDEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "JCT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mwBETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "46000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "46000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "sUSD1+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TREE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TURBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000000",
- "isEnabled": true,
- "rate": "1944444400000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000000",
- "isEnabled": true,
- "rate": "1944444400000000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- }
- }
- },
- "USD0": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDf": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10500000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- }
- }
- },
- "USUAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "VOOI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WHY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "1XMM",
+ "AISTR",
+ "BANK",
+ "BARD",
+ "BETS",
+ "BKN",
+ "BOB",
+ "BONE",
+ "BR",
+ "BTR",
+ "CHEX",
+ "DOBO",
+ "EDEN",
+ "FF",
+ "FHE",
+ "IXT",
+ "JCT",
+ "LBTC",
+ "LEASH",
+ "LEND",
+ "RIZE",
+ "SAS",
+ "SDT",
+ "SHIB",
+ "SKYA",
+ "STABLE",
+ "SolvBTC",
+ "SolvBTC.BERA",
+ "TRADE",
+ "TREE",
+ "TURBO",
+ "TURTLE",
+ "UNIO",
+ "USD0",
+ "USD1",
+ "USDFI",
+ "USDO",
+ "USDf",
+ "USUAL",
+ "VOOI",
+ "VSN",
+ "WECO",
+ "WHY",
+ "WLFI",
+ "WMTX",
+ "WSDM",
+ "brBTC",
+ "mBTC",
+ "mwBETH",
+ "sUSD1+",
+ "savBTC",
+ "savUSD",
+ "uniBTC",
+ "wUSDx",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -6510,204 +1603,22 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "METO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "76923077000000000000000000",
- "isEnabled": true,
- "rate": "21367520000000000000000"
- },
- "out": {
- "capacity": "76923077000000000000000000",
- "isEnabled": true,
- "rate": "21367520000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "THE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000000"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "1XMM",
+ "BETS",
+ "IXT",
+ "LAND",
+ "LEND",
+ "METO",
+ "RIZE",
+ "SolvBTC",
+ "THE",
+ "TRADE",
+ "WECO",
+ "WSDM",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"mind-mainnet": {
"offRamp": {
@@ -6719,22 +1630,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FHE"]
},
"monad-mainnet": {
"offRamp": {
@@ -6746,22 +1642,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"plume-mainnet": {
"offRamp": {
@@ -6784,36 +1665,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"sei-mainnet": {
"offRamp": {
@@ -6825,36 +1677,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -6866,190 +1689,21 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5800000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ILMT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000",
- "isEnabled": true,
- "rate": "277777777778"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2777777777780000000000"
- }
- }
- },
- "KNET": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000",
- "isEnabled": true,
- "rate": "34722"
- },
- "out": {
- "capacity": "7500000000000000000",
- "isEnabled": true,
- "rate": "347220000000000"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "57870"
- },
- "out": {
- "capacity": "50000000000000000000",
- "isEnabled": true,
- "rate": "578700000000000"
- }
- }
- },
- "USELESS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "XLAB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BR",
+ "FHE",
+ "ILMT",
+ "KNET",
+ "MEW",
+ "SolvBTC",
+ "SolvBTC.JUP",
+ "USELESS",
+ "WLFI",
+ "WMTX",
+ "XLAB",
+ "elizaOS",
+ "xSolvBTC"
+ ]
},
"soneium-mainnet": {
"offRamp": {
@@ -7061,36 +1715,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "1157400000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "1157400000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SKYA", "SolvBTC.JUP"]
},
"sonic-mainnet": {
"offRamp": {
@@ -7102,50 +1727,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "mBTC", "wUSDx"]
},
"stable-mainnet": {
"offRamp": {
@@ -7157,22 +1739,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"tac-mainnet": {
"offRamp": {
@@ -7195,22 +1762,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -7246,22 +1798,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -7295,22 +1832,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -7366,78 +1888,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "USDT"]
},
"matic-mainnet": {
"offRamp": {
@@ -7552,36 +2003,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "uniBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -7632,22 +2054,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SDL"]
},
"mainnet": {
"offRamp": {
@@ -7659,78 +2066,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SDL", "SHIB"]
}
},
"ethereum-mainnet-arbitrum-1": {
@@ -7744,22 +2080,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["W0G"]
},
"apechain-mainnet": {
"offRamp": {
@@ -7793,218 +2114,23 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "GHO",
+ "GRT",
+ "LEND",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "wstLINK",
+ "xSILO",
+ "xSolvBTC"
+ ]
},
"berachain-mainnet": {
"offRamp": {
@@ -8016,50 +2142,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "DOLO", "sDOLA"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -8071,36 +2154,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -8112,274 +2166,27 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CKP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "28000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "28000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "RDP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "580000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "580000000000000000"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "CKP",
+ "DOBO",
+ "IXT",
+ "LAND",
+ "LEND",
+ "RDP",
+ "SDT",
+ "STABLE",
+ "STBU",
+ "SolvBTC",
+ "USDFI",
+ "VSN",
+ "WECO",
+ "WMTX",
+ "WSDM",
+ "mBTC",
+ "wUSDx",
+ "xSolvBTC"
+ ]
},
"celo-mainnet": {
"offRamp": {
@@ -8413,22 +2220,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SDL"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -8440,596 +2232,50 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- },
- "out": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- },
- "out": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- },
- "out": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- },
- "out": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "APU",
+ "BETS",
+ "BOLD",
+ "DOBO",
+ "DPI",
+ "EARNM",
+ "FLUID",
+ "GHO",
+ "GRT",
+ "IBTC",
+ "IXT",
+ "LDY",
+ "LEND",
+ "MVI",
+ "NUON",
+ "OVER",
+ "SolvBTC",
+ "USD+",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "W0G",
+ "WETH",
+ "WHSK",
+ "WMTX",
+ "WOLF",
+ "ZUN",
+ "clBTC",
+ "dsETH",
+ "hyETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xSolvBTC",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-blast-1": {
"offRamp": {
@@ -9041,22 +2287,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"ethereum-mainnet-hashkey-1": {
"offRamp": {
@@ -9068,22 +2299,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["WHSK"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -9095,50 +2311,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -9150,64 +2323,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xRPL", "xSolvBTC", "xrETH"]
},
"ethereum-mainnet-mantle-1": {
"offRamp": {
@@ -9219,22 +2335,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"ethereum-mainnet-mode-1": {
"offRamp": {
@@ -9246,22 +2347,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -9273,232 +2359,24 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "MILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "115740000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "115740000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "IBTC",
+ "MILO",
+ "OVER",
+ "SD",
+ "USDC",
+ "USDM",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "sDOLA",
+ "stTAO",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -9510,36 +2388,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -9562,22 +2411,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- }
- }
+ "supportedTokens": ["mBTC"]
},
"ethereum-mainnet-zksync-1": {
"offRamp": {
@@ -9589,22 +2423,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"everclear-mainnet": {
"offRamp": {
@@ -9638,1016 +2457,80 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2593000000000000000000",
- "isEnabled": true,
- "rate": "180000000000000000"
- },
- "out": {
- "capacity": "2593000000000000000000",
- "isEnabled": true,
- "rate": "180000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "25000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "25000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "egETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "ETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "34700000000000000"
- },
- "out": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "34700000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mDLP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "416000000000000000000000",
- "isEnabled": true,
- "rate": "4810000000000000000"
- },
- "out": {
- "capacity": "416000000000000000000000",
- "isEnabled": true,
- "rate": "4810000000000000000"
- }
- }
- },
- "mmETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "mstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "mswETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3333000000000000000000",
- "isEnabled": true,
- "rate": "230000000000000000"
- },
- "out": {
- "capacity": "3333000000000000000000",
- "isEnabled": true,
- "rate": "230000000000000000"
- }
- }
- },
- "NPC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000",
- "isEnabled": true,
- "rate": "4000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000",
- "isEnabled": true,
- "rate": "4000000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "APU",
+ "BETS",
+ "BOLD",
+ "BONE",
+ "DFX",
+ "DOBO",
+ "DOLO",
+ "DPI",
+ "EARNM",
+ "ETHx",
+ "FHE",
+ "FLUID",
+ "GHO",
+ "IBTC",
+ "IXT",
+ "LDY",
+ "LEASH",
+ "LEND",
+ "MVI",
+ "NPC",
+ "NUON",
+ "OVER",
+ "SD",
+ "SDL",
+ "SDT",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "STABLE",
+ "STBU",
+ "SolvBTC",
+ "USD+",
+ "USDC",
+ "USDFI",
+ "USDM",
+ "VSN",
+ "W0G",
+ "WECO",
+ "WETH",
+ "WFRAGSOL",
+ "WMTX",
+ "WOLF",
+ "WSDM",
+ "ZUN",
+ "clBTC",
+ "dsETH",
+ "egETH",
+ "hyETH",
+ "mBTC",
+ "mDLP",
+ "mmETH",
+ "mstETH",
+ "mswETH",
+ "pufETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "syrupUSDC",
+ "tETH",
+ "uniBTC",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xRPL",
+ "xSILO",
+ "xSolvBTC",
+ "xrETH",
+ "zunETH",
+ "zunUSD"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -10659,218 +2542,23 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "DFX",
+ "EARNM",
+ "IXT",
+ "LAND",
+ "LEND",
+ "SDM",
+ "STBU",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "WECO",
+ "WSDM",
+ "wstLINK",
+ "xSolvBTC"
+ ]
},
"mind-mainnet": {
"offRamp": {
@@ -10904,50 +2592,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO"]
},
"sei-mainnet": {
"offRamp": {
@@ -10959,22 +2604,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"shibarium-mainnet": {
"offRamp": {
@@ -10997,64 +2627,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "USDC", "WFRAGSOL", "WMTX"]
},
"soneium-mainnet": {
"offRamp": {
@@ -11077,92 +2650,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "SILO", "VRTX", "mBTC", "wUSDx", "xSILO"]
},
"stable-mainnet": {
"offRamp": {
@@ -11185,22 +2673,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -11212,22 +2685,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
}
},
"ethereum-mainnet-base-1": {
@@ -11241,22 +2699,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["W0G"]
},
"apechain-mainnet": {
"offRamp": {
@@ -11279,22 +2722,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"avalanche-mainnet": {
"offRamp": {
@@ -11306,246 +2734,25 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ORNG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BYTES",
+ "GHO",
+ "GRT",
+ "LBTC",
+ "LEND",
+ "MYST",
+ "Memento",
+ "ORNG",
+ "SHIB",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "wstLINK",
+ "xSolvBTC"
+ ]
},
"berachain-mainnet": {
"offRamp": {
@@ -11557,50 +2764,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "BR", "sDOLA"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -11612,50 +2776,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "USDT", "xSolvBTC"]
},
"bittensor-mainnet": {
"offRamp": {
@@ -11678,330 +2799,31 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SNOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13888880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13888880000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10500000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- }
- }
- },
- "WHY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "AISTR",
+ "BETS",
+ "BKN",
+ "BR",
+ "CHEX",
+ "DOBO",
+ "IXT",
+ "LBTC",
+ "LEND",
+ "RIZE",
+ "SAS",
+ "SKYA",
+ "SNOW",
+ "SolvBTC",
+ "TRADE",
+ "UNIO",
+ "USDO",
+ "WHY",
+ "WMTX",
+ "wUSDx",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"celo-mainnet": {
"offRamp": {
@@ -12013,22 +2835,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"core-mainnet": {
"offRamp": {
@@ -12051,596 +2858,50 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- },
- "out": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- },
- "out": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "GRT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11574074070000000000"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- },
- "out": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- },
- "out": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "APU",
+ "BETS",
+ "BOLD",
+ "DOBO",
+ "DPI",
+ "EARNM",
+ "FLUID",
+ "GHO",
+ "GRT",
+ "IBTC",
+ "IXT",
+ "LDY",
+ "LEND",
+ "MVI",
+ "NUON",
+ "OVER",
+ "SolvBTC",
+ "USD+",
+ "USDC",
+ "USDM",
+ "VRTX",
+ "W0G",
+ "WETH",
+ "WHSK",
+ "WMTX",
+ "WOLF",
+ "ZUN",
+ "clBTC",
+ "dsETH",
+ "hyETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xSolvBTC",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-blast-1": {
"offRamp": {
@@ -12652,36 +2913,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "VRTX"]
},
"ethereum-mainnet-hashkey-1": {
"offRamp": {
@@ -12693,36 +2925,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDT", "WHSK"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -12734,50 +2937,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -12789,64 +2949,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["AISTR", "LsETH", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-mode-1": {
"offRamp": {
@@ -12858,50 +2961,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "LINK", "wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -12913,246 +2973,25 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "CRTV",
+ "IBTC",
+ "OVER",
+ "USDC",
+ "USDM",
+ "USDT",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-scroll-1": {
"offRamp": {
@@ -13175,36 +3014,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -13227,22 +3037,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"everclear-mainnet": {
"offRamp": {
@@ -13287,1100 +3082,86 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DIP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- },
- "out": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- },
- "out": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- },
- "out": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "JASMY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "1388888800000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "1388888800000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MEEM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "2780000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "2780000000000000000"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "55000000000000000000000",
- "isEnabled": true,
- "rate": "636574074000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "578703704000000000"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- },
- "out": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NEIRO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "SXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USD0": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870400000000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "USUAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "277800000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "277800000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "XSWAP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "463000000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "463000000000000000000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "ZeUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "AISTR",
+ "APU",
+ "BETS",
+ "BKN",
+ "BOLD",
+ "BONE",
+ "BR",
+ "BYTES",
+ "CHEX",
+ "DIP",
+ "DOBO",
+ "DPI",
+ "EARNM",
+ "FLUID",
+ "GEN",
+ "GHO",
+ "IBTC",
+ "IXT",
+ "JASMY",
+ "LBTC",
+ "LDY",
+ "LEASH",
+ "LEND",
+ "LINK",
+ "LsETH",
+ "MEEM",
+ "MVI",
+ "MYST",
+ "Memento",
+ "NEIRO",
+ "NUON",
+ "OVER",
+ "RIZE",
+ "SAS",
+ "SHIB",
+ "SKYA",
+ "STABUL",
+ "SXT",
+ "SolvBTC",
+ "TRADE",
+ "UNIO",
+ "USD+",
+ "USD0",
+ "USDC",
+ "USDM",
+ "USDO",
+ "USDT",
+ "USUAL",
+ "W0G",
+ "WETH",
+ "WMTX",
+ "WOLF",
+ "XSWAP",
+ "ZUN",
+ "ZeUSD",
+ "brBTC",
+ "clBTC",
+ "dsETH",
+ "hyETH",
+ "oXAUT",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "syrupUSDC",
+ "tETH",
+ "uniBTC",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xGold",
+ "xSolvBTC",
+ "zBTC",
+ "zunETH",
+ "zunUSD"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -14392,274 +3173,27 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LYP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "83333333333300000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "83333333333300000000"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BYTES",
+ "CRTV",
+ "EARNM",
+ "IXT",
+ "LEND",
+ "LYP",
+ "Memento",
+ "RIZE",
+ "STABUL",
+ "SolvBTC",
+ "TRADE",
+ "USDC",
+ "USDM",
+ "XTFBRICK1",
+ "XTFCLOBOND",
+ "wstLINK",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"memento-mainnet": {
"offRamp": {
@@ -14671,36 +3205,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["XTFBRICK1", "XTFCLOBOND"]
},
"monad-mainnet": {
"offRamp": {
@@ -14712,22 +3217,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"plasma-mainnet": {
"offRamp": {
@@ -14739,50 +3229,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -14794,22 +3241,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"ronin-mainnet": {
"offRamp": {
@@ -14821,22 +3253,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"sei-mainnet": {
"offRamp": {
@@ -14848,22 +3265,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"shibarium-mainnet": {
"offRamp": {
@@ -14875,162 +3277,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CANNED": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHIKA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DAMN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FEED": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LUISA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NEKO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIPA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SNOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USAGI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CANNED", "CHIKA", "DAMN", "FEED", "LUISA", "NEKO", "SAS", "SHIPA", "SNOW", "USAGI", "WOW"]
},
"solana-mainnet": {
"offRamp": {
@@ -15042,148 +3289,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "MICHI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "78722220"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "78722220"
- }
- }
- },
- "pippin": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "YNE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "LINK", "MEW", "MICHI", "USDC", "WMTX", "YNE", "elizaOS", "pippin", "zBTC"]
},
"soneium-mainnet": {
"offRamp": {
@@ -15195,22 +3301,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SKYA"]
},
"sonic-mainnet": {
"offRamp": {
@@ -15222,106 +3313,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "BOLD", "LBTC", "USDT", "VRTX", "wUSDx", "zBTC"]
},
"stable-mainnet": {
"offRamp": {
@@ -15333,22 +3325,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"wemix-mainnet": {
"offRamp": {
@@ -15371,22 +3348,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"xdc-mainnet": {
"offRamp": {
@@ -15422,22 +3384,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -15449,36 +3396,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "VRTX"]
},
"mainnet": {
"offRamp": {
@@ -15490,64 +3408,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB"]
}
},
"ethereum-mainnet-hashkey-1": {
@@ -15561,22 +3422,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "enzoBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["enzoBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -15588,22 +3434,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["WHSK"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -15615,36 +3446,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WHSK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDT", "WHSK"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -15656,22 +3458,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"mainnet": {
"offRamp": {
@@ -15683,22 +3470,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
}
},
"ethereum-mainnet-ink-1": {
@@ -15723,50 +3495,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -15778,36 +3507,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -15819,36 +3519,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"celo-mainnet": {
"offRamp": {
@@ -15871,50 +3542,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -15926,50 +3554,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -15981,36 +3566,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -16033,36 +3589,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"mainnet": {
"offRamp": {
@@ -16074,106 +3601,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "YBTC.B", "brBTC", "uniBTC", "wstETH", "xSolvBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -16185,36 +3613,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"monad-mainnet": {
"offRamp": {
@@ -16226,22 +3625,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"plasma-mainnet": {
"offRamp": {
@@ -16253,22 +3637,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"sei-mainnet": {
"offRamp": {
@@ -16280,36 +3649,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"soneium-mainnet": {
"offRamp": {
@@ -16321,36 +3661,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -16373,22 +3684,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
}
},
"ethereum-mainnet-linea-1": {
@@ -16413,148 +3709,18 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "SolvBTC",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "xSolvBTC"
+ ]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -16566,36 +3732,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -16607,92 +3744,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["AISTR", "SolvBTC", "TURTLE", "savBTC", "savUSD", "xSolvBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -16704,64 +3756,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xRPL", "xSolvBTC", "xrETH"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -16773,64 +3768,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["AISTR", "LsETH", "SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -16842,36 +3780,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -16883,22 +3792,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"ethereum-mainnet-scroll-1": {
"offRamp": {
@@ -16932,22 +3826,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"mainnet": {
"offRamp": {
@@ -16959,288 +3838,28 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "33300000000000000000",
- "isEnabled": true,
- "rate": "9250000000000000"
- },
- "out": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "8333333333333333"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "AISTR",
+ "BONE",
+ "LEASH",
+ "LsETH",
+ "SHIB",
+ "SolvBTC",
+ "TURTLE",
+ "WETH",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "rsETH",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "xRPL",
+ "xSolvBTC",
+ "xrETH"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -17252,36 +3871,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"plasma-mainnet": {
"offRamp": {
@@ -17339,22 +3929,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"mainnet": {
"offRamp": {
@@ -17366,92 +3941,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "SHIB", "USD1", "syrupUSDT", "uniBTC"]
}
},
"ethereum-mainnet-mode-1": {
@@ -17465,22 +3955,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"celo-mainnet": {
"offRamp": {
@@ -17503,22 +3978,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -17530,50 +3990,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27770000000000000000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "LINK", "wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -17585,22 +4002,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"mainnet": {
"offRamp": {
@@ -17612,92 +4014,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "sDAI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "69400000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "69400000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "sDAI", "wUSDx"]
},
"sonic-mainnet": {
"offRamp": {
@@ -17709,36 +4026,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "wUSDx"]
}
},
"ethereum-mainnet-optimism-1": {
@@ -17763,64 +4051,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "BOLD", "USDC", "USDM"]
},
"bsc-mainnet": {
"offRamp": {
@@ -17832,36 +4063,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "wUSDx"]
},
"celo-mainnet": {
"offRamp": {
@@ -17873,22 +4075,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"core-mainnet": {
"offRamp": {
@@ -17911,232 +4098,24 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "MILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "115740000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "115740000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "IBTC",
+ "MILO",
+ "OVER",
+ "SD",
+ "USDC",
+ "USDM",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "sDOLA",
+ "stTAO",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -18148,246 +4127,25 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208330000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "CRTV",
+ "IBTC",
+ "OVER",
+ "USDC",
+ "USDM",
+ "USDT",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-hashkey-1": {
"offRamp": {
@@ -18399,22 +4157,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -18426,22 +4169,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"ethereum-mainnet-mode-1": {
"offRamp": {
@@ -18453,22 +4181,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["wUSDx"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -18480,36 +4193,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-zircuit-1": {
"offRamp": {
@@ -18521,22 +4205,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"ethereum-mainnet-zksync-1": {
"offRamp": {
@@ -18548,22 +4217,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"mainnet": {
"offRamp": {
@@ -18575,330 +4229,31 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BONE",
+ "ETHx",
+ "IBTC",
+ "LEASH",
+ "OVER",
+ "SD",
+ "SHIB",
+ "USDC",
+ "USDM",
+ "USDT",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "rsETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "uniBTC",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -18910,64 +4265,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "CRTV", "USDC", "USDM"]
},
"monad-mainnet": {
"offRamp": {
@@ -19012,22 +4310,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -19039,50 +4322,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "USDT", "wUSDx"]
},
"wemix-mainnet": {
"offRamp": {
@@ -19094,22 +4334,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -19169,78 +4394,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "BONE", "LEASH", "LINK", "SHIB"]
}
},
"ethereum-mainnet-taiko-1": {
@@ -19254,36 +4408,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
}
},
"ethereum-mainnet-unichain-1": {
@@ -19297,36 +4422,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -19338,22 +4434,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS"]
},
"celo-mainnet": {
"offRamp": {
@@ -19376,36 +4457,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -19417,36 +4469,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -19458,36 +4481,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"mainnet": {
"offRamp": {
@@ -19499,50 +4493,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC", "uniBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -19554,36 +4505,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"solana-mainnet": {
"offRamp": {
@@ -19595,22 +4517,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -19668,36 +4575,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27777700000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["WLD", "oXAUT"]
},
"solana-mainnet": {
"offRamp": {
@@ -19799,36 +4677,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["brBTC", "uniBTC"]
},
"plasma-mainnet": {
"offRamp": {
@@ -19864,22 +4713,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- }
- }
+ "supportedTokens": ["mBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -19891,22 +4725,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -19918,22 +4737,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["rsETH"]
},
"mainnet": {
"offRamp": {
@@ -19945,78 +4749,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "SHIB", "mBTC", "rsETH"]
}
},
"ethereum-mainnet-zksync-1": {
@@ -20030,22 +4763,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -20057,36 +4775,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -20120,22 +4809,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -20147,22 +4821,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -20174,36 +4833,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -20215,22 +4845,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDM"]
},
"ethereum-mainnet-worldchain-1": {
"offRamp": {
@@ -20253,106 +4868,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1736100000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1736000000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "SolvBTC", "USDM", "xSolvBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -20364,50 +4880,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "USDM", "xSolvBTC"]
}
},
"etherlink-mainnet": {
@@ -20421,22 +4894,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
}
},
"everclear-mainnet": {
@@ -20531,22 +4989,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["xGold"]
}
},
"hemi-mainnet": {
@@ -20595,50 +5038,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xGold", "xSolvBTC"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -20661,134 +5061,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "kHYPE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "SolvBTC", "VSN", "brBTC", "kHYPE", "syrupUSDC", "uniBTC", "xGold", "xSolvBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -20800,22 +5073,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "WHLP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["WHLP"]
}
},
"jovay-mainnet": {
@@ -20829,22 +5087,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"matic-mainnet": {
"offRamp": {
@@ -20913,22 +5156,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "21000000000000000000000000",
- "isEnabled": true,
- "rate": "232000000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "232000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDO"]
}
},
"lens-mainnet": {
@@ -20968,78 +5196,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USDC", "USDT", "W0G", "wstETH"]
},
"ab-mainnet": {
"offRamp": {
@@ -21051,36 +5208,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1"]
},
"abstract-mainnet": {
"offRamp": {
@@ -21114,64 +5242,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1", "brBTC", "uniBTC"]
},
"avalanche-mainnet": {
"offRamp": {
@@ -21183,470 +5254,41 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EmCH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TREE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BONE",
+ "BYTES",
+ "EmCH",
+ "GHO",
+ "LBTC",
+ "LEASH",
+ "LEND",
+ "MYST",
+ "Memento",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "SolvBTC",
+ "TREE",
+ "USDC",
+ "USDM",
+ "YBTC.B",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "oXAUT",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "tETH",
+ "wstLINK",
+ "wstPOL",
+ "xSILO",
+ "xSolvBTC"
+ ]
},
"berachain-mainnet": {
"offRamp": {
@@ -21658,162 +5300,19 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BOLD",
+ "BR",
+ "DOLO",
+ "LBTC",
+ "SolvBTC",
+ "SolvBTC.BERA",
+ "brBTC",
+ "pufETH",
+ "sDOLA",
+ "uniBTC",
+ "xSolvBTC"
+ ]
},
"binance-smart-chain-mainnet-opbnb-1": {
"offRamp": {
@@ -21836,106 +5335,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- },
- "out": {
- "capacity": "114000000000000000000",
- "isEnabled": true,
- "rate": "32000000000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BTR", "USDC", "USDT", "WETH", "YBTC.B", "uniBTC", "wstETH"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -21947,106 +5347,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOB", "SolvBTC", "SolvBTC.BERA", "USDC", "USDT", "uniBTC", "xSolvBTC"]
},
"bitcoin-mainnet-botanix": {
"offRamp": {
@@ -22058,22 +5359,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"bitcoin-mainnet-bsquared-1": {
"offRamp": {
@@ -22085,22 +5371,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["uniBTC"]
},
"bitcoin-merlin-mainnet": {
"offRamp": {
@@ -22134,806 +5405,65 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BANK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BARD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "BTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EDEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "JCT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mwBETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "46000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "46000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.BERA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "sUSD1+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TREE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TURBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000000",
- "isEnabled": true,
- "rate": "1944444400000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000000",
- "isEnabled": true,
- "rate": "1944444400000000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- }
- }
- },
- "USD0": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDf": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10500000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1160000000000000000000"
- }
- }
- },
- "USUAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "VOOI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WHY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "1XMM",
+ "AISTR",
+ "BANK",
+ "BARD",
+ "BETS",
+ "BKN",
+ "BOB",
+ "BONE",
+ "BR",
+ "BTR",
+ "CHEX",
+ "DOBO",
+ "EDEN",
+ "FF",
+ "FHE",
+ "IXT",
+ "JCT",
+ "LBTC",
+ "LEASH",
+ "LEND",
+ "RIZE",
+ "SAS",
+ "SDT",
+ "SHIB",
+ "SKYA",
+ "STABLE",
+ "SolvBTC",
+ "SolvBTC.BERA",
+ "TRADE",
+ "TREE",
+ "TURBO",
+ "TURTLE",
+ "UNIO",
+ "USD0",
+ "USD1",
+ "USDFI",
+ "USDO",
+ "USDf",
+ "USUAL",
+ "VOOI",
+ "VSN",
+ "WECO",
+ "WHY",
+ "WLFI",
+ "WMTX",
+ "WSDM",
+ "brBTC",
+ "mBTC",
+ "mwBETH",
+ "sUSD1+",
+ "savBTC",
+ "savUSD",
+ "uniBTC",
+ "wUSDx",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"celo-mainnet": {
"offRamp": {
@@ -22945,78 +5475,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "USDT"]
},
"core-mainnet": {
"offRamp": {
@@ -23039,36 +5498,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "uniBTC"]
},
"cronos-mainnet": {
"offRamp": {
@@ -23102,78 +5532,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SDL", "SHIB"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -23185,1016 +5544,80 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DOLO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2593000000000000000000",
- "isEnabled": true,
- "rate": "180000000000000000"
- },
- "out": {
- "capacity": "2593000000000000000000",
- "isEnabled": true,
- "rate": "180000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "25000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "25000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "egETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "ETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "34700000000000000"
- },
- "out": {
- "capacity": "500000000000000000000",
- "isEnabled": true,
- "rate": "34700000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mDLP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "416000000000000000000000",
- "isEnabled": true,
- "rate": "4810000000000000000"
- },
- "out": {
- "capacity": "416000000000000000000000",
- "isEnabled": true,
- "rate": "4810000000000000000"
- }
- }
- },
- "mmETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "mstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "mswETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3333000000000000000000",
- "isEnabled": true,
- "rate": "230000000000000000"
- },
- "out": {
- "capacity": "3333000000000000000000",
- "isEnabled": true,
- "rate": "230000000000000000"
- }
- }
- },
- "NPC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "SDL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "207500000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "138880000000000000000"
- }
- }
- },
- "SDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "58000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- },
- "out": {
- "capacity": "7000000000000000000000",
- "isEnabled": true,
- "rate": "81000000000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "231428"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "231428"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "570000000000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "231500000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000",
- "isEnabled": true,
- "rate": "4000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000",
- "isEnabled": true,
- "rate": "4000000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "APU",
+ "BETS",
+ "BOLD",
+ "BONE",
+ "DFX",
+ "DOBO",
+ "DOLO",
+ "DPI",
+ "EARNM",
+ "ETHx",
+ "FHE",
+ "FLUID",
+ "GHO",
+ "IBTC",
+ "IXT",
+ "LDY",
+ "LEASH",
+ "LEND",
+ "MVI",
+ "NPC",
+ "NUON",
+ "OVER",
+ "SD",
+ "SDL",
+ "SDT",
+ "SDY",
+ "SHIB",
+ "SILO",
+ "STABLE",
+ "STBU",
+ "SolvBTC",
+ "USD+",
+ "USDC",
+ "USDFI",
+ "USDM",
+ "VSN",
+ "W0G",
+ "WECO",
+ "WETH",
+ "WFRAGSOL",
+ "WMTX",
+ "WOLF",
+ "WSDM",
+ "ZUN",
+ "clBTC",
+ "dsETH",
+ "egETH",
+ "hyETH",
+ "mBTC",
+ "mDLP",
+ "mmETH",
+ "mstETH",
+ "mswETH",
+ "pufETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "syrupUSDC",
+ "tETH",
+ "uniBTC",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xRPL",
+ "xSILO",
+ "xSolvBTC",
+ "xrETH",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -24206,1100 +5629,86 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "$PAAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "APU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27777777700000000000000"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BKN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "1000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHEX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DIP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- }
- }
- },
- "DOBO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DPI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- },
- "out": {
- "capacity": "741000000000000000000",
- "isEnabled": true,
- "rate": "50000000000000000"
- }
- }
- },
- "dsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- },
- "out": {
- "capacity": "13000000000000000000",
- "isEnabled": true,
- "rate": "900000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- },
- "out": {
- "capacity": "625000000000000000000000",
- "isEnabled": true,
- "rate": "173600000000000000000"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148148148148148148"
- }
- }
- },
- "GEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "hyETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- },
- "out": {
- "capacity": "28000000000000000000",
- "isEnabled": true,
- "rate": "2000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "JASMY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "1388888800000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "1388888800000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LDY": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MEEM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "2780000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "2780000000000000000"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "55000000000000000000000",
- "isEnabled": true,
- "rate": "636574074000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "578703704000000000"
- }
- }
- },
- "MVI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- },
- "out": {
- "capacity": "1111000000000000000000",
- "isEnabled": true,
- "rate": "80000000000000000"
- }
- }
- },
- "MYST": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NEIRO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NUON": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "suBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- },
- "out": {
- "capacity": "8000000000000000000",
- "isEnabled": true,
- "rate": "92600000000000"
- }
- }
- },
- "suETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1700000000000000"
- }
- }
- },
- "suUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "2314000000000000000"
- }
- }
- },
- "SXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "UNIO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- },
- "out": {
- "capacity": "15000000000000000000000000",
- "isEnabled": true,
- "rate": "520000000000000000000"
- }
- }
- },
- "USD+": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- },
- "out": {
- "capacity": "200000000000",
- "isEnabled": true,
- "rate": "55000000"
- }
- }
- },
- "USD0": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5500000000000000000000000",
- "isEnabled": true,
- "rate": "63657440000000000000"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "USUAL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- },
- "out": {
- "capacity": "3000000000000000000000000",
- "isEnabled": true,
- "rate": "35000000000000000000"
- }
- }
- },
- "W0G": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "wOETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "277800000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "277800000000000000"
- }
- }
- },
- "WOLF": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "XSWAP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "463000000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "463000000000000000000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "ZeUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "$PAAL",
+ "AISTR",
+ "APU",
+ "BETS",
+ "BKN",
+ "BOLD",
+ "BONE",
+ "BR",
+ "BYTES",
+ "CHEX",
+ "DIP",
+ "DOBO",
+ "DPI",
+ "EARNM",
+ "FLUID",
+ "GEN",
+ "GHO",
+ "IBTC",
+ "IXT",
+ "JASMY",
+ "LBTC",
+ "LDY",
+ "LEASH",
+ "LEND",
+ "LINK",
+ "LsETH",
+ "MEEM",
+ "MVI",
+ "MYST",
+ "Memento",
+ "NEIRO",
+ "NUON",
+ "OVER",
+ "RIZE",
+ "SAS",
+ "SHIB",
+ "SKYA",
+ "STABUL",
+ "SXT",
+ "SolvBTC",
+ "TRADE",
+ "UNIO",
+ "USD+",
+ "USD0",
+ "USDC",
+ "USDM",
+ "USDO",
+ "USDT",
+ "USUAL",
+ "W0G",
+ "WETH",
+ "WMTX",
+ "WOLF",
+ "XSWAP",
+ "ZUN",
+ "ZeUSD",
+ "brBTC",
+ "clBTC",
+ "dsETH",
+ "hyETH",
+ "oXAUT",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "suBTC",
+ "suETH",
+ "suUSD",
+ "syrupUSDC",
+ "tETH",
+ "uniBTC",
+ "wOETH",
+ "wUSDx",
+ "wstLINK",
+ "xGold",
+ "xSolvBTC",
+ "zBTC",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-blast-1": {
"offRamp": {
@@ -25311,64 +5720,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB"]
},
"ethereum-mainnet-hashkey-1": {
"offRamp": {
@@ -25380,22 +5732,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -25407,106 +5744,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "SolvBTC", "YBTC.B", "brBTC", "uniBTC", "wstETH", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -25518,288 +5756,28 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "AISTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "avUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "TURTLE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "33300000000000000000",
- "isEnabled": true,
- "rate": "9250000000000000"
- },
- "out": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "8333333333333333"
- }
- }
- },
- "xrETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xRPL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "AISTR",
+ "BONE",
+ "LEASH",
+ "LsETH",
+ "SHIB",
+ "SolvBTC",
+ "TURTLE",
+ "WETH",
+ "avBTC",
+ "avETH",
+ "avETHx",
+ "avUSD",
+ "avUSDx",
+ "rsETH",
+ "savBTC",
+ "savETH",
+ "savUSD",
+ "xRPL",
+ "xSolvBTC",
+ "xrETH"
+ ]
},
"ethereum-mainnet-mantle-1": {
"offRamp": {
@@ -25811,92 +5789,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "SHIB", "USD1", "syrupUSDT", "uniBTC"]
},
"ethereum-mainnet-mode-1": {
"offRamp": {
@@ -25908,92 +5801,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "sDAI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "69400000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "69400000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "sDAI", "wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -26005,330 +5813,31 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "clBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ETHx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "56000000000000000"
- }
- }
- },
- "IBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- },
- "out": {
- "capacity": "450000000",
- "isEnabled": true,
- "rate": "83300"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "OVER": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- },
- "out": {
- "capacity": "384000000000000000000000",
- "isEnabled": true,
- "rate": "4444000000000000000"
- }
- }
- },
- "sDOLA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "sINV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000",
- "isEnabled": true,
- "rate": "110000000000000000"
- }
- }
- },
- "stTAO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- },
- "out": {
- "capacity": "400000000000",
- "isEnabled": true,
- "rate": "41600000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100830000000000000000",
- "isEnabled": true,
- "rate": "28008333333333333"
- },
- "out": {
- "capacity": "90750000000000000000",
- "isEnabled": true,
- "rate": "25208333333333333"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "ZUN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- },
- "out": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23140000000000000000"
- }
- }
- },
- "zunETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- },
- "out": {
- "capacity": "72000000000000000000",
- "isEnabled": true,
- "rate": "1666000000000000"
- }
- }
- },
- "zunUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "250000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BOLD",
+ "BONE",
+ "ETHx",
+ "IBTC",
+ "LEASH",
+ "OVER",
+ "SD",
+ "SHIB",
+ "USDC",
+ "USDM",
+ "USDT",
+ "WETH",
+ "ZUN",
+ "clBTC",
+ "rsETH",
+ "sDOLA",
+ "sINV",
+ "stTAO",
+ "uniBTC",
+ "wUSDx",
+ "zunETH",
+ "zunUSD"
+ ]
},
"ethereum-mainnet-polygon-zkevm-1": {
"offRamp": {
@@ -26351,78 +5860,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "BONE", "LEASH", "LINK", "SHIB"]
},
"ethereum-mainnet-taiko-1": {
"offRamp": {
@@ -26434,36 +5872,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -26475,50 +5884,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC", "uniBTC"]
},
"ethereum-mainnet-worldchain-1": {
"offRamp": {
@@ -26530,36 +5896,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "oXAUT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "WLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27777700000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "27777700000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["WLD", "oXAUT"]
},
"ethereum-mainnet-xlayer-1": {
"offRamp": {
@@ -26571,36 +5908,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["brBTC", "uniBTC"]
},
"ethereum-mainnet-zircuit-1": {
"offRamp": {
@@ -26612,78 +5920,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "rsETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "SHIB", "mBTC", "rsETH"]
},
"ethereum-mainnet-zksync-1": {
"offRamp": {
@@ -26695,106 +5932,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1736000000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "150000000000000000000",
- "isEnabled": true,
- "rate": "1736000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "SolvBTC", "USDM", "xSolvBTC"]
},
"etherlink-mainnet": {
"offRamp": {
@@ -26806,22 +5944,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"everclear-mainnet": {
"offRamp": {
@@ -26855,22 +5978,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["xGold"]
},
"hemi-mainnet": {
"offRamp": {
@@ -26893,134 +6001,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "kHYPE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "VSN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "82500000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- },
- "out": {
- "capacity": "75000000000000000000000000",
- "isEnabled": true,
- "rate": "69000000000000000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "SolvBTC", "VSN", "brBTC", "kHYPE", "syrupUSDC", "uniBTC", "xGold", "xSolvBTC"]
},
"jovay-mainnet": {
"offRamp": {
@@ -27032,22 +6013,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"kaia-mainnet": {
"offRamp": {
@@ -27059,22 +6025,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "21000000000000000000000000",
- "isEnabled": true,
- "rate": "232000000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "232000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDO"]
},
"lens-mainnet": {
"offRamp": {
@@ -27108,358 +6059,33 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13889000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13889000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "OSIS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "16667000000000000000000",
- "isEnabled": true,
- "rate": "4600000000000000000"
- },
- "out": {
- "capacity": "16667000000000000000000",
- "isEnabled": true,
- "rate": "4600000000000000000"
- }
- }
- },
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SOIL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "1XMM",
+ "BETS",
+ "BONE",
+ "DFX",
+ "EARNM",
+ "IXT",
+ "LEASH",
+ "LEND",
+ "Memento",
+ "OSIS",
+ "REG",
+ "RIZE",
+ "SHIB",
+ "SOIL",
+ "STABUL",
+ "SolvBTC",
+ "TRADE",
+ "USDC",
+ "USDM",
+ "WECO",
+ "WSDM",
+ "wstLINK",
+ "wstPOL",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"memento-mainnet": {
"offRamp": {
@@ -27493,22 +6119,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FHE"]
},
"mint-mainnet": {
"offRamp": {
@@ -27531,78 +6142,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000"
- },
- "out": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "347220000000000"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000"
- },
- "out": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "347220000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "SolvBTC", "USD1", "wstETH", "xSolvBTC"]
},
"morph-mainnet": {
"offRamp": {
@@ -27614,36 +6154,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1"]
},
"nexon-mainnet-henesys": {
"offRamp": {
@@ -27666,134 +6177,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO", "LINK", "RETH", "YBTC.B", "savUSD", "syrupUSDT", "wstETH"]
},
"plume-mainnet": {
"offRamp": {
@@ -27805,22 +6189,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USD1"]
},
"polkadot-mainnet-astar": {
"offRamp": {
@@ -27832,78 +6201,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "WASTR"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -27915,36 +6213,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"ronin-mainnet": {
"offRamp": {
@@ -27956,232 +6225,24 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "ANIMA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "APRS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "347222200000000000000"
- },
- "out": {
- "capacity": "27000000000000000000000000",
- "isEnabled": true,
- "rate": "312500000000000000000"
- }
- }
- },
- "AXS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BANANA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "17361110000000000000"
- },
- "out": {
- "capacity": "1350000000000000000000000",
- "isEnabled": true,
- "rate": "15625000000000000000"
- }
- }
- },
- "CGX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "LUA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LUAUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PFVS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PIXEL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "300000000000000000000000000",
- "isEnabled": true,
- "rate": "3472222200000000000000"
- },
- "out": {
- "capacity": "270000000000000000000000000",
- "isEnabled": true,
- "rate": "3125000000000000000000"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "4200000000",
- "isEnabled": true,
- "rate": "48610"
- },
- "out": {
- "capacity": "3780000000",
- "isEnabled": true,
- "rate": "43750"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "YGG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148100000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000000",
- "isEnabled": true,
- "rate": "20833300000000000000"
- }
- }
- },
- "ZENT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "ANIMA",
+ "APRS",
+ "AXS",
+ "BANANA",
+ "CGX",
+ "LINK",
+ "LUA",
+ "LUAUSD",
+ "PFVS",
+ "PIXEL",
+ "RETH",
+ "USDC",
+ "WBTC",
+ "WETH",
+ "YGG",
+ "ZENT"
+ ]
},
"rootstock-mainnet": {
"offRamp": {
@@ -28204,36 +6265,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"shibarium-mainnet": {
"offRamp": {
@@ -28245,36 +6277,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIRO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SAS", "SHIRO"]
},
"solana-mainnet": {
"offRamp": {
@@ -28286,274 +6289,27 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787037037037037037"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "OHM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PEPE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000",
- "isEnabled": true,
- "rate": "13888888888888890"
- },
- "out": {
- "capacity": "50000000000000000000000000000",
- "isEnabled": true,
- "rate": "13888888888888890000000000"
- }
- }
- },
- "PTsUSDE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": [
+ "FHE",
+ "FLUID",
+ "LINK",
+ "MEW",
+ "OHM",
+ "PEPE",
+ "PTsUSDE",
+ "SolvBTC",
+ "USD1",
+ "USDC",
+ "WFRAGSOL",
+ "WLFI",
+ "WMTX",
+ "brBTC",
+ "elizaOS",
+ "syrupUSDC",
+ "uniBTC",
+ "xSolvBTC",
+ "zBTC"
+ ]
},
"soneium-mainnet": {
"offRamp": {
@@ -28565,106 +6321,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "DEGEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "60000000000000000000",
- "isEnabled": true,
- "rate": "694440000000000"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "60000000000000000000",
- "isEnabled": true,
- "rate": "694440000000000"
- }
- }
- }
- }
+ "supportedTokens": ["DEGEN", "LINK", "SKYA", "SolvBTC", "WASTR", "pufETH", "xSolvBTC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -28676,204 +6333,22 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "egETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BOLD",
+ "LBTC",
+ "LINK",
+ "SILO",
+ "SolvBTC",
+ "USDT",
+ "egETH",
+ "mBTC",
+ "mstETH",
+ "uniBTC",
+ "wUSDx",
+ "xSILO",
+ "xSolvBTC",
+ "zBTC"
+ ]
},
"stable-mainnet": {
"offRamp": {
@@ -28885,36 +6360,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "LINK"]
},
"superseed-mainnet": {
"offRamp": {
@@ -28937,78 +6383,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "LINK", "RETH", "tETH", "uniBTC"]
},
"wemix-mainnet": {
"offRamp": {
@@ -29020,106 +6395,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "una.USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "300000000000",
- "isEnabled": true,
- "rate": "83330000"
- },
- "out": {
- "capacity": "300000000000",
- "isEnabled": true,
- "rate": "83330000"
- }
- }
- },
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "USDC", "una.USDC", "una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -29131,78 +6407,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "GHO", "LEASH", "REG", "SHIB"]
},
"xdc-mainnet": {
"offRamp": {
@@ -29214,36 +6419,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDf": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USDf"]
},
"zora-mainnet": {
"offRamp": {
@@ -29279,134 +6455,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "LEND", "Memento", "SolvBTC", "USDC", "USDM", "wstLINK", "wstPOL", "xSolvBTC"]
},
"berachain-mainnet": {
"offRamp": {
@@ -29429,36 +6478,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -29470,204 +6490,22 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "METO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "76923077000000000000000000",
- "isEnabled": true,
- "rate": "21367520000000000000000"
- },
- "out": {
- "capacity": "76923077000000000000000000",
- "isEnabled": true,
- "rate": "21367520000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "THE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000000"
- },
- "out": {
- "capacity": "750000000000000000000000",
- "isEnabled": true,
- "rate": "417000000000000000000"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "1XMM",
+ "BETS",
+ "IXT",
+ "LAND",
+ "LEND",
+ "METO",
+ "RIZE",
+ "SolvBTC",
+ "THE",
+ "TRADE",
+ "WECO",
+ "WSDM",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"celo-mainnet": {
"offRamp": {
@@ -29701,218 +6539,23 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LAND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- },
- "out": {
- "capacity": "20000000000000000000000",
- "isEnabled": true,
- "rate": "5550000000000000000"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STBU": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2",
- "isEnabled": true,
- "rate": "1"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "DFX",
+ "EARNM",
+ "IXT",
+ "LAND",
+ "LEND",
+ "SDM",
+ "STBU",
+ "SolvBTC",
+ "USDC",
+ "USDM",
+ "WECO",
+ "WSDM",
+ "wstLINK",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -29924,274 +6567,27 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BYTES": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000000",
- "isEnabled": true,
- "rate": "27778000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LYP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "83333333333300000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "83333333333300000000"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BETS",
+ "BYTES",
+ "CRTV",
+ "EARNM",
+ "IXT",
+ "LEND",
+ "LYP",
+ "Memento",
+ "RIZE",
+ "STABUL",
+ "SolvBTC",
+ "TRADE",
+ "USDC",
+ "USDM",
+ "XTFBRICK1",
+ "XTFCLOBOND",
+ "wstLINK",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -30203,36 +6599,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -30244,36 +6611,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -30285,64 +6623,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CRTV": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "CRTV", "USDC", "USDM"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -30354,36 +6635,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BETS", "USDC"]
},
"ethereum-mainnet-zksync-1": {
"offRamp": {
@@ -30395,50 +6647,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "USDM", "xSolvBTC"]
},
"jovay-mainnet": {
"offRamp": {
@@ -30461,358 +6670,33 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "1XMM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BETS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DFX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- },
- "out": {
- "capacity": "5000000000000000000000000",
- "isEnabled": true,
- "rate": "57000000000000000000"
- }
- }
- },
- "EARNM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13889000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000000",
- "isEnabled": true,
- "rate": "13889000000000000000000"
- }
- }
- },
- "IXT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "Memento": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1100000000000000000000",
- "isEnabled": true,
- "rate": "12731481000000000"
- },
- "out": {
- "capacity": "1000000000000000000000",
- "isEnabled": true,
- "rate": "11574000000000000"
- }
- }
- },
- "OSIS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "16667000000000000000000",
- "isEnabled": true,
- "rate": "4600000000000000000"
- },
- "out": {
- "capacity": "16667000000000000000000",
- "isEnabled": true,
- "rate": "4600000000000000000"
- }
- }
- },
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- },
- "RIZE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SOIL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "STABUL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "TRADE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- },
- "out": {
- "capacity": "1000000000000000000000000",
- "isEnabled": true,
- "rate": "11600000000000000000"
- }
- }
- },
- "WECO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000000",
- "isEnabled": true,
- "rate": "34720000000000000000000"
- }
- }
- },
- "WSDM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "12000000"
- }
- }
- },
- "wstLINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstPOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xGold": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": [
+ "1XMM",
+ "BETS",
+ "BONE",
+ "DFX",
+ "EARNM",
+ "IXT",
+ "LEASH",
+ "LEND",
+ "Memento",
+ "OSIS",
+ "REG",
+ "RIZE",
+ "SHIB",
+ "SOIL",
+ "STABUL",
+ "SolvBTC",
+ "TRADE",
+ "USDC",
+ "USDM",
+ "WECO",
+ "WSDM",
+ "wstLINK",
+ "wstPOL",
+ "xGold",
+ "xSolvBTC"
+ ]
},
"memento-mainnet": {
"offRamp": {
@@ -30824,36 +6708,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["XTFBRICK1", "XTFCLOBOND"]
},
"plume-mainnet": {
"offRamp": {
@@ -30876,36 +6731,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -30917,22 +6743,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"soneium-mainnet": {
"offRamp": {
@@ -30944,36 +6755,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -30996,22 +6778,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -31023,22 +6790,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["REG"]
}
},
"memento-mainnet": {
@@ -31052,36 +6804,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["XTFBRICK1", "XTFCLOBOND"]
},
"mainnet": {
"offRamp": {
@@ -31104,36 +6827,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "XTFBRICK1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "XTFCLOBOND": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["XTFBRICK1", "XTFCLOBOND"]
},
"solana-mainnet": {
"offRamp": {
@@ -31171,22 +6865,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FHE"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -31209,22 +6888,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FHE"]
}
},
"mint-mainnet": {
@@ -31262,22 +6926,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -31289,22 +6938,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -31327,22 +6961,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -31354,22 +6973,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -31392,78 +6996,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "347220000000000"
- },
- "out": {
- "capacity": "5000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000",
- "isEnabled": true,
- "rate": "347220000000000"
- },
- "out": {
- "capacity": "5000000000000000000",
- "isEnabled": true,
- "rate": "57870000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "SolvBTC", "USD1", "wstETH", "xSolvBTC"]
},
"plasma-mainnet": {
"offRamp": {
@@ -31475,22 +7008,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -31502,22 +7020,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -31540,22 +7043,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
}
},
"morph-mainnet": {
@@ -31569,36 +7057,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USD1"]
}
},
"nexon-mainnet-henesys": {
@@ -31647,36 +7106,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["GHO", "savUSD"]
},
"bitcoin-mainnet-bitlayer-1": {
"offRamp": {
@@ -31688,22 +7118,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -31715,50 +7130,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -31770,50 +7142,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -31825,22 +7154,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -31874,134 +7188,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- },
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "FLUID", "GHO", "LINK", "RETH", "YBTC.B", "savUSD", "syrupUSDT", "wstETH"]
},
"monad-mainnet": {
"offRamp": {
@@ -32013,22 +7200,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "wstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- },
- "out": {
- "capacity": "2000000000000000000000",
- "isEnabled": true,
- "rate": "23148148140000000"
- }
- }
- }
- }
+ "supportedTokens": ["wstETH"]
},
"solana-mainnet": {
"offRamp": {
@@ -32040,50 +7212,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "eUSX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5787000000"
- },
- "out": {
- "capacity": "500000000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000000"
- }
- }
- },
- "USX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "USX", "eUSX"]
},
"xdai-mainnet": {
"offRamp": {
@@ -32095,22 +7224,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
}
},
"plume-mainnet": {
@@ -32124,22 +7238,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"bsc-mainnet": {
"offRamp": {
@@ -32162,22 +7261,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USD1"]
},
"matic-mainnet": {
"offRamp": {
@@ -32202,78 +7286,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "2778000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "WASTR"]
},
"soneium-mainnet": {
"offRamp": {
@@ -32285,36 +7298,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "20000000000000000000000000",
- "isEnabled": true,
- "rate": "5556000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "WASTR"]
}
},
"polygon-mainnet-katana": {
@@ -32328,36 +7312,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"bsc-mainnet": {
"offRamp": {
@@ -32369,36 +7324,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -32410,22 +7336,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"mainnet": {
"offRamp": {
@@ -32437,36 +7348,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "savUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "savUSD"]
},
"monad-mainnet": {
"offRamp": {
@@ -32478,22 +7360,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -32516,22 +7383,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"stable-mainnet": {
"offRamp": {
@@ -32543,22 +7395,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
}
},
"ronin-mainnet": {
@@ -32572,22 +7409,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"mainnet": {
"offRamp": {
@@ -32599,232 +7421,24 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "ANIMA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "APRS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "30000000000000000000000000",
- "isEnabled": true,
- "rate": "347222200000000000000"
- },
- "out": {
- "capacity": "27000000000000000000000000",
- "isEnabled": true,
- "rate": "312500000000000000000"
- }
- }
- },
- "AXS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BANANA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "17361110000000000000"
- },
- "out": {
- "capacity": "1350000000000000000000000",
- "isEnabled": true,
- "rate": "15625000000000000000"
- }
- }
- },
- "CGX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "LUA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LUAUSD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PFVS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PIXEL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "300000000000000000000000000",
- "isEnabled": true,
- "rate": "3472222200000000000000"
- },
- "out": {
- "capacity": "270000000000000000000000000",
- "isEnabled": true,
- "rate": "3125000000000000000000"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "4200000000",
- "isEnabled": true,
- "rate": "48610"
- },
- "out": {
- "capacity": "3780000000",
- "isEnabled": true,
- "rate": "43750"
- }
- }
- },
- "WETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "YGG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2000000000000000000000000",
- "isEnabled": true,
- "rate": "23148100000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000000",
- "isEnabled": true,
- "rate": "20833300000000000000"
- }
- }
- },
- "ZENT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": [
+ "ANIMA",
+ "APRS",
+ "AXS",
+ "BANANA",
+ "CGX",
+ "LINK",
+ "LUA",
+ "LUAUSD",
+ "PFVS",
+ "PIXEL",
+ "RETH",
+ "USDC",
+ "WBTC",
+ "WETH",
+ "YGG",
+ "ZENT"
+ ]
}
},
"rootstock-mainnet": {
@@ -32851,36 +7465,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "VRTX"]
},
"berachain-mainnet": {
"offRamp": {
@@ -32903,36 +7488,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -32944,36 +7500,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -32985,22 +7512,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -33012,22 +7524,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["VRTX"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -33039,36 +7536,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -33091,36 +7559,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -33132,36 +7571,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -33208,162 +7618,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CANNED": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "CHIKA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "DAMN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FEED": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LUISA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "NEKO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIPA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SNOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USAGI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WOW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CANNED", "CHIKA", "DAMN", "FEED", "LUISA", "NEKO", "SAS", "SHIPA", "SNOW", "USAGI", "WOW"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -33386,36 +7641,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SAS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SHIRO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SAS", "SHIRO"]
},
"solana-mainnet": {
"offRamp": {
@@ -33451,22 +7677,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"berachain-mainnet": {
"offRamp": {
@@ -33489,22 +7700,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "YBTC.B": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["YBTC.B"]
},
"bsc-mainnet": {
"offRamp": {
@@ -33516,190 +7712,21 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "BR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5800000000"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5800000000"
- }
- }
- },
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "ILMT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000000",
- "isEnabled": true,
- "rate": "277777777778"
- },
- "out": {
- "capacity": "1000000000000000",
- "isEnabled": true,
- "rate": "277777777778"
- }
- }
- },
- "KNET": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "750000000",
- "isEnabled": true,
- "rate": "34722"
- },
- "out": {
- "capacity": "750000000",
- "isEnabled": true,
- "rate": "34722"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "57870"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "57870"
- }
- }
- },
- "USELESS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "XLAB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BR",
+ "FHE",
+ "ILMT",
+ "KNET",
+ "MEW",
+ "SolvBTC",
+ "SolvBTC.JUP",
+ "USELESS",
+ "WLFI",
+ "WMTX",
+ "XLAB",
+ "elizaOS",
+ "xSolvBTC"
+ ]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -33711,64 +7738,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "USDC", "WFRAGSOL", "WMTX"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -33780,148 +7750,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "MICHI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "78722220"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "78722220"
- }
- }
- },
- "pippin": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "YNE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "LINK", "MEW", "MICHI", "USDC", "WMTX", "YNE", "elizaOS", "pippin", "zBTC"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -33933,22 +7762,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -33960,22 +7774,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"ethereum-mainnet-worldchain-1": {
"offRamp": {
@@ -34009,22 +7808,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "WHLP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["WHLP"]
},
"mainnet": {
"offRamp": {
@@ -34036,274 +7820,27 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "brBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "elizaOS": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FHE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "23148100000"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "OHM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "PEPE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "138888888889"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "138888888889"
- }
- }
- },
- "PTsUSDE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USD1": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WFRAGSOL": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WLFI": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "WMTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- },
- "out": {
- "capacity": "1000000000000",
- "isEnabled": true,
- "rate": "277770000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "250000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": [
+ "FHE",
+ "FLUID",
+ "LINK",
+ "MEW",
+ "OHM",
+ "PEPE",
+ "PTsUSDE",
+ "SolvBTC",
+ "USD1",
+ "USDC",
+ "WFRAGSOL",
+ "WLFI",
+ "WMTX",
+ "brBTC",
+ "elizaOS",
+ "syrupUSDC",
+ "uniBTC",
+ "xSolvBTC",
+ "zBTC"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -34315,22 +7852,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"memento-mainnet": {
"offRamp": {
@@ -34364,50 +7886,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "eUSX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "FLUID": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5787000000"
- },
- "out": {
- "capacity": "500000000000000",
- "isEnabled": true,
- "rate": "5787000000"
- }
- }
- },
- "USX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["FLUID", "USX", "eUSX"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -34452,50 +7931,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "MEW", "zBTC"]
}
},
"soneium-mainnet": {
@@ -34509,50 +7945,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "SolvBTC.JUP", "xSolvBTC"]
},
"bitcoin-mainnet-bsquared-1": {
"offRamp": {
@@ -34575,36 +7968,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC.JUP": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "1157400000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "1157400000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SKYA", "SolvBTC.JUP"]
},
"celo-mainnet": {
"offRamp": {
@@ -34638,22 +8002,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["SKYA"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -34665,36 +8014,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"mainnet": {
"offRamp": {
@@ -34706,106 +8026,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "DEGEN": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "pufETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SKYA": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "60000000000000000000",
- "isEnabled": true,
- "rate": "694440000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "60000000000000000000",
- "isEnabled": true,
- "rate": "694440000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["DEGEN", "LINK", "SKYA", "SolvBTC", "WASTR", "pufETH", "xSolvBTC"]
},
"matic-mainnet": {
"offRamp": {
@@ -34817,36 +8038,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- }
- }
+ "supportedTokens": ["SolvBTC", "xSolvBTC"]
},
"polkadot-mainnet-astar": {
"offRamp": {
@@ -34858,36 +8050,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "WASTR": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "WASTR"]
}
},
"sonic-mainnet": {
@@ -34901,22 +8064,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["LINK"]
},
"avalanche-mainnet": {
"offRamp": {
@@ -34928,78 +8076,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "LBTC", "SILO", "VRTX", "xSILO"]
},
"bitcoin-mainnet-bob-1": {
"offRamp": {
@@ -35011,22 +8088,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- }
- }
+ "supportedTokens": ["USDT"]
},
"bsc-mainnet": {
"offRamp": {
@@ -35038,50 +8100,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "mBTC", "wUSDx"]
},
"core-mainnet": {
"offRamp": {
@@ -35104,92 +8123,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- },
- "out": {
- "capacity": "10000000000000000000000000",
- "isEnabled": true,
- "rate": "1000000000000000000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "SILO", "VRTX", "mBTC", "wUSDx", "xSILO"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -35201,106 +8135,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "VRTX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "BOLD", "LBTC", "USDT", "VRTX", "wUSDx", "zBTC"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -35334,36 +8169,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BMX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BMX", "wUSDx"]
},
"ethereum-mainnet-optimism-1": {
"offRamp": {
@@ -35375,50 +8181,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- }
- }
+ "supportedTokens": ["BOLD", "USDT", "wUSDx"]
},
"ethereum-mainnet-unichain-1": {
"offRamp": {
@@ -35441,204 +8204,22 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BOLD": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "egETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "mBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- },
- "out": {
- "capacity": "400000000",
- "isEnabled": true,
- "rate": "18518"
- }
- }
- },
- "mstETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- },
- "out": {
- "capacity": "100000000000000000000",
- "isEnabled": true,
- "rate": "9260000000000000"
- }
- }
- },
- "SILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "SolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- },
- "USDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- },
- "out": {
- "capacity": "10000000000000",
- "isEnabled": true,
- "rate": "5000000000"
- }
- }
- },
- "wUSDx": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- },
- "out": {
- "capacity": "490000000000",
- "isEnabled": true,
- "rate": "136111000"
- }
- }
- },
- "xSILO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "xSolvBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- },
- "out": {
- "capacity": "2500000000000000000",
- "isEnabled": true,
- "rate": "115740000000000"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": [
+ "BOLD",
+ "LBTC",
+ "LINK",
+ "SILO",
+ "SolvBTC",
+ "USDT",
+ "egETH",
+ "mBTC",
+ "mstETH",
+ "uniBTC",
+ "wUSDx",
+ "xSILO",
+ "xSolvBTC",
+ "zBTC"
+ ]
},
"matic-mainnet": {
"offRamp": {
@@ -35661,22 +8242,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -35688,22 +8254,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"solana-mainnet": {
"offRamp": {
@@ -35715,50 +8266,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000",
- "isEnabled": true,
- "rate": "13880000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "13880000000000000000"
- }
- }
- },
- "MEW": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- },
- "out": {
- "capacity": "5000000000000",
- "isEnabled": true,
- "rate": "1388888888"
- }
- }
- },
- "zBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- },
- "out": {
- "capacity": "1000000000",
- "isEnabled": true,
- "rate": "11574"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "MEW", "zBTC"]
},
"stable-mainnet": {
"offRamp": {
@@ -35770,22 +8278,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"xdai-mainnet": {
"offRamp": {
@@ -35810,22 +8303,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"bsc-mainnet": {
"offRamp": {
@@ -35837,22 +8315,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -35875,22 +8338,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"mainnet": {
"offRamp": {
@@ -35902,36 +8350,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "LINK"]
},
"polygon-mainnet-katana": {
"offRamp": {
@@ -35943,22 +8362,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
},
"sonic-mainnet": {
"offRamp": {
@@ -35970,22 +8374,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC"]
}
},
"superseed-mainnet": {
@@ -36034,78 +8423,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- },
- "out": {
- "capacity": "5000000000",
- "isEnabled": true,
- "rate": "462963"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "RETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- },
- "out": {
- "capacity": "1800000000000000000000",
- "isEnabled": true,
- "rate": "5787000000000000"
- }
- }
- },
- "tETH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "uniBTC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "200000000",
- "isEnabled": true,
- "rate": "2315"
- }
- }
- }
- }
+ "supportedTokens": ["LBTC", "LINK", "RETH", "tETH", "uniBTC"]
}
},
"wemix-mainnet": {
@@ -36119,22 +8437,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"bsc-mainnet": {
"offRamp": {
@@ -36146,22 +8449,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"ethereum-mainnet-arbitrum-1": {
"offRamp": {
@@ -36173,22 +8461,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -36211,22 +8484,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
},
"mainnet": {
"offRamp": {
@@ -36238,106 +8496,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "4630000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "una.USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "300000000000",
- "isEnabled": true,
- "rate": "83330000"
- },
- "out": {
- "capacity": "300000000000",
- "isEnabled": true,
- "rate": "83330000"
- }
- }
- },
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "LEASH", "LINK", "SHIB", "USDC", "una.USDC", "una.WEMIX"]
},
"matic-mainnet": {
"offRamp": {
@@ -36349,22 +8508,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "una.WEMIX": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- },
- "out": {
- "capacity": "200000000000000000000000",
- "isEnabled": true,
- "rate": "55550000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["una.WEMIX"]
}
},
"xdai-mainnet": {
@@ -36389,22 +8533,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"bsc-mainnet": {
"offRamp": {
@@ -36427,22 +8556,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"ethereum-mainnet-base-1": {
"offRamp": {
@@ -36454,22 +8568,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"ethereum-mainnet-ink-1": {
"offRamp": {
@@ -36481,22 +8580,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"ethereum-mainnet-linea-1": {
"offRamp": {
@@ -36541,78 +8625,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "BONE": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- },
- "LEASH": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- },
- "SHIB": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["BONE", "GHO", "LEASH", "REG", "SHIB"]
},
"matic-mainnet": {
"offRamp": {
@@ -36624,22 +8637,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "REG": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- },
- "out": {
- "capacity": "50000000000000000000000",
- "isEnabled": true,
- "rate": "14000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["REG"]
},
"plasma-mainnet": {
"offRamp": {
@@ -36651,22 +8649,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "GHO": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- },
- "out": {
- "capacity": "1500000000000000000000000",
- "isEnabled": true,
- "rate": "300000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["GHO"]
},
"sonic-mainnet": {
"offRamp": {
@@ -36702,36 +8685,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "LINK": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDf": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["LINK", "USDf"]
}
},
"zora-mainnet": {
diff --git a/src/config/data/ccip/v1_2_0/mainnet/tokens.json b/src/config/data/ccip/v1_2_0/mainnet/tokens.json
index d44a581e269..7dcd9050d20 100644
--- a/src/config/data/ccip/v1_2_0/mainnet/tokens.json
+++ b/src/config/data/ccip/v1_2_0/mainnet/tokens.json
@@ -4,8 +4,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PAAL AI",
- "poolAddress": "0xE4De5151eD60Aa2086172c4caec29f058d16E46e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE4De5151eD60Aa2086172c4caec29f058d16E46e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "$PAAL",
"tokenAddress": "0xbb1B031c591235408755ff4E0739cb88C5cF2507"
},
@@ -13,8 +17,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PAAL AI",
- "poolAddress": "0x5192Bd10f28A0206211CcBB66671118f85c2E539",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5192Bd10f28A0206211CcBB66671118f85c2E539",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "$PAAL",
"tokenAddress": "0xd52333441c0553fACb259600FA833a69186893A5"
},
@@ -22,8 +30,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "PAAL AI",
- "poolAddress": "0x1A4B0621E90Bdc61d341D89158863458CA745dA2",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x1A4B0621E90Bdc61d341D89158863458CA745dA2",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "$PAAL",
"tokenAddress": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16"
}
@@ -33,8 +45,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "One-XMM Token",
- "poolAddress": "0xFdcB1fB6675b7d7c33933Ef56BD031c7B084Af29",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFdcB1fB6675b7d7c33933Ef56BD031c7B084Af29",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "1XMM",
"tokenAddress": "0x504C024fcDc01C30ee6379e3381144Df24Bc01B9"
},
@@ -42,8 +58,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "One-XMM Token",
- "poolAddress": "0xF56dcA7a981a53ec2EbeF2040800F04206021583",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF56dcA7a981a53ec2EbeF2040800F04206021583",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "1XMM",
"tokenAddress": "0x958d200A49F4765f771C61d2649965e26277fB64"
},
@@ -51,8 +71,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "One-XMM Token",
- "poolAddress": "0x955c82760CAec660Bc823726ee3a90ef53C24577",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x955c82760CAec660Bc823726ee3a90ef53C24577",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "1XMM",
"tokenAddress": "0xfDC362324740B3CA225ee0E54063746EecB2BFd9"
}
@@ -62,8 +86,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "AicroStrategy",
- "poolAddress": "0xafa0f7EEDd310168Ba84BddDA550BA9c93F1083d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xafa0f7EEDd310168Ba84BddDA550BA9c93F1083d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "AISTR",
"tokenAddress": "0xFFd2087838d18225DE3428DFAEeFa4432E7D227F"
},
@@ -71,8 +99,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "AicroStrategy",
- "poolAddress": "0xF4fD65FE6E60822C22B3580ee43FA6E955adb3Ab",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF4fD65FE6E60822C22B3580ee43FA6E955adb3Ab",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "AISTR",
"tokenAddress": "0x323ac72a3a6267D97427944989b896fB411fdCbb"
},
@@ -80,8 +112,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "AicroStrategy",
- "poolAddress": "0xCDc4325995dE9Bd013c606da4D21519A99041673",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCDc4325995dE9Bd013c606da4D21519A99041673",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "AISTR",
"tokenAddress": "0xaE1c4c55b0C82C02b0C933d1F890f8fa9D599D3f"
},
@@ -89,8 +125,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "AicroStrategy",
- "poolAddress": "0xe4a9fa29E3d88660577E4ACD9bf88Ef2DF4F8D7C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe4a9fa29E3d88660577E4ACD9bf88Ef2DF4F8D7C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "AISTR",
"tokenAddress": "0xBD4CaeE14EFDE2888F167130AF84D613D64618Da"
}
@@ -100,8 +140,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Anima",
- "poolAddress": "0xD4C6184DEC4e10395AB84b9e7a7ab46d0D57329e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD4C6184DEC4e10395AB84b9e7a7ab46d0D57329e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ANIMA",
"tokenAddress": "0x153A381D1207862cA003f68600462fAa66A828a7"
},
@@ -109,8 +153,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Anima",
- "poolAddress": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "ANIMA",
"tokenAddress": "0xF80132FC0A86ADd011BffCe3AedD60A86E3d704D"
}
@@ -120,8 +168,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Aperios",
- "poolAddress": "0x5882D12bbf902ee88d5FCF8793113ae85fFe97b1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x5882D12bbf902ee88d5FCF8793113ae85fFe97b1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "APRS",
"tokenAddress": "0x95b4B8CaD3567B5d7EF7399C2aE1d7070692aB0D"
},
@@ -129,8 +181,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Aperios",
- "poolAddress": "0x5dbBF90Ad00130Fd2Eb788016DcB3E4dFbD0C519",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5dbBF90Ad00130Fd2Eb788016DcB3E4dFbD0C519",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "APRS",
"tokenAddress": "0x7894b3088d069E70895EFfA4e8f7D2c243Fd04C1"
}
@@ -140,7 +196,11 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Aptos Coin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "APT",
"tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A"
}
@@ -150,8 +210,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Apu Apustaja",
- "poolAddress": "0x924982D6616962E7009f5f1fFe6F24ee1e58A2F4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x924982D6616962E7009f5f1fFe6F24ee1e58A2F4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "APU",
"tokenAddress": "0x1F53B7aA6f4b36B7DfDEDb4Bc4A14747a19cf7B1"
},
@@ -159,8 +223,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Apu Apustaja",
- "poolAddress": "0xdf59f3eA407816FcC9e724fF29c5593a536e7984",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdf59f3eA407816FcC9e724fF29c5593a536e7984",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "APU",
"tokenAddress": "0xB9926b3fBc5873Db0182016D55727D5ae89E5EFd"
},
@@ -168,8 +236,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Apu Apustaja",
- "poolAddress": "0x0577EcCC8FBE54B321d3BC8d4F1d09Deb94d5A55",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0577EcCC8FBE54B321d3BC8d4F1d09Deb94d5A55",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "APU",
"tokenAddress": "0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa"
}
@@ -179,8 +251,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avBTC",
- "poolAddress": "0x5684B0455837d41e47260a31bD954bE72C935E32",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x5684B0455837d41e47260a31bD954bE72C935E32",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "avBTC",
"tokenAddress": "0xfd2c2A98009d0cBed715882036e43d26C4289053"
},
@@ -188,8 +264,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avBTC",
- "poolAddress": "0xCE7Eb84463675C6dD219A6A8939Cc36F650808c6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCE7Eb84463675C6dD219A6A8939Cc36F650808c6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "avBTC",
"tokenAddress": "0x2D4C0d9742cd0F11b3627f103A3dDd9C8AE341b6"
},
@@ -197,8 +277,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avBTC",
- "poolAddress": "0x63bd4CC0A4F72cb3a6181604d03633671e5A93d2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x63bd4CC0A4F72cb3a6181604d03633671e5A93d2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "avBTC",
"tokenAddress": "0x84d797c33708E5bDbfdB73481530DCf8c03eC17E"
}
@@ -208,8 +292,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH",
- "poolAddress": "0xBEC991c38A8D2b04F7A2a6F2d9304078DFD33dB6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBEC991c38A8D2b04F7A2a6F2d9304078DFD33dB6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "avETH",
"tokenAddress": "0x223767286Be11d09Ae778fF608687fe858d3A2b4"
},
@@ -217,8 +305,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH",
- "poolAddress": "0x9b52Ab55cFA7aB0079f84390b24Fdc0e5bF5Ab6F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9b52Ab55cFA7aB0079f84390b24Fdc0e5bF5Ab6F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "avETH",
"tokenAddress": "0x3449A9155Afc1Bab56A572FdfE22A3a2B803AaC4"
},
@@ -226,8 +318,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH",
- "poolAddress": "0xbD09E8846B9DbdA54Ef386Bd9eF3bbd15Add50ee",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xbD09E8846B9DbdA54Ef386Bd9eF3bbd15Add50ee",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "avETH",
"tokenAddress": "0x9469470C9878bf3d6d0604831d9A3A366156f7EE"
}
@@ -237,8 +333,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH MAX",
- "poolAddress": "0xbb8a25Ee9509bDA375699F6977DfaaC04c08BADa",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbb8a25Ee9509bDA375699F6977DfaaC04c08BADa",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "avETHx",
"tokenAddress": "0xDA63630094Aa23B7a49368b713d68dD98F547f98"
},
@@ -246,8 +346,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH MAX",
- "poolAddress": "0x37912A5e451DC711D357E2dC6Bf9035235d6771f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x37912A5e451DC711D357E2dC6Bf9035235d6771f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "avETHx",
"tokenAddress": "0x01C9ABFebCDcb53E72bF017Fc1D17F9DB38F722a"
},
@@ -255,8 +359,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avETH MAX",
- "poolAddress": "0x18d3ebcEF1074f30aba5Da3951FF1a87B30B6Ec1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x18d3ebcEF1074f30aba5Da3951FF1a87B30B6Ec1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "avETHx",
"tokenAddress": "0x2E8b7190eE84E7AC757Ddff42Ba14d4EAe24B865"
}
@@ -266,8 +374,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD",
- "poolAddress": "0xD4fe4186c4A7b089eb849d57b43C5F6a3d3BcCbe",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xD4fe4186c4A7b089eb849d57b43C5F6a3d3BcCbe",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "avUSD",
"tokenAddress": "0x24dE8771bC5DdB3362Db529Fc3358F2df3A0E346"
},
@@ -275,8 +387,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD",
- "poolAddress": "0x9F299fbDbB581E55217c15b8439588e16b95018f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9F299fbDbB581E55217c15b8439588e16b95018f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "avUSD",
"tokenAddress": "0x37c44fc08e403Efc0946C0623CB1164A52CE1576"
},
@@ -284,8 +400,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD",
- "poolAddress": "0x81B72171642FaB457aa815C0B8412A22B63A6aF8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x81B72171642FaB457aa815C0B8412A22B63A6aF8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "avUSD",
"tokenAddress": "0xf4c13D631450De6B12a19829E37c8e2826891dC4"
}
@@ -295,8 +415,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD MAX",
- "poolAddress": "0x89541CE9940DFA3add6D6dc2e20E3F743075DFF5",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x89541CE9940DFA3add6D6dc2e20E3F743075DFF5",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "avUSDx",
"tokenAddress": "0xDd1cDFA52E7D8474d434cd016fd346701db6B3B9"
},
@@ -304,8 +428,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD MAX",
- "poolAddress": "0x2c12313da5465D6da6E0A3574249A30839Fe8766",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2c12313da5465D6da6E0A3574249A30839Fe8766",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "avUSDx",
"tokenAddress": "0xC37d32b09B0bB0aa9B2A70372d7Bc1216CB7D903"
},
@@ -313,8 +441,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "avUSD MAX",
- "poolAddress": "0xD08f814614Fb21bdcdd3Aa92123e2F954F9864b7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD08f814614Fb21bdcdd3Aa92123e2F954F9864b7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "avUSDx",
"tokenAddress": "0xF424a63E4aC41b1faC5074Ccc24c7E5048fcA25D"
}
@@ -324,8 +456,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Axie Infinity Shard",
- "poolAddress": "0xf33341f2CE329B5DbCa7F9a0986Cff40d050440a",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xf33341f2CE329B5DbCa7F9a0986Cff40d050440a",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "AXS",
"tokenAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b"
},
@@ -333,8 +469,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Axie Infinity Shard",
- "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "AXS",
"tokenAddress": "0x97a9107C1793BC407d6F527b77e7fff4D812bece"
}
@@ -344,8 +484,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Banana",
- "poolAddress": "0xB18eE11849a805651aC5D456034FD6352cfF635d",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xB18eE11849a805651aC5D456034FD6352cfF635d",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "BANANA",
"tokenAddress": "0x94e496474F1725f1c1824cB5BDb92d7691A4F03a"
},
@@ -353,8 +497,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Banana",
- "poolAddress": "0x93Af6da985fD08dFA839cB2eD189D31E11c0A58f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x93Af6da985fD08dFA839cB2eD189D31E11c0A58f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BANANA",
"tokenAddress": "0x1a89ecd466a23e98f07111b0510a2D6c1cd5E400"
}
@@ -364,8 +512,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lorenzo Governance Token",
- "poolAddress": "0x0f9bf5199815e0244cb79B8c768b6979eC0290d3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0f9bf5199815e0244cb79B8c768b6979eC0290d3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "BANK",
"tokenAddress": "0x3AeE7602b612de36088F3ffEd8c8f10E86EbF2bF"
},
@@ -373,8 +525,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lorenzo Governance Token",
- "poolAddress": "0xdEC1532Abf3c2329026B5B26eE0Ea6c5c07a6c9b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdEC1532Abf3c2329026B5B26eE0Ea6c5c07a6c9b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BANK",
"tokenAddress": "0x0ba12138c55A7828b3fA1F9ef002fABdCB8996ae"
}
@@ -384,8 +540,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lombard",
- "poolAddress": "0xAA1BD1c07cfEAdb8Cc025fFa8781a853Dc88d555",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAA1BD1c07cfEAdb8Cc025fFa8781a853Dc88d555",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BARD",
"tokenAddress": "0xd23A186A78c0B3B805505E5f8ea4083295ef9f3a"
},
@@ -393,8 +553,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lombard",
- "poolAddress": "0x94A43cC8C4d755271436cfE42793A66a6C9ae25b",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x94A43cC8C4d755271436cfE42793A66a6C9ae25b",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BARD",
"tokenAddress": "0xf0DB65D17e30a966C2ae6A21f6BBA71cea6e9754"
}
@@ -404,8 +568,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Bera Bitcoin",
- "poolAddress": "0xE354FA112CD7aA0DE5C4Bedce19965c9f549e689",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xE354FA112CD7aA0DE5C4Bedce19965c9f549e689",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "beraBTC",
"tokenAddress": "0xE368a6BBb2c285A557800FF676D85Dd7E9C6299B"
},
@@ -413,8 +581,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Bera Bitcoin",
- "poolAddress": "0x1eCFe2220f18a5e4cDBc08563572d413B46fA8Ea",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1eCFe2220f18a5e4cDBc08563572d413B46fA8Ea",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "beraBTC",
"tokenAddress": "0x68C7A170bd9Ea9fb283a50d041531678111FBF31"
}
@@ -424,8 +596,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0xEf50b39fE4302D8bF499ce854f19B84098E64da6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEf50b39fE4302D8bF499ce854f19B84098E64da6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -433,8 +609,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0x77BEd59eaBa481F3f5122A1C9953d477d97A900d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x77BEd59eaBa481F3f5122A1C9953d477d97A900d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -442,8 +622,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0xCba063b1f328e4d42b05a165CBBB590939BDD70a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCba063b1f328e4d42b05a165CBBB590939BDD70a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -451,8 +635,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0xdfeaa4acb814564Ab8c756A95E8269C620Ed9DEe",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdfeaa4acb814564Ab8c756A95E8269C620Ed9DEe",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -460,8 +648,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0x17B54BCEb4dd037d8AFF01EccdAd358De73159dB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x17B54BCEb4dd037d8AFF01EccdAd358De73159dB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -469,8 +661,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0x463D98c150A664452F68B914c353C4fB99B227AC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x463D98c150A664452F68B914c353C4fB99B227AC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -478,8 +674,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0x8315Bbe2b2828559CEeCCCBCB4550A466227336E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8315Bbe2b2828559CEeCCCBCB4550A466227336E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
},
@@ -487,8 +687,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BetSwirl v2",
- "poolAddress": "0xe7A4bcEb04a06AabC63BAeffb34F7B75217a83fA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe7A4bcEb04a06AabC63BAeffb34F7B75217a83fA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BETS",
"tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5"
}
@@ -498,8 +702,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Brickken",
- "poolAddress": "0x995d8725bFE4909999B86Bb09cf7Cb9fC199Dd8a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x995d8725bFE4909999B86Bb09cf7Cb9fC199Dd8a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BKN",
"tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82"
},
@@ -507,8 +715,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Brickken",
- "poolAddress": "0xf7A646E5Fc6563B2BB4Cd8c4374CdFCa4185e975",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf7A646E5Fc6563B2BB4Cd8c4374CdFCa4185e975",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BKN",
"tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82"
},
@@ -516,8 +728,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Brickken",
- "poolAddress": "0xFf3633c00CADAac2C881638D59dF3714a9d59E33",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFf3633c00CADAac2C881638D59dF3714a9d59E33",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BKN",
"tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82"
}
@@ -527,8 +743,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BMX",
- "poolAddress": "0xc64f6E56a19678190b8263f05beeed9fc5Cbc01f",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xc64f6E56a19678190b8263f05beeed9fc5Cbc01f",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BMX",
"tokenAddress": "0x548f93779fBC992010C07467cBaf329DD5F059B7"
},
@@ -536,8 +756,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BMX",
- "poolAddress": "0x303D6A634eaeEdD58f2CdbD2eaAD7090d96df15f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x303D6A634eaeEdD58f2CdbD2eaAD7090d96df15f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BMX",
"tokenAddress": "0x66eEd5FF1701E6ed8470DC391F05e27B1d0657eb"
},
@@ -545,8 +769,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BMX",
- "poolAddress": "0x0366ac315670Cde909317F6fbf954E2De28CE5c1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0366ac315670Cde909317F6fbf954E2De28CE5c1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BMX",
"tokenAddress": "0xC28f1D82874ccFebFE6afDAB3c685D5E709067E5"
}
@@ -556,8 +784,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOB",
- "poolAddress": "0xf924B3Ac2d63145Ad88BcD2621a63Cd7D650673e",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xf924B3Ac2d63145Ad88BcD2621a63Cd7D650673e",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "BOB",
"tokenAddress": "0xB0BD54846a92b214C04A63B26AD7Dc5e19A60808"
},
@@ -565,8 +797,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOB",
- "poolAddress": "0x7E685254A1c696CF8A72a2F05d3eDBf18Ea624Bb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7E685254A1c696CF8A72a2F05d3eDBf18Ea624Bb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BOB",
"tokenAddress": "0x52B5fB4B0F6572B8C44d0251Cc224513ac5eB7E7"
},
@@ -574,8 +810,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOB",
- "poolAddress": "0x9Dfaaa0826b8D81Ea7Cf7ED95619574bcb47d6EA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9Dfaaa0826b8D81Ea7Cf7ED95619574bcb47d6EA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BOB",
"tokenAddress": "0xC9746F73cC33a36c2cD55b8aEFD732586946Cedd"
}
@@ -585,8 +825,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D"
},
@@ -594,8 +838,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9"
},
@@ -603,8 +851,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D"
},
@@ -612,8 +864,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BOLD",
"tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D"
},
@@ -621,8 +877,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BOLD",
"tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D"
},
@@ -630,8 +890,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BOLD",
"tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D"
},
@@ -639,8 +903,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0x48Fd11f0F21bAC2D8486E6682fE1E2Cb98f9AAb1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x48Fd11f0F21bAC2D8486E6682fE1E2Cb98f9AAb1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0x84533b1512A3A23F0c9668D88FDf86FEffdbb11A"
},
@@ -648,8 +916,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0x6440f144b7e50D6a8439336510312d2F54beB01D"
},
@@ -657,8 +929,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0xA7D08c8252FCc5D6B4889eD8E80Ecd5BA37498C4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA7D08c8252FCc5D6B4889eD8E80Ecd5BA37498C4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BOLD",
"tokenAddress": "0xe09B197f8c517ba8EA9440C31a8dDCD049CF7ccC"
},
@@ -666,8 +942,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BOLD Stablecoin",
- "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BOLD",
"tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9"
}
@@ -677,8 +957,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x932406A77B3cfd3EF845c7f2999Bae933Ae03739",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x932406A77B3cfd3EF845c7f2999Bae933Ae03739",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0xec0CA5d2F362A826fa8F53C89A5Ce1C17CD604fa"
},
@@ -686,8 +970,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x20Dacf037b437854926CAee12BfbEbAB123e6E69",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x20Dacf037b437854926CAee12BfbEbAB123e6E69",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0xF543915698bf89BD6d429adC79577d75DA2FA1fd"
},
@@ -695,8 +983,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x6d567695bA1e375e2F994181Aa997328c0bDaE72",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6d567695bA1e375e2F994181Aa997328c0bDaE72",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0xD301a90cb3C7a9253305af30D92dd2C1FD1e704E"
},
@@ -704,8 +996,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x476e0714DE6Fcf0d009Eb4c4E8a8DB325BF2Ba4A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x476e0714DE6Fcf0d009Eb4c4E8a8DB325BF2Ba4A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0x32aF448529b5067f9E4aBf9764ecfcE97d53aFD4"
},
@@ -713,8 +1009,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x2d08A8979C9aE629a22dE33A884aF58bC31e2460",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2d08A8979C9aE629a22dE33A884aF58bC31e2460",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0x387090cDEa72d6Ab1598394d45c5B3e05616f15D"
},
@@ -722,8 +1022,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x37Bbd2052751c42Dc0C2A7A02A140FDE6A1F8416",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x37Bbd2052751c42Dc0C2A7A02A140FDE6A1F8416",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x88B81FD1753FEF7bbFf3BbC65E4Ba73a28CC9449"
},
@@ -731,8 +1035,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x795411Fe0C1f88B30D18F5061589Afd140e49Ff0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x795411Fe0C1f88B30D18F5061589Afd140e49Ff0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0xe1886337D2ecBdB48A9dE8a68e8dEa2Ba9C5dFd2"
},
@@ -740,8 +1048,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0xee83E603b755889ceB652F3D8af3C735a98C486D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xee83E603b755889ceB652F3D8af3C735a98C486D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BONE",
"tokenAddress": "0xDd2D32Fea6e166fA53DEe5c1584456c0e8A889f5"
},
@@ -749,8 +1061,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x691435ED2282052a064B8748BA2E3C7eeefcA8Fd",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x691435ED2282052a064B8748BA2E3C7eeefcA8Fd",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x79a7d4EF9870474F18A88524Bf2349393B0C2e03"
},
@@ -758,8 +1074,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x2B96db391d0f35f821e53De72508237492247e16",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2B96db391d0f35f821e53De72508237492247e16",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x2F0B60F0e269dc01132bdCcdD48Bb8CF33021f0a"
},
@@ -767,8 +1087,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x67Df6368177C950914C0F634d1a003a6caa18aC0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x67Df6368177C950914C0F634d1a003a6caa18aC0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x4A7961249E49642474f9161f245Fc52D59F14113"
},
@@ -776,8 +1100,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x7f399748490c25E32D3b8aaE4f0322c6466082B6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7f399748490c25E32D3b8aaE4f0322c6466082B6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x010c6F656E06f12BB3b115FCBC9ca282654795D2"
},
@@ -785,8 +1113,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x9ecde69DF43aDd57AA60949e6Db5AC7b6DC11831",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9ecde69DF43aDd57AA60949e6Db5AC7b6DC11831",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x23535421f6e13F2084684BB052F58d1b33E0dB8e"
},
@@ -794,8 +1126,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x37cB2B7A45F8d17936EBaBB4Ed95dE61f5371022",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x37cB2B7A45F8d17936EBaBB4Ed95dE61f5371022",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0xeF76346aBA1F8c671BA6F51cCb47e93b4BF72aa0"
},
@@ -803,8 +1139,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0xc75aCdceF4c679eaCb7a8CF1eF486B9Cf77478f8",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xc75aCdceF4c679eaCb7a8CF1eF486B9Cf77478f8",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x9813037ee2218799597d83D4a5B6F3b6778218d9"
},
@@ -812,8 +1152,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x1cdFc3B0fE64bb943829063D16ff7f835c0Fc28C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1cdFc3B0fE64bb943829063D16ff7f835c0Fc28C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x56357929B7d7720ac19ad55c923E85EdAC4Fc5D3"
},
@@ -821,8 +1165,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0xb88784Ff6fF162D3CD338627eBc171b08B17A1A3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb88784Ff6fF162D3CD338627eBc171b08B17A1A3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BONE",
"tokenAddress": "0xe785f763d30f583EE6666Fa0e84f8bc32E9D57B9"
},
@@ -830,8 +1178,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0xd17E7239feEF68Ac9fdeC962F8cCbEcb3E130F5D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd17E7239feEF68Ac9fdeC962F8cCbEcb3E130F5D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BONE",
"tokenAddress": "0xc4B60B24F644282aaF6739bc7eb1888C69dB2A4F"
},
@@ -839,8 +1191,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BONE SHIBASWAP",
- "poolAddress": "0x9342547460E0BE4C9559caE9cfF5E0772371F9Da",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9342547460E0BE4C9559caE9cfF5E0772371F9Da",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BONE",
"tokenAddress": "0x50E23d57309C61eab3D3d1EfE5DC02A36f945027"
}
@@ -850,8 +1206,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bedrock",
- "poolAddress": "0xEbaf5275843E4Ea7C9867307BB801D2a829e2a58",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEbaf5275843E4Ea7C9867307BB801D2a829e2a58",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BR",
"tokenAddress": "0xd352dc6e5F0c45E2F2b38eb5565EB286A1ea4087"
},
@@ -859,8 +1219,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bedrock",
- "poolAddress": "0x2E02DF052e7C4a12e1B334DC3D182c39bb754dc3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x2E02DF052e7C4a12e1B334DC3D182c39bb754dc3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BR",
"tokenAddress": "0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41"
},
@@ -868,8 +1232,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bedrock",
- "poolAddress": "0xA67AA68B1fF880dA771f2646a95d789EF929610b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA67AA68B1fF880dA771f2646a95d789EF929610b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BR",
"tokenAddress": "0xd6122ddADa244913521F3d62006eaF756c157660"
},
@@ -877,8 +1245,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bedrock",
- "poolAddress": "0x3d430E1380286560899B94E3E9459c4ec300EF9a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3d430E1380286560899B94E3E9459c4ec300EF9a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BR",
"tokenAddress": "0x9B61879e91a0b1322F3d61c23Aaf936231882096"
},
@@ -886,8 +1258,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Bedrock",
- "poolAddress": "3m8zgkeD3WSEqqjkG8UehV9uwAunkZoiZK99ZjPsyZxH",
- "poolType": "burnMint",
+ "pool": {
+ "address": "3m8zgkeD3WSEqqjkG8UehV9uwAunkZoiZK99ZjPsyZxH",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BR",
"tokenAddress": "BRryKTBVA4xYbgY6kkZtRWGEKz4aujNMeBkqNLRQbzp1"
}
@@ -897,8 +1273,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x163b337546725c1ef4b943f8d5113af803b5e01e3bc567d000f6565ca38e0aec",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x163b337546725c1ef4b943f8d5113af803b5e01e3bc567d000f6565ca38e0aec",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "brBTC",
"tokenAddress": "0x8e51106b139001f1f25a320066621a2e0d140724ee9be1d49aaf9e76ceb24d75"
},
@@ -906,8 +1286,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0xC82793e403a637ded107C3c9D0785776e46852A8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC82793e403a637ded107C3c9D0785776e46852A8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "brBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -915,8 +1299,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x5390E2e17C896244B7544e8566E9D77599700DE5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5390E2e17C896244B7544e8566E9D77599700DE5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "brBTC",
"tokenAddress": "0x733a6c29eDA4a58931AE81b8d91e29f2EAf01df3"
},
@@ -924,8 +1312,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x30837313d7f9B0450267ccf269A36EdE3A963E56",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x30837313d7f9B0450267ccf269A36EdE3A963E56",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "brBTC",
"tokenAddress": "0x3376eBCa0A85Fc8D791B1001a571C41fdd61514a"
},
@@ -933,8 +1325,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0xa08Eb272f3d0bE2ee6D6586fE7A8a129387118d4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa08Eb272f3d0bE2ee6D6586fE7A8a129387118d4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "brBTC",
"tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be"
},
@@ -942,8 +1338,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x110D97B046920e23d201d147B2AfD9e853Ec7c28",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x110D97B046920e23d201d147B2AfD9e853Ec7c28",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "brBTC",
"tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be"
},
@@ -951,8 +1351,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x330BF3C554ab94533069AF11313143eD3884cf15",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x330BF3C554ab94533069AF11313143eD3884cf15",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "brBTC",
"tokenAddress": "0xDfc7D2d003A053b2E0490531e9317A59962b511E"
},
@@ -960,8 +1364,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "0x512c2Ddf5f7F48a6c44cFF73CD8d7edEC5e6b0d8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x512c2Ddf5f7F48a6c44cFF73CD8d7edEC5e6b0d8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "brBTC",
"tokenAddress": "0x2eC37d45FCAE65D9787ECf71dc85a444968f6646"
},
@@ -969,8 +1377,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "brBTC",
- "poolAddress": "HzJ3Y9MCuywRV4YLd6a8gigee3WDpWUv1dS5z57QNRaT",
- "poolType": "burnMint",
+ "pool": {
+ "address": "HzJ3Y9MCuywRV4YLd6a8gigee3WDpWUv1dS5z57QNRaT",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "brBTC",
"tokenAddress": "brBg8x9yT4WnQd8Z43aX7wfrGMrimLfT2WCWRibHo3d"
}
@@ -980,8 +1392,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BTR Token",
- "poolAddress": "0x786248B634B1ebC7B5fc809c74a1A212fc920d63",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x786248B634B1ebC7B5fc809c74a1A212fc920d63",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BTR",
"tokenAddress": "0x0E4cF4Affdb72b39Ea91fA726D291781cBd020bF"
},
@@ -989,8 +1405,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BTR token",
- "poolAddress": "0x86248bE697645cfE0fdeB37FBa0102604f355eFA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x86248bE697645cfE0fdeB37FBa0102604f355eFA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BTR",
"tokenAddress": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51"
},
@@ -998,8 +1418,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BTR token",
- "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "BTR",
"tokenAddress": "0x6C76dE483F1752Ac8473e2B4983A873991e70dA7"
}
@@ -1009,8 +1433,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BYTES",
- "poolAddress": "0xAb2e4F219E1A24bA061E0Ecf07c0e3Dc7d410A9A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAb2e4F219E1A24bA061E0Ecf07c0e3Dc7d410A9A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BYTES",
"tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b"
},
@@ -1018,8 +1446,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BYTES",
- "poolAddress": "0x5d8cf2624Aafd77b5E2bA9d729658F9BD2058069",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5d8cf2624Aafd77b5E2bA9d729658F9BD2058069",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "BYTES",
"tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b"
},
@@ -1027,8 +1459,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BYTES",
- "poolAddress": "0x0ef01909C4aA5403654452729149F0Db8C7be1E1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0ef01909C4aA5403654452729149F0Db8C7be1E1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "BYTES",
"tokenAddress": "0xa19f5264F7D7Be11c451C093D8f92592820Bea86"
},
@@ -1036,8 +1472,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "BYTES",
- "poolAddress": "0x8Cc3af9D6f107124791A34DFD05A496983b0c11e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8Cc3af9D6f107124791A34DFD05A496983b0c11e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "BYTES",
"tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b"
}
@@ -1047,8 +1487,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Canned dog",
- "poolAddress": "0x5d7ccbaa5b0D65aa8A2Ed5989B32C64963fDF370",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5d7ccbaa5b0D65aa8A2Ed5989B32C64963fDF370",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CANNED",
"tokenAddress": "0xa2e543EE6531bb9640dde7ad018eA965cD936a67"
},
@@ -1056,8 +1500,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Canned dog",
- "poolAddress": "0x9076EFCAC1a98dF0edC756e3892ED0F54A2F4A29",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9076EFCAC1a98dF0edC756e3892ED0F54A2F4A29",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "CANNED",
"tokenAddress": "0x5d63C604803BbF7919953b73c89309B5CBcc227a"
}
@@ -1067,8 +1515,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Forkast",
- "poolAddress": "0xEcfec1595D273A71aC94370eA1C62480569dCAFf",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEcfec1595D273A71aC94370eA1C62480569dCAFf",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CGX",
"tokenAddress": "0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e"
},
@@ -1076,8 +1528,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Forkast",
- "poolAddress": "0x394d5854216d0d44c3828f49e201917451eb477B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x394d5854216d0d44c3828f49e201917451eb477B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CGX",
"tokenAddress": "0x656fE582B4C6DC95c598EA54dc820eb36152E2f7"
}
@@ -1087,8 +1543,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chintai Exchange Token",
- "poolAddress": "0x4ea2cb69c1a347cB2eEE8FE0EfFA2762b4aD68bb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4ea2cb69c1a347cB2eEE8FE0EfFA2762b4aD68bb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CHEX",
"tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f"
},
@@ -1096,8 +1556,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chintai Exchange Token",
- "poolAddress": "0x1c01171761A94538377FD0FDA230ec921274Df47",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1c01171761A94538377FD0FDA230ec921274Df47",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CHEX",
"tokenAddress": "0xc43F3Ae305a92043bd9b62eBd2FE14F7547ee485"
},
@@ -1105,8 +1569,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chintai Exchange Token",
- "poolAddress": "0xAF819a87231cF522f1e2b2965acdbC436c737c98",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAF819a87231cF522f1e2b2965acdbC436c737c98",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CHEX",
"tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f"
}
@@ -1116,8 +1584,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chiikawa",
- "poolAddress": "0xCE5c6D7383BB72Fd7890f07aCF51C76A36ac00fB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCE5c6D7383BB72Fd7890f07aCF51C76A36ac00fB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CHIKA",
"tokenAddress": "0xff70300dDED939Ff6db9174EB38EeC183a12344b"
},
@@ -1125,8 +1597,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chiikawa",
- "poolAddress": "0x9aD61F86CD457da798C859c26517acd1FC971c04",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9aD61F86CD457da798C859c26517acd1FC971c04",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "CHIKA",
"tokenAddress": "0x61CFA29261d8151D39244b8FfCf8DFd2f9DF3839"
}
@@ -1136,8 +1612,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Cakepie",
- "poolAddress": "0xA690C439dCd4a5507FCEB4Da0517a69e8244DB90",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA690C439dCd4a5507FCEB4Da0517a69e8244DB90",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CKP",
"tokenAddress": "0x2B5D9ADea07B590b638FFc165792b2C610EdA649"
},
@@ -1145,8 +1625,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Cakepie",
- "poolAddress": "0x97Cb0f52CF2270971eB588C1CE664F65382cd032",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x97Cb0f52CF2270971eB588C1CE664F65382cd032",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CKP",
"tokenAddress": "0x346Af1954e3d6be46B96dA713a1f7fD2d1928F1d"
}
@@ -1156,8 +1640,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clBTC",
- "poolAddress": "0xDDf56a92120E54B39D2E4ba4e92Cb23d45304e48",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDDf56a92120E54B39D2E4ba4e92Cb23d45304e48",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clBTC",
"tokenAddress": "0xb944e1ceb32E5672Bf48fE7145D1A5D4F3D95D25"
},
@@ -1165,8 +1653,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clBTC",
- "poolAddress": "0x77fBC9CBCd931d4059Df523950F9f685a6003eA1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x77fBC9CBCd931d4059Df523950F9f685a6003eA1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "clBTC",
"tokenAddress": "0x8d2757EA27AaBf172DA4CCa4e5474c76016e3dC5"
},
@@ -1174,8 +1666,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clBTC",
- "poolAddress": "0x604Ea3Dd67754bbd309a1657A2f5108559EEaBC9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x604Ea3Dd67754bbd309a1657A2f5108559EEaBC9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clBTC",
"tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae"
},
@@ -1183,8 +1679,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clBTC",
- "poolAddress": "0xBb8b739C28898F7d143584380e7b689ecCaB2c9F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBb8b739C28898F7d143584380e7b689ecCaB2c9F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clBTC",
"tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae"
}
@@ -1194,8 +1694,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Creative Token",
- "poolAddress": "0xE9daD7c1D857F09547703Be89Be102ca232D9837",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xE9daD7c1D857F09547703Be89Be102ca232D9837",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "CRTV",
"tokenAddress": "0x4B62D9b3DE9FAB98659693c9ee488D2E4eE56c44"
},
@@ -1203,8 +1707,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Creative Token",
- "poolAddress": "0x7A16780ABCa3CB7C1968c7C726C31A4916F4F828",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7A16780ABCa3CB7C1968c7C726C31A4916F4F828",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CRTV",
"tokenAddress": "0x06B9f097407084b9C7d82EA82E8FC693d3394eB6"
},
@@ -1212,8 +1720,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Creative Token",
- "poolAddress": "0x07d31ab079BF606BADdb806cced99D23284E62F2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x07d31ab079BF606BADdb806cced99D23284E62F2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CRTV",
"tokenAddress": "0xEB531C4470E8588520a7deb8B5Ea2289f9a9ad0f"
}
@@ -1223,8 +1735,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sol Killer",
- "poolAddress": "0x1dBDd800477B67191B70C51f327968f0F835c58d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1dBDd800477B67191B70C51f327968f0F835c58d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DAMN",
"tokenAddress": "0x28be0935fd470C46325Bc47A1c65C168E8473a3d"
},
@@ -1232,8 +1748,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sol Killer",
- "poolAddress": "0x68D443e22AEd9bdEF014Fad3FD19752CCeaE9990",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x68D443e22AEd9bdEF014Fad3FD19752CCeaE9990",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "DAMN",
"tokenAddress": "0xeCe898EdCc0AF91430603175F945D8de75291c70"
}
@@ -1243,8 +1763,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Degen Arena",
- "poolAddress": "0xC8c2Fe3Df1d300F366cE831a34276d7E4dd1F9B5",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xC8c2Fe3Df1d300F366cE831a34276d7E4dd1F9B5",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "DEGEN",
"tokenAddress": "0x420658A1d8B8F5C36DdAf1Bb828f347Ba9011969"
},
@@ -1252,8 +1776,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Degen Arena",
- "poolAddress": "0x09624a5520F0a452c5D3D8AefCd6B6E47FB5281f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x09624a5520F0a452c5D3D8AefCd6B6E47FB5281f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "DEGEN",
"tokenAddress": "0xf252cf43175CF739022E3A9533b2267dcFE1A830"
}
@@ -1263,8 +1791,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DFX Token (L2)",
- "poolAddress": "0x5B1f92CD2a3cd4137BDc16d92A78795F697bBf7c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5B1f92CD2a3cd4137BDc16d92A78795F697bBf7c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "DFX",
"tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93"
},
@@ -1272,8 +1804,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DFX Token",
- "poolAddress": "0xc2ef2f272D2C09b0a8523cEf32C96D3A7f379979",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xc2ef2f272D2C09b0a8523cEf32C96D3A7f379979",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "DFX",
"tokenAddress": "0x888888435FDe8e7d4c54cAb67f206e4199454c60"
},
@@ -1281,8 +1817,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DFX Token (L2)",
- "poolAddress": "0x04505E4182A2ab7989b03eB2321E3141C1c79187",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x04505E4182A2ab7989b03eB2321E3141C1c79187",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "DFX",
"tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93"
}
@@ -1292,8 +1832,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Decentralized Insurance Protocol Token",
- "poolAddress": "0x154d09dB12E6e1EF94e57ca1889ffEcBb90CE034",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x154d09dB12E6e1EF94e57ca1889ffEcBb90CE034",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DIP",
"tokenAddress": "0xAc86f3556cBd2b4d800D17ADC3a266B500FCB9F5"
},
@@ -1301,8 +1845,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Decentralized Insurance Protocol",
- "poolAddress": "0xAc3453eEF710e1E6457383F29D696Db5435Bf95b",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xAc3453eEF710e1E6457383F29D696Db5435Bf95b",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "DIP",
"tokenAddress": "0xc719d010B63E5bbF2C0551872CD5316ED26AcD83"
}
@@ -1312,8 +1860,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "DogeBonk.com",
- "poolAddress": "0x51364bc1a2FB9BC271612BF0936E857B5e000aAb",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x51364bc1a2FB9BC271612BF0936E857B5e000aAb",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "DOBO",
"tokenAddress": "0xAe2DF9F730c54400934c06a17462c41C08a06ED8"
},
@@ -1321,8 +1873,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "DogeBonk.com",
- "poolAddress": "0x5F49Ef413B9A0e8C31bf6ecBE67D9B98778294f2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5F49Ef413B9A0e8C31bf6ecBE67D9B98778294f2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DOBO",
"tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d"
},
@@ -1330,8 +1886,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "DogeBonk.com",
- "poolAddress": "0x11EDBA90ae48d44808AB984206F776932c8575A9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x11EDBA90ae48d44808AB984206F776932c8575A9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DOBO",
"tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d"
},
@@ -1339,8 +1899,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "DogeBonk.com",
- "poolAddress": "0x817404e98d28b8065c6e1C76E6bCD9088aEFb31A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x817404e98d28b8065c6e1C76E6bCD9088aEFb31A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "DOBO",
"tokenAddress": "0x3683f8F60A4a52ba7F26c43626E274913020aDaC"
}
@@ -1350,8 +1914,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Dolomite",
- "poolAddress": "0x9E7728077F753dFDF53C2236097E27C743890992",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9E7728077F753dFDF53C2236097E27C743890992",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DOLO",
"tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654"
},
@@ -1359,8 +1927,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Dolomite",
- "poolAddress": "0xeDD4b6936bDD9Fc272ac3a8dDC4A1b61b5C26bAC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xeDD4b6936bDD9Fc272ac3a8dDC4A1b61b5C26bAC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DOLO",
"tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654"
},
@@ -1368,8 +1940,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Dolomite",
- "poolAddress": "0xC69e7a187fA739028Ee613426795D91B610932c7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC69e7a187fA739028Ee613426795D91B610932c7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DOLO",
"tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654"
}
@@ -1379,8 +1955,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DefiPulse Index",
- "poolAddress": "0x5dFdAF7A7BDB9Da17FF22a8a796e2fcE58daA5b2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5dFdAF7A7BDB9Da17FF22a8a796e2fcE58daA5b2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DPI",
"tokenAddress": "0x9737C658272e66Faad39D7AD337789Ee6D54F500"
},
@@ -1388,8 +1968,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DefiPulse Index",
- "poolAddress": "0xA77Ca3B16aEe1e177FD8Eff038F929819B75490f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA77Ca3B16aEe1e177FD8Eff038F929819B75490f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DPI",
"tokenAddress": "0xc6955B85b622369a54Cc8C6DBeCb8e03c0885BD8"
},
@@ -1397,8 +1981,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DefiPulse Index",
- "poolAddress": "0x9b8FEf06D74c3880FC6886b3c6FbbBf601Db0DCC",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9b8FEf06D74c3880FC6886b3c6FbbBf601Db0DCC",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "DPI",
"tokenAddress": "0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b"
}
@@ -1408,8 +1996,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Diversified Staked ETH Index",
- "poolAddress": "0xabB35cA480b3f9bcB770fCB7447017373da2Bea6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xabB35cA480b3f9bcB770fCB7447017373da2Bea6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "dsETH",
"tokenAddress": "0x6320320979A901aAb3461A8D9718Ab9CF07E73D3"
},
@@ -1417,8 +2009,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Diversified Staked ETH Index",
- "poolAddress": "0x9061247649e327B7DFd256D882dCC0A0D6d86A8e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9061247649e327B7DFd256D882dCC0A0D6d86A8e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "dsETH",
"tokenAddress": "0x37E7C051Dc5A24313cEEC581222882648ba537aa"
},
@@ -1426,8 +2022,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Diversified Staked ETH Index (dsETH)",
- "poolAddress": "0x8E7ebBb95e369BC854Ee7021C7CF2E282c3bCAEa",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8E7ebBb95e369BC854Ee7021C7CF2E282c3bCAEa",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "dsETH",
"tokenAddress": "0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE"
}
@@ -1437,8 +2037,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "EARNM Token",
- "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "EARNM",
"tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5"
},
@@ -1446,8 +2050,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "EARNM Token",
- "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "EARNM",
"tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5"
},
@@ -1455,8 +2063,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "EARNM Token",
- "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "EARNM",
"tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5"
},
@@ -1464,8 +2076,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "EARNM Token",
- "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "EARNM",
"tokenAddress": "0xBA98B09050F8837424fa8b71B4802c61cb1a4097"
}
@@ -1475,8 +2091,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Eden Token",
- "poolAddress": "0x74d0DD4551e4BF18e13c630C1a537fAF323bB43C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x74d0DD4551e4BF18e13c630C1a537fAF323bB43C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "EDEN",
"tokenAddress": "0x235B6fe22B4642aDa16D311855c49Ce7DE260841"
},
@@ -1484,8 +2104,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Eden Token",
- "poolAddress": "0xC8ADf2f51a35b0a9d8f74675b64c954Ca2Dcbc14",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC8ADf2f51a35b0a9d8f74675b64c954Ca2Dcbc14",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "EDEN",
"tokenAddress": "0x24A3D725C37A8D1a66Eb87f0E5D07fE67c120035"
}
@@ -1495,8 +2119,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bridged egETH",
- "poolAddress": "0xac939a46B8CE13205C68e949205c4683cfE715Ca",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xac939a46B8CE13205C68e949205c4683cfE715Ca",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "Bridged egETH",
"tokenAddress": "0x6C49A527bdd2E09D4337C8699aA7B44dD053Eda8"
},
@@ -1504,8 +2132,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Eigenpie Restaked ETH",
- "poolAddress": "0x4E63008092645521CFc989FB78c1324CDd371ed0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x4E63008092645521CFc989FB78c1324CDd371ed0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "egETH",
"tokenAddress": "0x18f313Fc6Afc9b5FD6f0908c1b3D476E3feA1DD9"
},
@@ -1513,8 +2145,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "egETH",
- "poolAddress": "0x2e797C6b88bEBbD540831F4E55Ed56fDf06a49a7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2e797C6b88bEBbD540831F4E55Ed56fDf06a49a7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "egETH",
"tokenAddress": "0x8631e02168176AB709Cadf4Bcaea0B6266f5fa41"
}
@@ -1524,8 +2160,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "elizaOS",
- "poolAddress": "0x3092650398cF38c548eA512C69564b086a357bcD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3092650398cF38c548eA512C69564b086a357bcD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "elizaOS",
"tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478"
},
@@ -1533,8 +2173,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "elizaOS",
- "poolAddress": "0x074D27002E1f0b89fEd9685af6e15a6EA8141A33",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x074D27002E1f0b89fEd9685af6e15a6EA8141A33",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "elizaOS",
"tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478"
},
@@ -1542,8 +2186,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "elizaOS",
- "poolAddress": "0xC03F9E6c1C5F5D553C77781327640E0c7d30a73d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC03F9E6c1C5F5D553C77781327640E0c7d30a73d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "elizaOS",
"tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478"
},
@@ -1551,8 +2199,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "elizaOS",
- "poolAddress": "9RyrjX5Jy3gFpYa4HLBBiK9sHWvvC9YTDKh1XZzJynSz",
- "poolType": "burnMint",
+ "pool": {
+ "address": "9RyrjX5Jy3gFpYa4HLBBiK9sHWvvC9YTDKh1XZzJynSz",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "elizaOS",
"tokenAddress": "DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA"
}
@@ -1562,8 +2214,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "EmGEMx Switzerland",
- "poolAddress": "0x0Fc71Baa3d2e40299c2c8039F6d7a24eF43509d8",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0Fc71Baa3d2e40299c2c8039F6d7a24eF43509d8",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "EmCH",
"tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710"
},
@@ -1571,8 +2227,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "EmGEMx Switzerland",
- "poolAddress": "0x4488d79B3996364dBa219d98e82a6B0A3D937E62",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4488d79B3996364dBa219d98e82a6B0A3D937E62",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "EmCH",
"tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710"
}
@@ -1582,8 +2242,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lorenzo Wrapped Bitcoin",
- "poolAddress": "0xcb0FcCcb7a624395BaE54C3d3D0Ee27BC61Bd57a",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xcb0FcCcb7a624395BaE54C3d3D0Ee27BC61Bd57a",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "enzoBTC",
"tokenAddress": "0x6A9A65B84843F5fD4aC9a0471C4fc11AFfFBce4a"
},
@@ -1591,8 +2255,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lorenzo Wrapped Bitcoin",
- "poolAddress": "0xDA1EbA3837Ea8D96e6c24494F8590028Bc7C4788",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDA1EbA3837Ea8D96e6c24494F8590028Bc7C4788",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "enzoBTC",
"tokenAddress": "0x1586E9A616B969e26f0712C504320a6800b5ce91"
}
@@ -1602,8 +2270,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ETHx",
- "poolAddress": "0xc707F7E0f73c17a4eE7D3965c7b3c5E0ab42cBf5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc707F7E0f73c17a4eE7D3965c7b3c5E0ab42cBf5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ETHx",
"tokenAddress": "0xED65C5085a18Fa160Af0313E60dcc7905E944Dc7"
},
@@ -1611,8 +2283,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ETHx",
- "poolAddress": "0xb144FcE921D564d77FD9F226965984654C1AFA55",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb144FcE921D564d77FD9F226965984654C1AFA55",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ETHx",
"tokenAddress": "0xc54B43eaF921A5194c7973A4d65E055E5a1453c2"
},
@@ -1620,8 +2296,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ETHx",
- "poolAddress": "0xeAD31B98179e2637Bb052a970Ac92Cbb2E26461d",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xeAD31B98179e2637Bb052a970Ac92Cbb2E26461d",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "ETHx",
"tokenAddress": "0xA35b1B31Ce002FBF2058D22F30f95D405200A15b"
}
@@ -1631,8 +2311,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "eUSX Token",
- "poolAddress": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "eUSX",
"tokenAddress": "0x21ACfc23D57dB524599dA96603acb5e97De2b7B2"
},
@@ -1640,8 +2324,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "eUSX ",
- "poolAddress": "3BLXohtpL2iyHsJLYzp4fmy9ZjbjE7ocPfDMFaU7U3gD",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "3BLXohtpL2iyHsJLYzp4fmy9ZjbjE7ocPfDMFaU7U3gD",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "eUSX",
"tokenAddress": "3ThdFZQKM6kRyVGLG48kaPg5TRMhYMKY1iCRa9xop1WC"
}
@@ -1651,8 +2339,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "FEED",
- "poolAddress": "0x6419221A0856f507a0b869814e461033d810990b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6419221A0856f507a0b869814e461033d810990b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "FEED",
"tokenAddress": "0xc3d77Eb7665eDF3c1D3Bdaa325A14D6ff254d2dD"
},
@@ -1660,8 +2352,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "FEED",
- "poolAddress": "0x9a22e73ef65F7EA0E6f2aE40F6847c944D3B5153",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9a22e73ef65F7EA0E6f2aE40F6847c944D3B5153",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "FEED",
"tokenAddress": "0xe9Cb2D7ADC24Fc59FE00D6C0A0669BDF16805Fe0"
}
@@ -1671,8 +2367,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Falcon Finance",
- "poolAddress": "0x470ed414d305D2C784501Cc68e086E3B59d6E51E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x470ed414d305D2C784501Cc68e086E3B59d6E51E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "FF",
"tokenAddress": "0xAC23B90A79504865D52B49B327328411a23d4dB2"
},
@@ -1680,8 +2380,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Falcon Finance",
- "poolAddress": "0x05ddaB21b57d0Dca8C3955c366526A229577558e",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x05ddaB21b57d0Dca8C3955c366526A229577558e",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "FF",
"tokenAddress": "0xFA1C09fC8B491B6A4d3Ff53A10CAd29381b3F949"
}
@@ -1691,8 +2395,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MindNetwork FHE Token",
- "poolAddress": "0x8FA979BCf82859C994b82166390DFB03951CA86D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8FA979BCf82859C994b82166390DFB03951CA86D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "FHE",
"tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E"
},
@@ -1700,8 +2408,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MindNetwork FHE Token",
- "poolAddress": "0xCf2B643114b1098E5bc09B49f4D73C6A8Ea1c871",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCf2B643114b1098E5bc09B49f4D73C6A8Ea1c871",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "FHE",
"tokenAddress": "0x8096cD953Fa2ABa1E60Dad27A3e58d71dF2F62F1"
},
@@ -1709,8 +2421,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MindNetwork FHE Token",
- "poolAddress": "0x0c31b5DcF3CD6e588938D0699912d0028c911362",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0c31b5DcF3CD6e588938D0699912d0028c911362",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "FHE",
"tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E"
},
@@ -1718,8 +2434,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MindNetwork FHE Token",
- "poolAddress": "0xA88AEdaF95c85b5618379765f2725fFa6313B9DA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA88AEdaF95c85b5618379765f2725fFa6313B9DA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "FHE",
"tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E"
},
@@ -1727,8 +2447,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "MindNetwork FHE Token",
- "poolAddress": "DJSZFhHPB197D5HRTvmPZ5e446wZihscHAPVmgw8jZ23",
- "poolType": "burnMint",
+ "pool": {
+ "address": "DJSZFhHPB197D5HRTvmPZ5e446wZihscHAPVmgw8jZ23",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "FHE",
"tokenAddress": "AUyYTiXWP77qerK7Ccb12oz27kdVcqCqDCe8MUBCWqWH"
}
@@ -1738,8 +2462,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Fluid",
- "poolAddress": "0x2d29D728C48C3F75e221D28d844E2bdFe5656BfC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2d29D728C48C3F75e221D28d844E2bdFe5656BfC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "FLUID",
"tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd"
},
@@ -1747,8 +2475,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Fluid",
- "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "FLUID",
"tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd"
},
@@ -1756,8 +2488,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Fluid",
- "poolAddress": "0x639f35C5E212D61Fe14Bd5CD8b66aAe4df11a50c",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x639f35C5E212D61Fe14Bd5CD8b66aAe4df11a50c",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "FLUID",
"tokenAddress": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb"
},
@@ -1765,8 +2501,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Fluid",
- "poolAddress": "0x10fD7245f6ca39885D3A398b03dCcCC833fC96A1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10fD7245f6ca39885D3A398b03dCcCC833fC96A1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "FLUID",
"tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd"
},
@@ -1774,8 +2514,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "FLUID",
- "poolAddress": "G9gWPSi5WFQuDEujXZgtuaD63uGmaGwfot6MiRZZ9pNm",
- "poolType": "burnMint",
+ "pool": {
+ "address": "G9gWPSi5WFQuDEujXZgtuaD63uGmaGwfot6MiRZZ9pNm",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "FLUID",
"tokenAddress": "DuEy8wWrzCUun5ZbbG9hkVqXqqicpTQw8gB7nEAzpCHQ"
}
@@ -1785,8 +2529,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Generative Protocol",
- "poolAddress": "0x4097142E53fAA47b02f57D61Cf58787c3B6d951b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4097142E53fAA47b02f57D61Cf58787c3B6d951b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "GEN",
"tokenAddress": "0x876ceF4219752930c93446fF15bF64A94ed404D5"
},
@@ -1794,8 +2542,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Generative Protocol",
- "poolAddress": "0x003491Bdfe15179aC2cEfEf9F5D0e235F096C3b0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x003491Bdfe15179aC2cEfEf9F5D0e235F096C3b0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "GEN",
"tokenAddress": "0x442457bA124721f7e0AB7bf8a80FBc35ACDdc9f5"
}
@@ -1805,8 +2557,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "GHO",
"tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73"
},
@@ -1814,8 +2570,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0xB94Ab28c6869466a46a42abA834ca2B3cECCA5eB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB94Ab28c6869466a46a42abA834ca2B3cECCA5eB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "GHO",
"tokenAddress": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33"
},
@@ -1823,8 +2583,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0x98217A06721Ebf727f2C8d9aD7718ec28b7aAe34",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x98217A06721Ebf727f2C8d9aD7718ec28b7aAe34",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "GHO",
"tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee"
},
@@ -1832,8 +2596,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "GHO",
"tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73"
},
@@ -1841,8 +2609,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0x06179f7C1be40863405f374E7f5F8806c728660A",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x06179f7C1be40863405f374E7f5F8806c728660A",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "GHO",
"tokenAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f"
},
@@ -1850,8 +2622,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "GHO",
"tokenAddress": "0xb77E872A68C62CfC0dFb02C067Ecc3DA23B4bbf3"
},
@@ -1859,8 +2635,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Gho Token",
- "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "GHO",
"tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73"
}
@@ -1870,8 +2650,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Graph Token",
- "poolAddress": "0xf0b6E11fB42fA8874cCB422C22D8036b1742B783",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf0b6E11fB42fA8874cCB422C22D8036b1742B783",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "GRT",
"tokenAddress": "0x408A6A9E7aFa805B92953e5E92D93d5DCCa2B4a2"
},
@@ -1879,8 +2663,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Graph Token",
- "poolAddress": "0x318Ec96df83AccC18B5EAD5D23e0F022F7Eb5503",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x318Ec96df83AccC18B5EAD5D23e0F022F7Eb5503",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "GRT",
"tokenAddress": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7"
},
@@ -1888,8 +2676,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Graph Token",
- "poolAddress": "0xC1E69F1b34E7F8d05919965Fc81FC7aDB546A52b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC1E69F1b34E7F8d05919965Fc81FC7aDB546A52b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "GRT",
"tokenAddress": "0x7CCC78a24C3311eB6f6806f6fcf2c07CAe78CfE3"
}
@@ -1899,8 +2691,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "High Yield ETH Index",
- "poolAddress": "0x288B1b97603b4ae48F18B893caf721f20fcb0E59",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x288B1b97603b4ae48F18B893caf721f20fcb0E59",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "hyETH",
"tokenAddress": "0x8b5D1d8B3466eC21f8eE33cE63F319642c026142"
},
@@ -1908,8 +2704,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "High Yield ETH Index",
- "poolAddress": "0xbEE038Af079a702b2ED0af7886DA101443Ddb1CE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbEE038Af079a702b2ED0af7886DA101443Ddb1CE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "hyETH",
"tokenAddress": "0xC73e76Aa9F14C1837CDB49bd028E8Ff5a0a71dAD"
},
@@ -1917,8 +2717,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "High Yield ETH Index",
- "poolAddress": "0x3999490C55Fb8332F5f3AD00212435526fA3E576",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x3999490C55Fb8332F5f3AD00212435526fA3E576",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "hyETH",
"tokenAddress": "0xc4506022Fb8090774E8A628d5084EED61D9B99Ee"
}
@@ -1928,8 +2732,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "iBTC",
- "poolAddress": "0xCBeD22C12b9CBFaBa8E352D1EC6279885Df8725F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCBeD22C12b9CBFaBa8E352D1EC6279885Df8725F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "IBTC",
"tokenAddress": "0x050C24dBf1eEc17babE5fc585F06116A259CC77A"
},
@@ -1937,8 +2745,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "iBTC",
- "poolAddress": "0x206E9A22B384d3863b606C41030Ec2A19D3CBb95",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x206E9A22B384d3863b606C41030Ec2A19D3CBb95",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "IBTC",
"tokenAddress": "0x12418783e860997eb99e8aCf682DF952F721cF62"
},
@@ -1946,8 +2758,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "iBTC",
- "poolAddress": "0xb6f8e9604BAFD1482631740931783998e9E736A7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb6f8e9604BAFD1482631740931783998e9E736A7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "IBTC",
"tokenAddress": "0x2bAa7E92F3F14883264BfA63058cC223Ad719438"
},
@@ -1955,8 +2771,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "iBTC",
- "poolAddress": "0x08B4058F16D243C977ea1fe91B20Af31057b5aBb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x08B4058F16D243C977ea1fe91B20Af31057b5aBb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "IBTC",
"tokenAddress": "0x20157DBAbb84e3BBFE68C349d0d44E48AE7B5AD2"
}
@@ -1966,8 +2786,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Iluminary Token",
- "poolAddress": "0xa132F089492CcE5f1D79483a9e4552f37266ed01",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa132F089492CcE5f1D79483a9e4552f37266ed01",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ILMT",
"tokenAddress": "0x98a0a245Ef9A96Cf28f1Ebf1a3b3bC562Ed8D783"
},
@@ -1975,8 +2799,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "iLuminary Token",
- "poolAddress": "GhgD4CQxPxrV3Ad3xaZn6AAJ6f1R5rKN3n2gkBzQ23jU",
- "poolType": "burnMint",
+ "pool": {
+ "address": "GhgD4CQxPxrV3Ad3xaZn6AAJ6f1R5rKN3n2gkBzQ23jU",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ILMT",
"tokenAddress": "Au6V6WrkjWZYSdCJtJFYPysZXr1qncHXZshZ7w8SnDjv"
}
@@ -1986,8 +2814,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xPlanetIX",
- "poolAddress": "0x1e9C67b9cbe6FfFfDc441Be359d9f78B5167f30E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1e9C67b9cbe6FfFfDc441Be359d9f78B5167f30E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xIXT",
"tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7"
},
@@ -1995,8 +2827,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xPlanetIX",
- "poolAddress": "0x803e3858B81E0595E5F39946a68AF3546D629ee7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x803e3858B81E0595E5F39946a68AF3546D629ee7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xIXT",
"tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7"
},
@@ -2004,8 +2840,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PlanetIX",
- "poolAddress": "0xF85fB90550bB01905556Efd7B07eDe487097Bf78",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF85fB90550bB01905556Efd7B07eDe487097Bf78",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "IXT",
"tokenAddress": "0xD32B4e4a565A1B786979276de16a13eA2e10bECd"
},
@@ -2013,8 +2853,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xPlanetIX",
- "poolAddress": "0x51df9751404DB200b354ED6a5e27DdA6C557883D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x51df9751404DB200b354ED6a5e27DdA6C557883D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xIXT",
"tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7"
},
@@ -2022,8 +2866,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PlanetIX",
- "poolAddress": "0x8206A135cac573a2f96873dc7ad7C83B08725FaB",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8206A135cac573a2f96873dc7ad7C83B08725FaB",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "IXT",
"tokenAddress": "0xE06Bd4F5aAc8D0aA337D13eC88dB6defC6eAEefE"
}
@@ -2033,8 +2881,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "JasmyCoin",
- "poolAddress": "0xc929ad75B72593967DE83E7F7Cda0493458261D9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc929ad75B72593967DE83E7F7Cda0493458261D9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "JASMY",
"tokenAddress": "0x991Ad9149f3fe170ACc152BE2D46B804de688Ed8"
},
@@ -2042,8 +2894,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "JasmyCoin",
- "poolAddress": "0x3f7AeF129Ce37EA06150C176677bEc75EF29A33f",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x3f7AeF129Ce37EA06150C176677bEc75EF29A33f",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "JASMY",
"tokenAddress": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC"
}
@@ -2053,8 +2909,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "JANCTION",
- "poolAddress": "0xdA1B1B3d3C97974B272E28f70F25Ab7c290e8357",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdA1B1B3d3C97974B272E28f70F25Ab7c290e8357",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "JCT",
"tokenAddress": "0xeA37A8DE1de2d9D10772EEB569e28Bfa5Cb17707"
},
@@ -2062,8 +2922,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "JANCTION",
- "poolAddress": "0x58e53cad56180743aCE00349Ef3E1BFE4EfF5732",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x58e53cad56180743aCE00349Ef3E1BFE4EfF5732",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "JCT",
"tokenAddress": "0xC477B6dfd26EC2460b3b92de18837Fd476Ea7549"
}
@@ -2073,8 +2937,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Kinetiq Staked HYPE",
- "poolAddress": "0xca02b4fd9a4e5dAd986eA2Ecb5d7bb43fa9bC605",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xca02b4fd9a4e5dAd986eA2Ecb5d7bb43fa9bC605",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "kHYPE",
"tokenAddress": "0xfD739d4e423301CE9385c1fb8850539D657C296D"
},
@@ -2082,8 +2950,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Kinetiq Staked HYPE",
- "poolAddress": "0xf76A0c47900ca2dD1874AB4Dc4049810E919684d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf76A0c47900ca2dD1874AB4Dc4049810E919684d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "kHYPE",
"tokenAddress": "0x319053B625e598994Dd1179948771a4C2f66b873"
}
@@ -2093,8 +2965,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Kingnet AI",
- "poolAddress": "0x02E5F79eFD3c5e0306fD1127787EA672634AACF1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x02E5F79eFD3c5e0306fD1127787EA672634AACF1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "KNET",
"tokenAddress": "0x8b24BF9fE8BB1D4D9deA81Eebc9Fed6F0Fc67a46"
},
@@ -2102,8 +2978,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Kingnet AI",
- "poolAddress": "5skyDWAPgiNe7ttGoEEdn4Z3dHxvkF4vi3wGdebQ76cR",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "5skyDWAPgiNe7ttGoEEdn4Z3dHxvkF4vi3wGdebQ76cR",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "KNET",
"tokenAddress": "CfVs3waH2Z9TM397qSkaipTDhA9wWgtt8UchZKfwkYiu"
}
@@ -2113,8 +2993,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landshare Token",
- "poolAddress": "0x3404C137c2AA3Cf69c7322c6f39a6cbd8c3b769D",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x3404C137c2AA3Cf69c7322c6f39a6cbd8c3b769D",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "LAND",
"tokenAddress": "0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C"
},
@@ -2122,8 +3006,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landshare Token",
- "poolAddress": "0x0d13d3683DD866FDfd6707976eb38Fa9A058E100",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0d13d3683DD866FDfd6707976eb38Fa9A058E100",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LAND",
"tokenAddress": "0x27Bc2757fAb0b8aB406016D1f71d8123452095d3"
},
@@ -2131,8 +3019,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landshare Token",
- "poolAddress": "0x047beEDAC57540d407db63aD6CF72Bde07c5B093",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x047beEDAC57540d407db63aD6CF72Bde07c5B093",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LAND",
"tokenAddress": "0xC03E6ad83dE7C58c9166fF08D66B960d78e64105"
}
@@ -2142,8 +3034,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xd24658051aa6c8ACf874F686D5dA325a87d2D146",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd24658051aa6c8ACf874F686D5dA325a87d2D146",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2151,8 +3047,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2160,8 +3060,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xf191a1CE04fD54f090B4d97316258b6009C562d7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf191a1CE04fD54f090B4d97316258b6009C562d7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2169,8 +3073,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0x770D1bbdca08e3272233709B27C004F510bfDf86",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x770D1bbdca08e3272233709B27C004F510bfDf86",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2178,8 +3086,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0x2A70CbF60a9252Ff312719885088283f930750BA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2A70CbF60a9252Ff312719885088283f930750BA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2187,8 +3099,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0x9Ef2919f333Cdf13Fb609C0341bE0c852f691788",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9Ef2919f333Cdf13Fb609C0341bE0c852f691788",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2196,8 +3112,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0x88E18636EfFC3b3cd520FC72B710eb99C0017BC7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x88E18636EfFC3b3cd520FC72B710eb99C0017BC7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0x8236a87084f8B84306f72007F36F2618A5634494"
},
@@ -2205,8 +3125,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xD9527ffE58CbEcC9A64511Fc559e0C0825Df940a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD9527ffE58CbEcC9A64511Fc559e0C0825Df940a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2214,8 +3138,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xE4B5166b1D60C2208A934176522461c470A37d56",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE4B5166b1D60C2208A934176522461c470A37d56",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2223,8 +3151,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0x775C438b07d5667aEFa3DE493A7cc2Df3a199E99",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x775C438b07d5667aEFa3DE493A7cc2Df3a199E99",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2232,8 +3164,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xD7F069e67345ED91AC699e7EcFDc211782495888",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD7F069e67345ED91AC699e7EcFDc211782495888",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
},
@@ -2241,8 +3177,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Lombard Staked Bitcoin",
- "poolAddress": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LBTC",
"tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1"
}
@@ -2252,8 +3192,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Ledgity Token",
- "poolAddress": "0x9C4a695903Eaa0d958F3ECabdD8b9122c08505ac",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9C4a695903Eaa0d958F3ECabdD8b9122c08505ac",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LDY",
"tokenAddress": "0x999FAF0AF2fF109938eeFE6A7BF91CA56f0D07e1"
},
@@ -2261,8 +3205,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Ledgity Token",
- "poolAddress": "0x9d5665F2C06C77dF7B3f3bbEE0a14e63dCd614b2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9d5665F2C06C77dF7B3f3bbEE0a14e63dCd614b2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LDY",
"tokenAddress": "0x055d20a70eFd45aB839Ae1A39603D0cFDBDd8a13"
},
@@ -2270,8 +3218,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Ledgity Token",
- "poolAddress": "0x542BF6910dB102D10f84565E041c2761BE95be84",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x542BF6910dB102D10f84565E041c2761BE95be84",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "LDY",
"tokenAddress": "0x482dF7483a52496F4C65AB499966dfcdf4DDFDbc"
}
@@ -2281,8 +3233,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x56046FcadbcB62eD4b5643aF09724313624e88e1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x56046FcadbcB62eD4b5643aF09724313624e88e1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x897Ce250199d102Ea103Aaf3a6E7906cde757560"
},
@@ -2290,8 +3246,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x385FE033d211BEA56a2E0bF0DE39feB1cE24DFC9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x385FE033d211BEA56a2E0bF0DE39feB1cE24DFC9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0xf94A52468fF79862B8f288faF7900d34e74A1992"
},
@@ -2299,8 +3259,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x33aC23E54A7Bfb159e781c8973B832b3bE2Bf211",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x33aC23E54A7Bfb159e781c8973B832b3bE2Bf211",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0x2b702DC45b540aEDA62F60cE4E5BFAED37b1D27a"
},
@@ -2308,8 +3272,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x2133c3b98928d0DC519Fc0607EB39DC2fc4b9df4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2133c3b98928d0DC519Fc0607EB39DC2fc4b9df4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0xc55eABF6624224b6E185B6A79a3217e0e751046A"
},
@@ -2317,8 +3285,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xDFb202aD6734530d60501aEaC1BCf99688D8319F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDFb202aD6734530d60501aEaC1BCf99688D8319F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x1649DE9028C0a6B958118A977099d66eF0DA5a92"
},
@@ -2326,8 +3298,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xB23a7814f718448ba2e1a2B362a8AB0c4e8Ab341",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB23a7814f718448ba2e1a2B362a8AB0c4e8Ab341",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x90B0C73F19bd2EB9Bcd6b1C6c787a63ae851b336"
},
@@ -2335,8 +3311,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x26dEd7458Bf906316b638504965D1e9D5AE73c57",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x26dEd7458Bf906316b638504965D1e9D5AE73c57",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0xBc53643F2D736743ed29B6dC36E30F5Fb8941090"
},
@@ -2344,8 +3324,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x3da3283E0D0c30b44BA899b37fD6da6D0B776646",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3da3283E0D0c30b44BA899b37fD6da6D0B776646",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x4e1a69B48A7aE9Fc8fD2623089c4B378f24a64A9"
},
@@ -2353,8 +3337,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xA6a6663a159e80ad3682698b0a595DF3594491B5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA6a6663a159e80ad3682698b0a595DF3594491B5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x70Ed1C42D29678D2D5Bad7197A4281B095AD7fD6"
},
@@ -2362,8 +3350,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x852467AB8b1bBB2D1c8d8802cd7820B906D4609A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x852467AB8b1bBB2D1c8d8802cd7820B906D4609A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0xA3D0D0C81dBe4511724f875F7f2fa794a14bee64"
},
@@ -2371,8 +3363,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x975f51b7BFac520F35A791F5E4206162300244c3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x975f51b7BFac520F35A791F5E4206162300244c3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0xDE4dd6Db8072eb6999B88B7D7E0c8C0C01637578"
},
@@ -2380,8 +3376,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x1d201c7277f971CBb6Cf32636E79187c83C58490",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1d201c7277f971CBb6Cf32636E79187c83C58490",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0xCEeDbfc700d17A277Ab1cA9E19A2CaF0c42ced41"
},
@@ -2389,8 +3389,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x7f5BB6146B490B6C1e1c8D8fD60FDE93636274b1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7f5BB6146B490B6C1e1c8D8fD60FDE93636274b1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0xa9BBE4c88F4988Ec8328e44b0889404824aBEb62"
},
@@ -2398,8 +3402,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xef98939F005Da3Aa186ebb842842569213863D17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xef98939F005Da3Aa186ebb842842569213863D17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0x743C48C6057b4c2480F2458F2D1CE967dF96B724"
},
@@ -2407,8 +3415,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xEa9c3dB69C9eE60FB0B06d1A1c9077B16F2D7C82",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xEa9c3dB69C9eE60FB0B06d1A1c9077B16F2D7C82",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x27C70Cd1946795B66be9d954418546998b546634"
},
@@ -2416,8 +3428,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x711948bE2234b51653dD9978c107671aF4Eb8d7F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x711948bE2234b51653dD9978c107671aF4Eb8d7F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x6aF85BfA857bB88F2E3Ae07839182491d34ca11d"
},
@@ -2425,8 +3441,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x1D67640d37117Cbe876c5C50e6e2B6DE0c53dA70",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1D67640d37117Cbe876c5C50e6e2B6DE0c53dA70",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0x2992F24a5d1A2914C0981933E9870e76d60D299c"
},
@@ -2434,8 +3454,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0x5EF69257f95d822b7D6dd60Ee574A34e66D6B3B2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5EF69257f95d822b7D6dd60Ee574A34e66D6B3B2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEASH",
"tokenAddress": "0x3C76af2dCCd31ac4A146C0d55cCc4bfd13051379"
},
@@ -2443,8 +3467,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DOGE KILLER",
- "poolAddress": "0xEaA2885DcdD6689a95642DC6d72F24F81EB170f5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEaA2885DcdD6689a95642DC6d72F24F81EB170f5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEASH",
"tokenAddress": "0xBb1ea2697b13Cc06e03D875D2d39c06AC6dd5a93"
}
@@ -2454,8 +3482,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
},
@@ -2463,8 +3495,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
},
@@ -2472,8 +3508,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
},
@@ -2481,8 +3521,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
},
@@ -2490,8 +3534,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
},
@@ -2499,8 +3547,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lendefi DAO",
- "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x934635de453A1161D02Ce395F2F59E775597fE13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LEND",
"tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d"
}
@@ -2510,8 +3562,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xF81f4a748F8d2DbCA48Bfa704968A76fB062A358",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF81f4a748F8d2DbCA48Bfa704968A76fB062A358",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x76159c2b43ff6F630193e37EC68452169914C1Bb"
},
@@ -2519,8 +3575,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xD3F31950e5Ec340b021D0d27454F44Edb7304C18",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD3F31950e5Ec340b021D0d27454F44Edb7304C18",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2528,7 +3588,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd"
},
@@ -2536,7 +3600,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xf575731b78981B86d34321d875A3D25a48479be6"
},
@@ -2544,8 +3612,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "ChainLink Token",
- "poolAddress": "0x7a5dcf83decbfc7418ae0d37be93370b47bf9bc4657dacd1a02d6f58629f6b38",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7a5dcf83decbfc7418ae0d37be93370b47bf9bc4657dacd1a02d6f58629f6b38",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x8c764993820ea735719f1ff7f1a0f80c022b18e7b5daefa35adf60a3a6556566"
},
@@ -2553,7 +3625,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Chainlink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK.e",
"tokenAddress": "0x5947BB275c521040051D82396192181b413227A3"
},
@@ -2561,7 +3637,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2569,7 +3649,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA"
},
@@ -2577,7 +3661,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x56B275c0Ec034a229a1deD8DB17089544bc276D9"
},
@@ -2585,7 +3673,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x5aB885CDa7216b163fb6F813DEC1E1532516c833"
},
@@ -2593,7 +3685,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x30e85A5c9525AD9a7A0FA5C74df4Baf0b01aD241"
},
@@ -2601,7 +3697,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39"
},
@@ -2609,7 +3709,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2617,7 +3721,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xf09AFe78d3c7d359b334d7cB88995751F7eC5E13"
},
@@ -2625,7 +3733,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x404460C6A5EdE2D891e8297795264fDe62ADBB75"
},
@@ -2633,8 +3745,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0"
},
@@ -2642,7 +3758,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b"
},
@@ -2650,7 +3770,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2"
},
@@ -2658,7 +3782,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85"
},
@@ -2666,7 +3794,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E"
},
@@ -2674,8 +3806,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353"
},
@@ -2683,7 +3819,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4"
},
@@ -2691,8 +3831,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xBA148bAF60CCc4d7D86aED4fCff04D5b3265cAd4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBA148bAF60CCc4d7D86aED4fCff04D5b3265cAd4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196"
},
@@ -2700,8 +3844,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x9fCd83bC7F67ADa1fB51a4caBEa333c72B641bd1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9fCd83bC7F67ADa1fB51a4caBEa333c72B641bd1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013"
},
@@ -2709,7 +3857,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2717,7 +3869,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2725,7 +3881,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xa18152629128738a5c081eb226335FEd4B9C95e9"
},
@@ -2733,7 +3893,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043"
},
@@ -2741,8 +3905,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x183E3691EfF3524B2315D3703D94F922CbE51F54"
},
@@ -2750,7 +3918,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6"
},
@@ -2758,7 +3930,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D"
},
@@ -2766,8 +3942,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x548C6944cba02B9D1C0570102c89de64D258d3Ac"
},
@@ -2775,7 +3955,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x917a3964C37993e99a47C779bEb5Db1E9d13804d"
},
@@ -2783,7 +3967,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A"
},
@@ -2791,7 +3979,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x915b648e994d5f31059B38223b9fbe98ae185473"
},
@@ -2799,7 +3991,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9"
},
@@ -2807,7 +4003,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a"
},
@@ -2815,8 +4015,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x52869bae3E091e36b0915941577F2D47d8d8B534"
},
@@ -2824,7 +4028,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3"
},
@@ -2832,7 +4040,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x318Ec96df83AccC18B5EAD5D23e0F022F7Eb5503"
},
@@ -2840,7 +4052,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xd6A6ba37fAaC229B9665E86739ca501401f5a940"
},
@@ -2848,7 +4064,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7Ce6bb2Cc2D3Fd45a974Da6a0F29236cb9513a98"
},
@@ -2856,7 +4076,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8"
},
@@ -2864,7 +4088,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59"
},
@@ -2872,8 +4100,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x6E6CBEF068fe546ceA52af587AEd8A2EfDD846bD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6E6CBEF068fe546ceA52af587AEd8A2EfDD846bD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2881,7 +4113,11 @@
"allowListEnabled": false,
"decimals": 0,
"name": "",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "",
"tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2"
},
@@ -2889,7 +4125,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x6e970e8d6758164798290c8db1D79a527ca6e1B2"
},
@@ -2897,7 +4137,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2905,8 +4149,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA"
},
@@ -2914,7 +4162,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xb0897686c545045aFc77CF20eC7A532E3120E0F1"
},
@@ -2922,7 +4174,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2930,7 +4186,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C"
},
@@ -2938,7 +4198,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa"
},
@@ -2946,7 +4210,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -2954,7 +4222,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x76f257B1DDA5cC71bee4eF637Fbdde4C801310A9"
},
@@ -2962,8 +4234,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x2E64625FF3b3c9d51A022B28d96935d920a2993A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2E64625FF3b3c9d51A022B28d96935d920a2993A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2971,7 +4247,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2979,8 +4259,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x3fca88541D9bebe3600Ec03193FfC9D9c4d4Bb49",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3fca88541D9bebe3600Ec03193FfC9D9c4d4Bb49",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40"
},
@@ -2988,7 +4272,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64"
},
@@ -2996,8 +4284,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d"
},
@@ -3005,7 +4297,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xc2C447b04e0ED3476DdbDae8E9E39bE7159d27b6"
},
@@ -3013,8 +4309,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x6bBB2D614f4336784b835E392c62ed7A5345Db6e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6bBB2D614f4336784b835E392c62ed7A5345Db6e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b"
},
@@ -3022,7 +4322,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4"
},
@@ -3030,7 +4334,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -3038,7 +4346,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -3046,8 +4358,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Chainlink Token",
- "poolAddress": "Gu68eAsbqHG8Jx6yLPWu3JDZEdCUzTFnrTCeRQKEy1br",
- "poolType": "burnMint",
+ "pool": {
+ "address": "Gu68eAsbqHG8Jx6yLPWu3JDZEdCUzTFnrTCeRQKEy1br",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L"
},
@@ -3055,8 +4371,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec"
},
@@ -3064,8 +4384,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F"
},
@@ -3073,8 +4397,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x0dC94D4E45031f87b7df9e9B749dBB88f67Bcd78",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0dC94D4E45031f87b7df9e9B749dBB88f67Bcd78",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x985FB0821Eef0056ec26DD8b33dC61b9415B7F4b"
},
@@ -3082,7 +4410,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9"
},
@@ -3090,8 +4422,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x819d06D62D7Fc29cFdafEc61bE44a8DB575D6102",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x819d06D62D7Fc29cFdafEc61bE44a8DB575D6102",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xc2BE2F77562A6676098e8D363B9d8A33Ea009D4e"
},
@@ -3099,8 +4435,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69"
},
@@ -3108,7 +4448,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token on xDai",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2"
},
@@ -3116,8 +4460,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolAddress": "0x414024b789097c9a81Ec2D34f95B009718f44365",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x414024b789097c9a81Ec2D34f95B009718f44365",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE27dd9BF01B55ce6803c0d81386A04212c718b95"
},
@@ -3125,7 +4473,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x3662B6f73c5560229D1a98aF6e59E6649D568374"
}
@@ -3135,8 +4487,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Liquid Staked ETH",
- "poolAddress": "0x3A4e3B9a4fb73A4015b4AFe1efe02214B614D591",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3A4e3B9a4fb73A4015b4AFe1efe02214B614D591",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LsETH",
"tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6"
},
@@ -3144,8 +4500,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Liquid Staked ETH",
- "poolAddress": "0xE939C02E92e9E66d1F0D8E4F099E7d3d269a8a11",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE939C02E92e9E66d1F0D8E4F099E7d3d269a8a11",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LsETH",
"tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6"
},
@@ -3153,8 +4513,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Liquid Staked ETH",
- "poolAddress": "0x0a02473E57902fD7764E6E952E2962763045B404",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0a02473E57902fD7764E6E952E2962763045B404",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "LsETH",
"tokenAddress": "0x8c1BEd5b9a0928467c9B1341Da1D7BD5e10b6549"
}
@@ -3164,8 +4528,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lumi Finance Token",
- "poolAddress": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "LUA",
"tokenAddress": "0x88D100432F98956b16B66Df56962FD3e5cCd297A"
},
@@ -3173,8 +4541,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lumi Finance Token",
- "poolAddress": "0xCE562455a389F14f54135B84749ddd81Bc0bF869",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCE562455a389F14f54135B84749ddd81Bc0bF869",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LUA",
"tokenAddress": "0xd61bBBB8369c46c15868ad9263a2710AcED156C4"
}
@@ -3184,8 +4556,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lumi Finance USD",
- "poolAddress": "0x5686CCb55ee86BEB1e8A1Cf7C769930f3A5E521c",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x5686CCb55ee86BEB1e8A1Cf7C769930f3A5E521c",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "LUAUSD",
"tokenAddress": "0x540ddE0739EeFAf90D0Ca05aCa90513Ce89E7e79"
},
@@ -3193,8 +4569,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lumi Finance USD",
- "poolAddress": "0xe6712A2b96780986342e2C3C0Accdce58fc7Ac38",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe6712A2b96780986342e2C3C0Accdce58fc7Ac38",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LUAUSD",
"tokenAddress": "0x18d2bDEf572C67127E218c425f546FE64430a92C"
}
@@ -3204,8 +4584,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Luisa",
- "poolAddress": "0xe9516fB95778682F48C551071Bb917F937229596",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe9516fB95778682F48C551071Bb917F937229596",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LUISA",
"tokenAddress": "0x5699c51660C765e57793D1837B400B241cbC4B46"
},
@@ -3213,8 +4597,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Luisa",
- "poolAddress": "0xCa8FaCd0EB11DEB6114d515D136c79C6f4170E87",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xCa8FaCd0EB11DEB6114d515D136c79C6f4170E87",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "LUISA",
"tokenAddress": "0x0cCD687CC6F8461170336D8e8cf46A39313DEab9"
}
@@ -3224,8 +4612,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lympid Token",
- "poolAddress": "0xBCc91222266156c9e92217Bf68117fF3d8Ec5f38",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBCc91222266156c9e92217Bf68117fF3d8Ec5f38",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "LYP",
"tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0"
},
@@ -3233,8 +4625,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lympid Token",
- "poolAddress": "0xba0Db2166508A030324F14dEBE3a6D9d3B8A32c8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xba0Db2166508A030324F14dEBE3a6D9d3B8A32c8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "LYP",
"tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0"
}
@@ -3244,8 +4640,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Bridged Magpie-Peg BTC",
- "poolAddress": "0xD7550e0a1C055B444D8d1a9EB3DeA02c0F09D7A1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD7550e0a1C055B444D8d1a9EB3DeA02c0F09D7A1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "Bridged mBTC",
"tokenAddress": "0x7c1cCA5b25Fa0bC9AF9275Fb53cBA89DC172b878"
},
@@ -3253,8 +4653,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "mBTC",
- "poolAddress": "0x82164603B46a79C0DDcF2E622e242f16428939DB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x82164603B46a79C0DDcF2E622e242f16428939DB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "mBTC",
"tokenAddress": "0x2172fAD929E857dDfD7dDC31E24904438434cB0B"
},
@@ -3262,8 +4666,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Liquid Staked BTC",
- "poolAddress": "0xd86e1fEDB7120369fF5175b74F4413Cb74FCAcDB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd86e1fEDB7120369fF5175b74F4413Cb74FCAcDB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "mBTC",
"tokenAddress": "0x7FdFbE1fB9783745991CFb0a3D396acE6eE0c909"
},
@@ -3271,8 +4679,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Liquid Staked BTC",
- "poolAddress": "0x476EefeF46e0d65e1E371Fe093696259B1240B93",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x476EefeF46e0d65e1E371Fe093696259B1240B93",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "mBTC",
"tokenAddress": "0xbDf245957992bfBC62B07e344128a1EEc7b7eE3f"
},
@@ -3280,8 +4692,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Magpie Stake BTC",
- "poolAddress": "0xa6F5410BCb028c62DB6f60361C004D9740cFA82b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa6F5410BCb028c62DB6f60361C004D9740cFA82b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "mBTC",
"tokenAddress": "0x29190A076072bd71454E032F821eAAb3ba07e0D3"
}
@@ -3291,8 +4707,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Magpie locked DLP",
- "poolAddress": "0x3fd1D7fc5fE44fCbEE3d506530b790b09EF1459B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3fd1D7fc5fE44fCbEE3d506530b790b09EF1459B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "mDLP",
"tokenAddress": "0xfe14F790DA92971131544d915c4ADa6F1abce3Bd"
},
@@ -3300,8 +4720,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Magpie locked DLP",
- "poolAddress": "0x5180865890246278544ea457342b46665C196a97",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5180865890246278544ea457342b46665C196a97",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "mDLP",
"tokenAddress": "0x1Cbc4BF664907669CfAB86a3b1aCC3EC8867a25F"
}
@@ -3311,8 +4735,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Cryptex Meme Index",
- "poolAddress": "0x797C54f6E028c70d76c0031e03ab43Eb1b80fa74",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x797C54f6E028c70d76c0031e03ab43Eb1b80fa74",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MEEM",
"tokenAddress": "0x15f9cec1c568352Cd48Da1E84D3e74F27f6ee160"
},
@@ -3320,8 +4748,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Cryptex Meme Index",
- "poolAddress": "0xbfc86CA9b7fa158287bD392eE098246465E63351",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xbfc86CA9b7fa158287bD392eE098246465E63351",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "MEEM",
"tokenAddress": "0xA544b3F0c46c15F0B2b00ba3D67b56C250287905"
}
@@ -3331,8 +4763,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DEXTF Token",
- "poolAddress": "0x6c9E5fD0FDB36AaF3293Fcc1fb43D9581F706bf7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6c9E5fD0FDB36AaF3293Fcc1fb43D9581F706bf7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DEXTF",
"tokenAddress": "0x4816B2157203D8D4c53918e8d4076Adfe9e2FE22"
},
@@ -3340,8 +4776,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Memento",
- "poolAddress": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "DEXTF",
"tokenAddress": "0xB69bBB15095C0949489FBB43951d2b750Fa7fA89"
},
@@ -3349,8 +4789,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DEXTF Token",
- "poolAddress": "0x40fa6991CDbd66e91a25a2875d4d6fb1aF88cD91",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x40fa6991CDbd66e91a25a2875d4d6fb1aF88cD91",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "DEXTF",
"tokenAddress": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0"
},
@@ -3358,8 +4802,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "DEXTF Token",
- "poolAddress": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "DEXTF",
"tokenAddress": "0x5C5C6D078A6458179a2E4837Db25dA4a9330ECD4"
}
@@ -3369,8 +4817,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MEMEX",
- "poolAddress": "0xD0bFBE2f17599607AB58def61b9A30CCFF4a0505",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD0bFBE2f17599607AB58def61b9A30CCFF4a0505",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MEMEX",
"tokenAddress": "0x5e7E82B875b09e7A491611B626d90D7748d166d8"
},
@@ -3378,8 +4830,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MEMEX",
- "poolAddress": "0x21EfedF48D33f09d948fB98dED7dE766b682F049",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x21EfedF48D33f09d948fB98dED7dE766b682F049",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MEMEX",
"tokenAddress": "0xd6effD9911797742435EF3d5880545129934aBbe"
}
@@ -3389,8 +4845,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Metafluence",
- "poolAddress": "0xC9eDf4f727A1C21b65613f29059FE9928244110b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC9eDf4f727A1C21b65613f29059FE9928244110b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "METO",
"tokenAddress": "0xa78775bba7a542F291e5ef7f13C6204E704A90Ba"
},
@@ -3398,8 +4858,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Metafluence",
- "poolAddress": "0x78a2AeDdb8fD3446Fda31F6451a7e11c6446F5B8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x78a2AeDdb8fD3446Fda31F6451a7e11c6446F5B8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "METO",
"tokenAddress": "0x4665d6c8882F0fB1b973776C63578f9AF1A0A726"
}
@@ -3409,8 +4873,12 @@
"allowListEnabled": false,
"decimals": 5,
"name": "cat in a dogs world",
- "poolAddress": "0xBF38331E34ef7f248020611bB31Be0576D06413D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBF38331E34ef7f248020611bB31Be0576D06413D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "MEW",
"tokenAddress": "0x1b3CF4C6ad50788291160cD10bFEFafC5e4e951C"
},
@@ -3418,8 +4886,12 @@
"allowListEnabled": false,
"decimals": 5,
"name": "cat in a dogs world",
- "poolAddress": "0xBF38331E34ef7f248020611bB31Be0576D06413D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBF38331E34ef7f248020611bB31Be0576D06413D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "MEW",
"tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B"
},
@@ -3427,8 +4899,12 @@
"allowListEnabled": false,
"decimals": 5,
"name": "cat in a dogs world",
- "poolAddress": "0xaf0b8f79b667055Db3a54a31144e86e841Be3dAD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaf0b8f79b667055Db3a54a31144e86e841Be3dAD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "MEW",
"tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B"
},
@@ -3436,8 +4912,12 @@
"allowListEnabled": false,
"decimals": 5,
"name": "cat in a dogs world",
- "poolAddress": "BomBbNZ1jgmCin3xzhCwMe1j3ewV3DoRAKAuEy6bJ4Px",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "BomBbNZ1jgmCin3xzhCwMe1j3ewV3DoRAKAuEy6bJ4Px",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "MEW",
"tokenAddress": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5"
},
@@ -3445,8 +4925,12 @@
"allowListEnabled": false,
"decimals": 5,
"name": "cat in a dogs world",
- "poolAddress": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "MEW",
"tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B"
}
@@ -3456,8 +4940,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "michi",
- "poolAddress": "0x65615642056b48BCB8120C109f7e7c0c3623A8BF",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x65615642056b48BCB8120C109f7e7c0c3623A8BF",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "michi",
"tokenAddress": "0x18a4d375323DFAB49862aCeb1A4c6E65F8e53F67"
},
@@ -3465,8 +4953,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "michi",
- "poolAddress": "ATyY7SaiayLnp3teH3c4jRBGiPinSSZyt2gHNNN9C6BV",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "ATyY7SaiayLnp3teH3c4jRBGiPinSSZyt2gHNNN9C6BV",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "$michi",
"tokenAddress": "5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp"
}
@@ -3476,8 +4968,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Milo",
- "poolAddress": "0xb1F9dBF3bdc2575F338ac218fDb903E1AF8e88Fb",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xb1F9dBF3bdc2575F338ac218fDb903E1AF8e88Fb",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "MILO",
"tokenAddress": "0x8FfC46A1b7a3b12F4A11Db8877d302876DCA7Ab1"
},
@@ -3485,8 +4981,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Milo",
- "poolAddress": "0xdD66A2a06D1201C6aA84A89248887831Fe625922",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdD66A2a06D1201C6aA84A89248887831Fe625922",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MILO",
"tokenAddress": "0xe22fe63E20c3D817121022316B2430b5A516a6CE"
}
@@ -3496,8 +4996,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bridged mmETH",
- "poolAddress": "0x2D1d3F65449dd3F36548bBBBD8E9f3C089d30374",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2D1d3F65449dd3F36548bBBBD8E9f3C089d30374",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "Bridged mmETH",
"tokenAddress": "0x5d84E0f246E629E6AB29252ecBD9ab20e89aC845"
},
@@ -3505,8 +5009,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "mmETH",
- "poolAddress": "0xa27501561B01D99cde347a63891e8762DCa5bBbd",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xa27501561B01D99cde347a63891e8762DCa5bBbd",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "mmETH",
"tokenAddress": "0x8a053350ca5F9352a16deD26ab333e2D251DAd7c"
}
@@ -3516,8 +5024,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bridged mstETH",
- "poolAddress": "0xf1f89d5127Ce97a3e839993CCC77781AA7DA90bA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf1f89d5127Ce97a3e839993CCC77781AA7DA90bA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "Bridged mstETH",
"tokenAddress": "0xE367d4b1b9bB40e34aDCE448e1edb0141Fc6a8AC"
},
@@ -3525,8 +5037,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "mstETH",
- "poolAddress": "0x2E3c68D6d2eDD9881429f0565B88024B5Db10F73",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x2E3c68D6d2eDD9881429f0565B88024B5Db10F73",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "mstETH",
"tokenAddress": "0x49446A0874197839D15395B908328a74ccc96Bc0"
},
@@ -3534,8 +5050,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "mstETH",
- "poolAddress": "0x7361B97025e2207178EDB9BA59c61BDA69E032fa",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7361B97025e2207178EDB9BA59c61BDA69E032fa",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "mstETH",
"tokenAddress": "0x11d525Fb3f8CDfa58bE0d0FaB9339964Aeb89deb"
}
@@ -3545,8 +5065,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bridged mswETH",
- "poolAddress": "0x5D83430652F8B799F24Dae05B1B9916eB2D089b7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5D83430652F8B799F24Dae05B1B9916eB2D089b7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "Bridged mswETH",
"tokenAddress": "0xAbf9F7200D5337e50BF85748B7e780032BC5838e"
},
@@ -3554,8 +5078,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "mswETH",
- "poolAddress": "0xBDCc99f05D73FB3C2ad4b0F496318BaAE20218b7",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xBDCc99f05D73FB3C2ad4b0F496318BaAE20218b7",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "mswETH",
"tokenAddress": "0x32bd822d615A3658A68b6fDD30c2fcb2C996D678"
}
@@ -3565,8 +5093,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Metaverse Index",
- "poolAddress": "0xa970d6B0002CDfd4Ca12f0c4F13315dB612DDB5c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa970d6B0002CDfd4Ca12f0c4F13315dB612DDB5c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MVI",
"tokenAddress": "0x0104a6FA30540DC1d9F45D2797F05eEa79304525"
},
@@ -3574,8 +5106,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Metaverse Index",
- "poolAddress": "0xA688993b1195aA6e64f4F835415c854a2C83BC21",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA688993b1195aA6e64f4F835415c854a2C83BC21",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MVI",
"tokenAddress": "0xEA8954dE7607b90F5ec81A5e2e673D0f60BB7596"
},
@@ -3583,8 +5119,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Metaverse Index",
- "poolAddress": "0x6A888F0f25d2e846ec854d6Fb011BeC6DE31480B",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x6A888F0f25d2e846ec854d6Fb011BeC6DE31480B",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "MVI",
"tokenAddress": "0x72e364F2ABdC788b7E918bc238B21f109Cd634D7"
}
@@ -3594,8 +5134,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Bridged mwBETH",
- "poolAddress": "0xF975EafE68839F326012f8AEc8759455B5e0050A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF975EafE68839F326012f8AEc8759455B5e0050A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "Bridged mwBETH",
"tokenAddress": "0x7dC91cBD6CB5A3E6A95EED713Aa6bF1d987146c8"
},
@@ -3603,8 +5147,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "mwBETH",
- "poolAddress": "0xa7689C57aa6D09d28244d3932F34176d853A660f",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xa7689C57aa6D09d28244d3932F34176d853A660f",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "mwBETH",
"tokenAddress": "0xE46a5E19B19711332e33F33c2DB3eA143e86Bc10"
}
@@ -3614,8 +5162,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MyStandard",
- "poolAddress": "0xA4D5EF72fCFfa9eac0907856B1db1b68098fA23a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA4D5EF72fCFfa9eac0907856B1db1b68098fA23a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "MYST",
"tokenAddress": "0x0256B279D973C8d687264AC3eB36bE09232D4474"
},
@@ -3623,8 +5175,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MyStandard",
- "poolAddress": "0x717C753F9EA66eb763466cf3F8d299C634889B29",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x717C753F9EA66eb763466cf3F8d299C634889B29",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "MYST",
"tokenAddress": "0xA821aDaCCf08d856c0A36DC2C136B5188c525967"
},
@@ -3632,8 +5188,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "MyStandard",
- "poolAddress": "0xe1A8223DAc2aeC3090322674F054D35C240Dc37f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe1A8223DAc2aeC3090322674F054D35C240Dc37f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "MYST",
"tokenAddress": "0x3d5F61a4BB385B6D1eB34F47aA790A996f1Eba65"
}
@@ -3643,8 +5203,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Neiro",
- "poolAddress": "0x8f43e6A0E48c860946bbDeea28F1eE710FdCf6d4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8f43e6A0E48c860946bbDeea28F1eE710FdCf6d4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "NEIRO",
"tokenAddress": "0x1d192a2f367DaF23540fFEAbF8dBe9B17803F00A"
},
@@ -3652,8 +5216,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Neiro",
- "poolAddress": "0x47158771e67e4bDdaFd0FBD36f26Db929420B26C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x47158771e67e4bDdaFd0FBD36f26Db929420B26C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "NEIRO",
"tokenAddress": "0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637"
}
@@ -3663,8 +5231,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Neko",
- "poolAddress": "0x6a9A43871a8D468ACF6309f8459bC9623a0F169c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6a9A43871a8D468ACF6309f8459bC9623a0F169c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "NEKO",
"tokenAddress": "0xdb2aa3cDda310AE4e648E0FcE5cb6c19a37a9aD8"
},
@@ -3672,8 +5244,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Neko",
- "poolAddress": "0xDcE9cf770345584f2DFAA2eA23625cF3eDd6B7cF",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xDcE9cf770345584f2DFAA2eA23625cF3eDd6B7cF",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "NEKO",
"tokenAddress": "0x63A67329f761517570345eE86f791F74f9DC5461"
}
@@ -3683,8 +5259,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Non-Playable Coin",
- "poolAddress": "0xe185299D35f5f346ab0e42476B4172A0d020Aad9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe185299D35f5f346ab0e42476B4172A0d020Aad9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "NPC",
"tokenAddress": "0x765DaF34f09CFb86A7d172e016513B6c6355b13d"
},
@@ -3692,8 +5272,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Non-Playable Coin",
- "poolAddress": "0xF4208675b84E678d0d01528fA97634e2B0873Fa6",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF4208675b84E678d0d01528fA97634e2B0873Fa6",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "NPC",
"tokenAddress": "0x8eD97a637A790Be1feff5e888d43629dc05408F6"
}
@@ -3703,8 +5287,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "NUON",
- "poolAddress": "0x7a1d89A602c98936b5b484c2DB42ec77E1E5743C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x7a1d89A602c98936b5b484c2DB42ec77E1E5743C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "NUON",
"tokenAddress": "0xfb9Fed8cB962548A11fE7F6F282949061395c7F5"
},
@@ -3712,8 +5300,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "NUON",
- "poolAddress": "0xeE9Ea9B65475EE7693e0Ec9B9c308cA2d536e7ea",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xeE9Ea9B65475EE7693e0Ec9B9c308cA2d536e7ea",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "NUON",
"tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958"
},
@@ -3721,8 +5313,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "NUON",
- "poolAddress": "0xc1D8f275f651E1CAe3A6D971d0836cDAcD25d91a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc1D8f275f651E1CAe3A6D971d0836cDAcD25d91a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "NUON",
"tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958"
}
@@ -3732,8 +5328,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "NXPC",
- "poolAddress": "0x0D9A14a6eD561770295BcCCF1995ae5B026a65d6",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0D9A14a6eD561770295BcCCF1995ae5B026a65d6",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "NXPC",
"tokenAddress": "0x5E0E90E268BC247Cc850c789A0DB0d5c7621fb59"
},
@@ -3741,8 +5341,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Nexpace",
- "poolAddress": "0xEB8a99EDdFA50375E58033c187A4b65EC3c6B40C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEB8a99EDdFA50375E58033c187A4b65EC3c6B40C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "NXPC",
"tokenAddress": "0x9f2c4FD0a0BFF91723089775C73394E72c0fC116"
},
@@ -3750,8 +5354,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Nexpace",
- "poolAddress": "0x6f9234e7ffdC4Fda751f13269a6584582B9F3C8d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6f9234e7ffdC4Fda751f13269a6584582B9F3C8d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "NXPC",
"tokenAddress": "0x1B601A055711FeE5Ea965bC2AE341e2e4a79D622"
}
@@ -3761,8 +5369,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Olympus",
- "poolAddress": "0xa5588e518CE5ee0e4628C005E4edAbD5e87de3aD",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xa5588e518CE5ee0e4628C005E4edAbD5e87de3aD",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "OHM",
"tokenAddress": "0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5"
},
@@ -3770,8 +5382,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Olympus",
- "poolAddress": "4N7bZnVSC1GE27vo2Bv6kG983brwhT68BGsLuzH5nTQp",
- "poolType": "burnMint",
+ "pool": {
+ "address": "4N7bZnVSC1GE27vo2Bv6kG983brwhT68BGsLuzH5nTQp",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "OHM",
"tokenAddress": "2Xva1NeLRuBFdK41gEuXqgeWtnKKDve9PKeCnMEpNG6K"
}
@@ -3781,8 +5397,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Orange",
- "poolAddress": "0x42DFf772b40Eeb42B4DdEd4BB7Fe8ad9212821De",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x42DFf772b40Eeb42B4DdEd4BB7Fe8ad9212821De",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "ORNG",
"tokenAddress": "0x6c14c1898C843FF66cA51e87244690bBc28DF215"
},
@@ -3790,8 +5410,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Orange",
- "poolAddress": "0x5aDc61883D1aEEfF77DF019A119b8528741fed1e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5aDc61883D1aEEfF77DF019A119b8528741fed1e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ORNG",
"tokenAddress": "0xA588041eA7285e8ab47cfBCC8871Ab338f672147"
}
@@ -3801,8 +5425,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OSIS Token",
- "poolAddress": "0x475c8Fb7F7D4d3bba0b0a4da2bE31328fc36E358",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x475c8Fb7F7D4d3bba0b0a4da2bE31328fc36E358",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "OSIS",
"tokenAddress": "0x45fcf0Ebb7d79E3de9Fc308b6c7cb680A981CB7a"
},
@@ -3810,8 +5438,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OSIS",
- "poolAddress": "0xCCb9Ce82667b8ca0178E281340F469787096Ba14",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xCCb9Ce82667b8ca0178E281340F469787096Ba14",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "OSIS",
"tokenAddress": "0x3e5351935595600D8e094dEE3Ec7E942CAf9907F"
}
@@ -3821,8 +5453,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Overtime DAO Token",
- "poolAddress": "0xccEDD35627336F20b86a96D81EB88A75908D67e9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xccEDD35627336F20b86a96D81EB88A75908D67e9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "OVER",
"tokenAddress": "0x5829D6FE7528bc8E92c4e81CC8F20a528820B51a"
},
@@ -3830,8 +5466,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Overtime DAO Token",
- "poolAddress": "0xAd897dd53328D86282A3A822C15201d669201AA8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAd897dd53328D86282A3A822C15201d669201AA8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "OVER",
"tokenAddress": "0x7750C092e284e2c7366f50C8306F43c7EB2e82a2"
},
@@ -3839,8 +5479,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Overtime DAO Token",
- "poolAddress": "0x5c5E86ABC6cfE3772dc2aAe4FAffEEFd641fd460",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5c5E86ABC6cfE3772dc2aAe4FAffEEFd641fd460",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "OVER",
"tokenAddress": "0xedF38688b27036816A50185cAA430D5479e1C63e"
},
@@ -3848,8 +5492,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Overtime DAO Token",
- "poolAddress": "0x9054f2DF5f2AC59b39a175c27a00165989D17d2B",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9054f2DF5f2AC59b39a175c27a00165989D17d2B",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "OVER",
"tokenAddress": "0x90cE5720c17587D28E4Af120ae2d313B3BAD1722"
}
@@ -3859,8 +5507,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenXAUT",
- "poolAddress": "0x18e25Ac83477d7013D43174508B7AE7EC2CE2e08",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x18e25Ac83477d7013D43174508B7AE7EC2CE2e08",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "oXAUT",
"tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2"
},
@@ -3868,8 +5520,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenXAUT",
- "poolAddress": "0xaF35bef911A5e0be90987cE5070d7c9CbF5cFd3c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaF35bef911A5e0be90987cE5070d7c9CbF5cFd3c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "oXAUT",
"tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2"
},
@@ -3877,8 +5533,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenXAUT",
- "poolAddress": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "oXAUT",
"tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2"
},
@@ -3886,8 +5546,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Tether Gold",
- "poolAddress": "0x04db9b1D7f52cB288b95B4934a1fA688F6d0cBc3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x04db9b1D7f52cB288b95B4934a1fA688F6d0cBc3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "XAUt",
"tokenAddress": "0x68749665FF8D2d112Fa859AA293F07A622782F38"
}
@@ -3897,7 +5561,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Pegged Bitcoin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "pBTC",
"tokenAddress": "0x0D2437F93Fed6EA64Ef01cCde385FB1263910C56"
}
@@ -3907,8 +5575,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Pepe",
- "poolAddress": "0xe48D935e6C9e735463ccCf29a7F11e32bC09136E",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xe48D935e6C9e735463ccCf29a7F11e32bC09136E",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "PEPE",
"tokenAddress": "0x6982508145454Ce325dDbE47a25d4ec3d2311933"
},
@@ -3916,8 +5588,12 @@
"allowListEnabled": false,
"decimals": 4,
"name": "Pepe",
- "poolAddress": "4gqQkUyXrfUuRbviWNPeSWUhqko9Q7KX6axMjE3g9Ma3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "4gqQkUyXrfUuRbviWNPeSWUhqko9Q7KX6axMjE3g9Ma3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "PEPE",
"tokenAddress": "8NPXRWxUD7xKcexDpK1aC5MTckRykvGya8rzgK8cbQcX"
}
@@ -3927,8 +5603,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Puffverse Token",
- "poolAddress": "0x337Dec2C7D98CdC0f59976F3A48aCd706cC6c495",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x337Dec2C7D98CdC0f59976F3A48aCd706cC6c495",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "PFVS",
"tokenAddress": "0x3157874A7508FCF972379D24590C6806522B784F"
},
@@ -3936,8 +5616,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Puffverse Token",
- "poolAddress": "0x50Dbf7140A444DB0ACFb6d1bcc12408C6485Fe27",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x50Dbf7140A444DB0ACFb6d1bcc12408C6485Fe27",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "PFVS",
"tokenAddress": "0xb4562fDEFD5eD58f7705CE9386D54EE9B53831d1"
}
@@ -3947,8 +5631,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Pippin",
- "poolAddress": "0x5Efb8F091d49ce1e138353c75d4AAd07a98D79A5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5Efb8F091d49ce1e138353c75d4AAd07a98D79A5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "pippin",
"tokenAddress": "0x3945Eaaf908d6c743090D4ca1748c057d8A5634a"
},
@@ -3956,8 +5644,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Pippin",
- "poolAddress": "GFZDNxdQFFoPok1ZX1uwzbbfFNB46kJGNnAa1rd7LUVF",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "GFZDNxdQFFoPok1ZX1uwzbbfFNB46kJGNnAa1rd7LUVF",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "pippin",
"tokenAddress": "Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump"
}
@@ -3967,8 +5659,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PIXEL",
- "poolAddress": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "PIXEL",
"tokenAddress": "0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31"
},
@@ -3976,8 +5672,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PIXEL",
- "poolAddress": "0xd7CE1E7262ce471CC3Db3Bcd8c3EdeEe6d114115",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd7CE1E7262ce471CC3Db3Bcd8c3EdeEe6d114115",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "PIXEL",
"tokenAddress": "0x7EAe20d11Ef8c779433Eb24503dEf900b9d28ad7"
}
@@ -3987,8 +5687,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "PT Ethena sUSDE 5FEB2026",
- "poolAddress": "0x04790065826123136eB50d9dF1276f98376a6e91",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x04790065826123136eB50d9dF1276f98376a6e91",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "PT-sUSDE-5FEB2026",
"tokenAddress": "0xE8483517077afa11A9B07f849cee2552f040d7b2"
},
@@ -3996,8 +5700,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "ETH PT sUSDe (USDe) 2026Feb",
- "poolAddress": "R78LZoZJCfG5dTxPT9bAc6DCgvYQ32Gp8hVrkbjGiF1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "R78LZoZJCfG5dTxPT9bAc6DCgvYQ32Gp8hVrkbjGiF1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "PTsUSDE",
"tokenAddress": "PTSg1sXMujX5bgTM88C2PMksHG5w2bqvXJrG9uUdzpA"
}
@@ -4007,8 +5715,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "pufETH",
- "poolAddress": "0x8dA0baE597aC15fB0924713b1e3c1F624474F3E4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8dA0baE597aC15fB0924713b1e3c1F624474F3E4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "pufETH",
"tokenAddress": "0x417b0Ff8358Eb72867Da92225CaB99BCD5e6F205"
},
@@ -4016,8 +5728,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "pufETH",
- "poolAddress": "0x87d00066cf131ff54B72B134a217D5401E5392b6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x87d00066cf131ff54B72B134a217D5401E5392b6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "pufETH",
"tokenAddress": "0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF"
},
@@ -4025,8 +5741,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "pufETH",
- "poolAddress": "0xBc1324F4FaB8e63bF33E5117bb887671B378BFF3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xBc1324F4FaB8e63bF33E5117bb887671B378BFF3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "pufETH",
"tokenAddress": "0xD9A442856C234a39a81a089C06451EBAa4306a72"
},
@@ -4034,8 +5754,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "pufETH",
- "poolAddress": "0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "pufETH",
"tokenAddress": "0x6c460b2c6D6719562D5dA43E5152B375e79B9A8B"
}
@@ -4045,8 +5769,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Radpie",
- "poolAddress": "0x879d0803Dc3fB6b435E6407F4b74101bB8f742C8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x879d0803Dc3fB6b435E6407F4b74101bB8f742C8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "RDP",
"tokenAddress": "0x27c073e8427aa493a90b8dC8b73A89e670FD77bB"
},
@@ -4054,8 +5782,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Radpie",
- "poolAddress": "0x3be3266713DeBDeb1CdC420a88f1E9EefB7982e2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3be3266713DeBDeb1CdC420a88f1E9EefB7982e2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "RDP",
"tokenAddress": "0x54BDBF3cE36f451Ec61493236b8E6213ac87c0f6"
}
@@ -4065,8 +5797,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RealToken Ecosystem Governance",
- "poolAddress": "0x307D0353313F544fc8Da0D85F1005b1de516Bce8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x307D0353313F544fc8Da0D85F1005b1de516Bce8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "REG",
"tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce"
},
@@ -4074,8 +5810,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RealToken Ecosystem Governance",
- "poolAddress": "0xe61d70B29F6a83A50Acff39e8b8AC6B27F6e6ddA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe61d70B29F6a83A50Acff39e8b8AC6B27F6e6ddA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "REG",
"tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce"
},
@@ -4083,8 +5823,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RealToken Ecosystem Governance",
- "poolAddress": "0x8058d5d465C8CA6BA76De043A7637F8Df74a0989",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8058d5d465C8CA6BA76De043A7637F8Df74a0989",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "REG",
"tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce"
}
@@ -4094,8 +5838,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Rocket Pool ETH",
- "poolAddress": "0x3A2Ea8BaE01410425d01c2C5f488e4777DAA54Df",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x3A2Ea8BaE01410425d01c2C5f488e4777DAA54Df",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "rETH",
"tokenAddress": "0xae78736Cd615f374D3085123A210448E74Fc6393"
},
@@ -4103,8 +5851,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Rocket Pool ETH",
- "poolAddress": "0xABC0F3b9455E308C27C2a6fe0EF82A596c95709F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xABC0F3b9455E308C27C2a6fe0EF82A596c95709F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "rETH",
"tokenAddress": "0xC61a178d9742775f3B741fE60F12659D853c66A1"
},
@@ -4112,8 +5864,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Rocket Pool ETH",
- "poolAddress": "0xCd4Ee1110707D79704d6881A4fEf158e5FdB334b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCd4Ee1110707D79704d6881A4fEf158e5FdB334b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "RETH",
"tokenAddress": "0x29c46e6F2A67872Ad6b1Dc04e1591934a96Af62E"
},
@@ -4121,8 +5877,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Rocket Pool ETH",
- "poolAddress": "0xbf22058C8cd5a9fd426aa5176424d41027F14545",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbf22058C8cd5a9fd426aa5176424d41027F14545",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "rETH",
"tokenAddress": "0x6e5e9b22E461c2F9786e6d8069d47adA1Ef58aDc"
}
@@ -4132,8 +5892,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RIZE",
- "poolAddress": "0xf234609b2e2704b48745A819C89774Fe21E4a722",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf234609b2e2704b48745A819C89774Fe21E4a722",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "RIZE",
"tokenAddress": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4"
},
@@ -4141,8 +5905,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RIZE",
- "poolAddress": "0xd4D129Df31bF9d9eF7fF030aDF984f3d028E16a0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd4D129Df31bF9d9eF7fF030aDF984f3d028E16a0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "RIZE",
"tokenAddress": "0x9818B6c09f5ECc843060927E8587c427C7C93583"
},
@@ -4150,8 +5918,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RIZE",
- "poolAddress": "0x17Be5d735D49c84919d3cFDfF9eABbdB12D6Ac20",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x17Be5d735D49c84919d3cFDfF9eABbdB12D6Ac20",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "RIZE",
"tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605"
},
@@ -4159,8 +5931,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "RIZE",
- "poolAddress": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "RIZE",
"tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605"
}
@@ -4170,8 +5946,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "rsETH",
- "poolAddress": "0x72a7ffbd763c369d5A86eEe886ABb99BdA613f8A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x72a7ffbd763c369d5A86eEe886ABb99BdA613f8A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "rsETH",
"tokenAddress": "0xb999Ea589E0a1Cce9153601daC2D6e203c2fD577"
},
@@ -4179,8 +5959,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "rsETH",
- "poolAddress": "0xc28A1F91e6D0eCf6cBFe6809D256a7753fae52B5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc28A1F91e6D0eCf6cBFe6809D256a7753fae52B5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "rsETH",
"tokenAddress": "0x043849686EE254ada46A432770E1a491491FC44D"
},
@@ -4188,8 +5972,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "rsETH",
- "poolAddress": "0x5bdB8499D400Fb19afc665D1CE0C5459bB3401Eb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5bdB8499D400Fb19afc665D1CE0C5459bB3401Eb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "rsETH",
"tokenAddress": "0x571405D597091e8728d8240F558BAc01275E8659"
},
@@ -4197,8 +5985,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "rsETH",
- "poolAddress": "0x55e5a21B4cCC7FA502434ab1109D4EDe0397AB25",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x55e5a21B4cCC7FA502434ab1109D4EDe0397AB25",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "rsETH",
"tokenAddress": "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7"
}
@@ -4208,8 +6000,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ShibArmyStrong",
- "poolAddress": "0xd13129ee86f6285d51F66196A02a929E2be977a4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd13129ee86f6285d51F66196A02a929E2be977a4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SAS",
"tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9"
},
@@ -4217,8 +6013,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ShibArmyStrong",
- "poolAddress": "0xd13129ee86f6285d51F66196A02a929E2be977a4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd13129ee86f6285d51F66196A02a929E2be977a4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SAS",
"tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9"
},
@@ -4226,8 +6026,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ShibArmyStrong",
- "poolAddress": "0x89F39cdbad48b6531DDBd38ea0D84E9c9CbCdA27",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x89F39cdbad48b6531DDBd38ea0D84E9c9CbCdA27",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "SAS",
"tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9"
},
@@ -4235,8 +6039,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ShibArmyStrong",
- "poolAddress": "0xab8B05d4d7d31b28d9973C5CD2965b9e48a2a35d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xab8B05d4d7d31b28d9973C5CD2965b9e48a2a35d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SAS",
"tokenAddress": "0x7E315C269F7849F80824755A666DC6fb4Ba8BEe1"
}
@@ -4246,8 +6054,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avBTC",
- "poolAddress": "0x9E3021Cedd853C63cBa44e8a351ea807fd116e7C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9E3021Cedd853C63cBa44e8a351ea807fd116e7C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "savBTC",
"tokenAddress": "0x649342c6bff544d82DF1B2bA3C93e0C22cDeBa84"
},
@@ -4255,8 +6067,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avBTC",
- "poolAddress": "0x79A42a8dC09F3501DC265e65139912aE20c5BCeb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x79A42a8dC09F3501DC265e65139912aE20c5BCeb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "savBTC",
"tokenAddress": "0x19452d507b2738aDB8942cD2b0d52BB519f1790a"
},
@@ -4264,8 +6080,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avBTC",
- "poolAddress": "0x5b0B44bB38E23193111e7AA03E380Ba841e58B17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5b0B44bB38E23193111e7AA03E380Ba841e58B17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "savBTC",
"tokenAddress": "0x45cF31aF4d67899674B50ab14093b55006fFf563"
},
@@ -4273,8 +6093,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avBTC",
- "poolAddress": "0x78991cd8ADDf98672A1201D70c6db46e21C25C57",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x78991cd8ADDf98672A1201D70c6db46e21C25C57",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "savBTC",
"tokenAddress": "0x92181c6f0FED1f1A30c0Ec131f41577F81924bf5"
}
@@ -4284,8 +6108,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avETH",
- "poolAddress": "0xd039ac36B5082ee285471968b88f468e42E27Fa0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd039ac36B5082ee285471968b88f468e42E27Fa0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "savETH",
"tokenAddress": "0x260c0c715A279F239cF44e2F73E964AB550738f3"
},
@@ -4293,8 +6121,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avETH",
- "poolAddress": "0x10CBdedfD636C777977d621D344791A288528fF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10CBdedfD636C777977d621D344791A288528fF0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "savETH",
"tokenAddress": "0xA0Fbf835fd24bD1aAFD39a0D4b1779B5B8329770"
},
@@ -4302,8 +6134,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avETH",
- "poolAddress": "0x43f47a434DADd5A122C42E49378365CcA949fA54",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x43f47a434DADd5A122C42E49378365CcA949fA54",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "savETH",
"tokenAddress": "0xDA06eE2dACF9245Aa80072a4407deBDea0D7e341"
}
@@ -4313,8 +6149,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0x8FcC42c414E29e8e3dBFa1628CF45E8ed80C999D",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8FcC42c414E29e8e3dBFa1628CF45E8ed80C999D",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0x06d47F3fb376649c3A9Dafe069B3D6E35572219E"
},
@@ -4322,8 +6162,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0x8e4eC56B2E74bD48557F327Ea35F6f08b7E8a4bd",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8e4eC56B2E74bD48557F327Ea35F6f08b7E8a4bd",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0x14063733875204b35D20D5Fc52C7B5569aD00335"
},
@@ -4331,8 +6175,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0xDd10449dEAF27fc4937DDA64d0b5Af819b79EE63",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDd10449dEAF27fc4937DDA64d0b5Af819b79EE63",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0x5C247948fD58Bb02B6c4678d9940F5e6B9af1127"
},
@@ -4340,8 +6188,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0x6d3B65eB14ad3546ab4Aa32cf8645a3610a9737b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6d3B65eB14ad3546ab4Aa32cf8645a3610a9737b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0xb8D89678E75a973E74698c976716308abB8a46A4"
},
@@ -4349,8 +6201,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0xFCCfA86d9AEdD2fF8dF60600110d6D1649679Fef",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFCCfA86d9AEdD2fF8dF60600110d6D1649679Fef",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0xA29420057F3e3B9512D4786df135Da1674BD74D4"
},
@@ -4358,8 +6214,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked avUSD",
- "poolAddress": "0x8d2145dB5Da67B262aEb451D16b07B1a958124eC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8d2145dB5Da67B262aEb451D16b07B1a958124eC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "savUSD",
"tokenAddress": "0xb9827268eBCc4EA7b105cfC787A92c612629A3f1"
}
@@ -4369,8 +6229,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stader",
- "poolAddress": "0x1AEfE4c18198C5838e22951C9382cD3080052407",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1AEfE4c18198C5838e22951C9382cD3080052407",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SD",
"tokenAddress": "0x9445F4081AFC7Fa66b53224DCb84aC6e6A1714A2"
},
@@ -4378,8 +6242,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stader",
- "poolAddress": "0x98BBA66d65Dd48bAD447b73db8181930c02c794D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x98BBA66d65Dd48bAD447b73db8181930c02c794D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SD",
"tokenAddress": "0x32E94BB4A3521EBEBE14AE3Aa5Bc09fCc9E42306"
},
@@ -4387,8 +6255,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stader",
- "poolAddress": "0x61D405818C8127f0fD30102BF01E6227097eF92f",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x61D405818C8127f0fD30102BF01E6227097eF92f",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "SD",
"tokenAddress": "0x30D20208d987713f46DFD34EF128Bb16C404D10f"
}
@@ -4398,8 +6270,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mode Savings Dai",
- "poolAddress": "0x0e3229079543F047a394833063702E71F733F6a5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0e3229079543F047a394833063702E71F733F6a5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "msDAI",
"tokenAddress": "0x3f51c6c5927B88CDEc4b61e2787F9BD0f5249138"
},
@@ -4407,8 +6283,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Savings Dai",
- "poolAddress": "0xF6c88f0933126c2e2CDb060910165aA4BfC11B99",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF6c88f0933126c2e2CDb060910165aA4BfC11B99",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "sDAI",
"tokenAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA"
}
@@ -4418,8 +6298,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "stake.link",
- "poolAddress": "0xC31A8B3Ba209FC60c3E9364649ED452939403E27",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC31A8B3Ba209FC60c3E9364649ED452939403E27",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SDL",
"tokenAddress": "0xd7cf0e0fC12fB97e03841CE4f3086dB327CE0F2B"
},
@@ -4427,8 +6311,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "stake.link",
- "poolAddress": "0xb473be8A2b4778C418451C18F4357261D626f91C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb473be8A2b4778C418451C18F4357261D626f91C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SDL",
"tokenAddress": "0xdFeA35757264F5b6C0ff21104151D9F991D0eEC0"
},
@@ -4436,8 +6324,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "stake.link",
- "poolAddress": "0xAFcC997D86713FeC802Cc665122d64a5130bDd1D",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xAFcC997D86713FeC802Cc665122d64a5130bDd1D",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "SDL",
"tokenAddress": "0xA95C5ebB86E0dE73B4fB8c47A45B792CFeA28C23"
}
@@ -4447,8 +6339,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Diamondz Shadow Game + Movies",
- "poolAddress": "0x97831d9E9896B941d1047ECE33031C1eF19fB9A5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x97831d9E9896B941d1047ECE33031C1eF19fB9A5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SDM",
"tokenAddress": "0x602b869eEf1C9F0487F31776bad8Af3C4A173394"
},
@@ -4456,8 +6352,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Diamondz Shadow Game + Movies",
- "poolAddress": "0xBC3cc3F1122a664dc3C650C0A8138Ca2731b9431",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBC3cc3F1122a664dc3C650C0A8138Ca2731b9431",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SDM",
"tokenAddress": "0xDd5C53Fa95741B3B896BaC689bd460C29a4F7034"
}
@@ -4467,8 +6367,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked DOLA",
- "poolAddress": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "sDOLA",
"tokenAddress": "0x02eaa69646183c069FC2B64F15923F27B9CF3b03"
},
@@ -4476,8 +6380,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked DOLA",
- "poolAddress": "0xbbc28DB61DF26B76D5F7D5Eed17eD4D6C278460e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbbc28DB61DF26B76D5F7D5Eed17eD4D6C278460e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "sDOLA",
"tokenAddress": "0x7a1e123e41458aabaB8068BFed6010D8f9480898"
},
@@ -4485,8 +6393,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked DOLA",
- "poolAddress": "0xd84e1B7e1a7A8D49167884855c3985ef4bCa45aB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd84e1B7e1a7A8D49167884855c3985ef4bCa45aB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "sDOLA",
"tokenAddress": "0xCa78ee4544ec5a33Af86F1E786EfC7d3652bf005"
},
@@ -4494,8 +6406,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked DOLA",
- "poolAddress": "0x8404024d8F74Ad2D20E82c184816B64D4184A018",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8404024d8F74Ad2D20E82c184816B64D4184A018",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "sDOLA",
"tokenAddress": "0xfc63C9c8Ba44AE89C01265453Ed4F427C80cBd4E"
},
@@ -4503,8 +6419,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked Dola",
- "poolAddress": "0x05eEe76f456C51Be0459EC1c0a78bf177B2c877C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x05eEe76f456C51Be0459EC1c0a78bf177B2c877C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "sDOLA",
"tokenAddress": "0xb45ad160634c528Cc3D2926d9807104FA3157305"
}
@@ -4514,8 +6434,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stake DAO Token",
- "poolAddress": "0xB1133f3A7bC0392948f4Bb43947b9BB662fB8E20",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB1133f3A7bC0392948f4Bb43947b9BB662fB8E20",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SDT",
"tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383"
},
@@ -4523,8 +6447,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stake DAO Token",
- "poolAddress": "0x4AFdDee00D68ebA82B882db98015bfD816818093",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4AFdDee00D68ebA82B882db98015bfD816818093",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SDT",
"tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383"
},
@@ -4532,8 +6460,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stake DAO Token",
- "poolAddress": "0x89c9038906887A69bD9C20f81B1B4C309F9A6D04",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x89c9038906887A69bD9C20f81B1B4C309F9A6D04",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "SDT",
"tokenAddress": "0x73968b9a57c6E53d41345FD57a6E6ae27d6CDB2F"
}
@@ -4543,8 +6475,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Steadefi",
- "poolAddress": "0x2910769511bA734895B127b9564A2b56cd7a4B02",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2910769511bA734895B127b9564A2b56cd7a4B02",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SDY",
"tokenAddress": "0x338c6d2DF4dB2459EAB0835fd9004Cf2915842e0"
},
@@ -4552,8 +6488,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Steadefi",
- "poolAddress": "0x53606d47E92e390B2B4B105e92bAC238CC77F28c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x53606d47E92e390B2B4B105e92bAC238CC77F28c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SDY",
"tokenAddress": "0x7d262214f368A896Af42E36F20a97E2d83df701b"
},
@@ -4561,8 +6501,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Steadefi",
- "poolAddress": "0xC4ABCd324ED49B98795CC8F51C80DAF1A24F5F58",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC4ABCd324ED49B98795CC8F51C80DAF1A24F5F58",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SDY",
"tokenAddress": "0xf2DbAaBd8F8E0993F11DE4CEd470Df1ED1a4491b"
}
@@ -4572,8 +6516,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x6f6F5645B86b1fD3c4C015822a0E672132D4e2F8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6f6F5645B86b1fD3c4C015822a0E672132D4e2F8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x2f643d728926C20269f0A04931dd7b4b6B650204"
},
@@ -4581,8 +6529,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x7f1f90E6b6BAD9fc14ca71224B072541B739beb3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7f1f90E6b6BAD9fc14ca71224B072541B739beb3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xEc59dE82FFf1959E92b91daB975e4564FC3447cC"
},
@@ -4590,8 +6542,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x346368422407aCaF48025ff18891b1D7540539Bf",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x346368422407aCaF48025ff18891b1D7540539Bf",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xf5607d767CCa3789CAe872A33E3cfb76cFbaaaA2"
},
@@ -4599,8 +6555,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x48A148B6EFAD4D59225034f1A243cea734e67bB0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x48A148B6EFAD4D59225034f1A243cea734e67bB0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x7C87cc813Ce92D384c437C263E9FB2E7F945188E"
},
@@ -4608,8 +6568,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x6f93AD7963BBdD8C655A0C819B9b79347EE04b70",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6f93AD7963BBdD8C655A0C819B9b79347EE04b70",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xB359155378FF5E2837f12ed0bee5168123c88ACC"
},
@@ -4617,8 +6581,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0xC026ae03C857093979872C665b13dBBA83B55987",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC026ae03C857093979872C665b13dBBA83B55987",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x9Ded28d9EC69F97efd718CE768dc39D78fd014F8"
},
@@ -4626,8 +6594,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x2bc58Bf0705f24200c19cF4248E4580d03C44EB8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2bc58Bf0705f24200c19cF4248E4580d03C44EB8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x3b4F8E846437c7CacE31080E6c9DFC455C1DBE77"
},
@@ -4635,8 +6607,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x98A6F5ae745934ba25FF67B1e59C502b97ff1Cc3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x98A6F5ae745934ba25FF67B1e59C502b97ff1Cc3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xC52F506591eb89c04620D47B895d5f951efAd4b4"
},
@@ -4644,8 +6620,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x70f30536699c7180C53Ae9e7f64c06c5E7164960",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x70f30536699c7180C53Ae9e7f64c06c5E7164960",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x4d8E5D0c79B02A37074025B4C10854df01f33a3F"
},
@@ -4653,8 +6633,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x13C4D04ED1Cba19391bD8E9F8F13B261340F474d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x13C4D04ED1Cba19391bD8E9F8F13B261340F474d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x1bA642B2f27E45d730ff20714B17309644274167"
},
@@ -4662,8 +6646,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x7c8d25EF1cE7A5d342A3889DE9BB59939d67DFf8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7c8d25EF1cE7A5d342A3889DE9BB59939d67DFf8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x72cc27124EA2d36AC13D502C7EBdF28cEF90c31c"
},
@@ -4671,8 +6659,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0xf1B85dEC561bfe9fC61BD758e533B85a7108634e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf1B85dEC561bfe9fC61BD758e533B85a7108634e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x6F7408DAc37a36cD35B5c3Bc2829f60C30E83315"
},
@@ -4680,8 +6672,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0xf8678aC9b6b0d6ff9243F88060f595d4771a5E04",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf8678aC9b6b0d6ff9243F88060f595d4771a5E04",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x3D83b2253a523a211cF5679Fea1D10A58b408177"
},
@@ -4689,8 +6685,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x8f3829fCB1cD380746F1643Bfaf6aC8CA9960426",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8f3829fCB1cD380746F1643Bfaf6aC8CA9960426",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x1f88af31101d9eAFBe5B9Dd627beb4b3010b8c54"
},
@@ -4698,8 +6698,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x3eC718a22B268d7d9Ce27D2dcAB791174D515920",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x3eC718a22B268d7d9Ce27D2dcAB791174D515920",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE"
},
@@ -4707,8 +6711,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x4f36762E13b6df9e717BfC82EB750a5d86393553",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4f36762E13b6df9e717BfC82EB750a5d86393553",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0x7627D9C9b045A26672D57741C896B2A48844168D"
},
@@ -4716,8 +6724,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x4Ba40931F99188af67262109FBaB2A39de8D82BA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4Ba40931F99188af67262109FBaB2A39de8D82BA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xf7bd92DcAad1E095f4f1f454eBEa99C2a96429e9"
},
@@ -4725,8 +6737,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x0CBA02AC9C24Fe7b38123976c85Fe03Bbf4C5081",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0CBA02AC9C24Fe7b38123976c85Fe03Bbf4C5081",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIB",
"tokenAddress": "0x13c24A28F2b1EEF8A657f661396545683D74e9e0"
},
@@ -4734,8 +6750,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SHIBA INU",
- "poolAddress": "0x25679A2879F6abb919c2dda665ce929D9A5214A8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x25679A2879F6abb919c2dda665ce929D9A5214A8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SHIB",
"tokenAddress": "0xAE2e513aC868D27Bf8d697d165bB2e91C1AEA0F0"
}
@@ -4745,8 +6765,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shipa",
- "poolAddress": "0x54169D9660C21A83C68eb7AEd04AE87ff1b69D5c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x54169D9660C21A83C68eb7AEd04AE87ff1b69D5c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SHIPA",
"tokenAddress": "0x74B017277BFFC58BE2D4d61097A69d584dcaF32F"
},
@@ -4754,8 +6778,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shipa",
- "poolAddress": "0x67A3B613b2398b43E0B12DD6a07B30cDaCB6A61d",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x67A3B613b2398b43E0B12DD6a07B30cDaCB6A61d",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "SHIPA",
"tokenAddress": "0x632d1FF1fB27d88EDeDB90e70bFC094D7932A0ad"
}
@@ -4765,8 +6793,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shiro Neko",
- "poolAddress": "0x8fd996312CA11849A562C78885021148F25a9841",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8fd996312CA11849A562C78885021148F25a9841",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "SHIRO",
"tokenAddress": "0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058"
},
@@ -4774,8 +6806,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shiro Neko",
- "poolAddress": "0x26a90cEeFfDfe7CD30913108C99872130c7FEE38",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x26a90cEeFfDfe7CD30913108C99872130c7FEE38",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SHIRO",
"tokenAddress": "0x15DD0588Dc6C75783B28905d416aE24fa234Fb60"
}
@@ -4785,8 +6821,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Silo Token",
- "poolAddress": "0x3Fa5329dB787ac51D61DcaB9a588ceA106ad593C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3Fa5329dB787ac51D61DcaB9a588ceA106ad593C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SILO",
"tokenAddress": "0x77EEe23630deC10e96C5A8F731A9cF46FCC8CD6f"
},
@@ -4794,8 +6834,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Silo Token",
- "poolAddress": "0x76A82571FC85817CEEeDff3Bf71bE3c076668A14",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x76A82571FC85817CEEeDff3Bf71bE3c076668A14",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SILO",
"tokenAddress": "0x09f569AF991c730Cae05a392bae6490558eF2214"
},
@@ -4803,8 +6847,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Silo Token",
- "poolAddress": "0x95842Bb96cECfe77e8AC07BA6e6bA948B745CCCd",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x95842Bb96cECfe77e8AC07BA6e6bA948B745CCCd",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "SILO",
"tokenAddress": "0xF0B2dd79324A66d2108C961d680F7616E1486bB0"
},
@@ -4812,8 +6860,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Silo Token",
- "poolAddress": "0x527a8902DB7548353EAf08b6522686509e32B1FE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x527a8902DB7548353EAf08b6522686509e32B1FE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SILO",
"tokenAddress": "0xb098AFC30FCE67f1926e735Db6fDadFE433E61db"
}
@@ -4823,8 +6875,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked Inv",
- "poolAddress": "0xaCDD3f0a2bC4e61ae5cd2b96BF87CCC04aa15DCc",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaCDD3f0a2bC4e61ae5cd2b96BF87CCC04aa15DCc",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "sINV",
"tokenAddress": "0x4C7b266B4bf0A8758fa85E69292eE55c212236cF"
},
@@ -4832,8 +6888,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked Inv",
- "poolAddress": "0xE8E17C4E16EDE9ED62580b48bf784b71197279b8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE8E17C4E16EDE9ED62580b48bf784b71197279b8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "sINV",
"tokenAddress": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773"
},
@@ -4841,8 +6901,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked Inv",
- "poolAddress": "0x57500aB5b2b6B5c652B3816E0D53705a7D84F060",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x57500aB5b2b6B5c652B3816E0D53705a7D84F060",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "sINV",
"tokenAddress": "0x1992AF61FBf8ee38741bcc57d636CAA22A1a7702"
},
@@ -4850,8 +6914,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Staked Inv",
- "poolAddress": "0xF57fc17729Bd2bcD1e1342917B160eB4b69EE89A",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF57fc17729Bd2bcD1e1342917B160eB4b69EE89A",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "sINV",
"tokenAddress": "0x08d23468A467d2bb86FaE0e32F247A26C7E2e994"
}
@@ -4861,8 +6929,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sekuya",
- "poolAddress": "0x48C4215ccb6Fa0974F7e0383b965959D0e944311",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x48C4215ccb6Fa0974F7e0383b965959D0e944311",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SKYA",
"tokenAddress": "0x84E9aaE2081AD3135Ec82496c31e5658A31B9756"
},
@@ -4870,8 +6942,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sekuya",
- "poolAddress": "0xcf9f8A4697510B69ABc3303521FC9d8f68fB689d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xcf9f8A4697510B69ABc3303521FC9d8f68fB689d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SKYA",
"tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9"
},
@@ -4879,8 +6955,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sekuya",
- "poolAddress": "0x78f6EB041A85eF3c1a1dC02C57b6beBfcAcBabbf",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x78f6EB041A85eF3c1a1dC02C57b6beBfcAcBabbf",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SKYA",
"tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9"
},
@@ -4888,8 +6968,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sekuya Multiverse",
- "poolAddress": "0x285f961842Da90AcFef2f2ab622854a0BFf12F9a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x285f961842Da90AcFef2f2ab622854a0BFf12F9a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SKYA",
"tokenAddress": "0x71b690adae1eba2e1A5d8a7b51a037b39A4CF007"
}
@@ -4899,8 +6983,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Snow Ball",
- "poolAddress": "0x5e2E4A679e9e6c484c1095388A8F829851901746",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5e2E4A679e9e6c484c1095388A8F829851901746",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SNOW",
"tokenAddress": "0x19E846C0341260f516b441e0b72a078218f514b0"
},
@@ -4908,8 +6996,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Snow Ball",
- "poolAddress": "0xa0fFE2d845aeE8dE1DbD652881D8CAb3607fd0d5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa0fFE2d845aeE8dE1DbD652881D8CAb3607fd0d5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SNOW",
"tokenAddress": "0xD62cf77508B80d5776aaAC9CA06227fF84cC845c"
},
@@ -4917,8 +7009,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Snow Ball",
- "poolAddress": "0xE3C8b709C43c4Fa4D2535f354e28e6FFC2614b69",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xE3C8b709C43c4Fa4D2535f354e28e6FFC2614b69",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "SNOW",
"tokenAddress": "0x2778f7E40D90DB18203Ec31C9c5F84fde6cf6763"
}
@@ -4928,8 +7024,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Soil",
- "poolAddress": "0xF3BD0793FAD8b24B7ba58956dE9DE305D34B9098",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF3BD0793FAD8b24B7ba58956dE9DE305D34B9098",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SOIL",
"tokenAddress": "0x54991328Ab43c7D5d31C19d1B9fa048E77B5cd16"
},
@@ -4937,8 +7037,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Soil",
- "poolAddress": "0xb88d671611d6F517d5D94193da4d5B0dB79E3A0C",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xb88d671611d6F517d5D94193da4d5B0dB79E3A0C",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "SOIL",
"tokenAddress": "0x43C73b90E0C2A355784dCf0Da12f477729b31e77"
}
@@ -4948,8 +7052,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0xc929ad75B72593967DE83E7F7Cda0493458261D9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc929ad75B72593967DE83E7F7Cda0493458261D9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0xbc78D84Ba0c46dFe32cf2895a19939c86b81a777"
},
@@ -4957,8 +7065,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x0a12ec21c43ab2b4f69693Da1b0149e7652689c0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0a12ec21c43ab2b4f69693Da1b0149e7652689c0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -4966,8 +7078,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -4975,8 +7091,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x4aae823a6a0b376De6A78e74eCC5b079d38cBCf7"
},
@@ -4984,8 +7104,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x4f628aF99578da6A481851779Fa297A35500C173",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4f628aF99578da6A481851779Fa297A35500C173",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x3647c54c4c2C65bC7a2D63c0Da2809B399DBBDC0"
},
@@ -4993,8 +7117,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x2315f2A36af9dd75B7a4E1c6c53B11767eBfb750",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2315f2A36af9dd75B7a4E1c6c53B11767eBfb750",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x3B86Ad95859b6AB773f55f8d94B4b9d443EE931f"
},
@@ -5002,8 +7130,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0xf49f81b3d2F2a79b706621FA2D5934136352140c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf49f81b3d2F2a79b706621FA2D5934136352140c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3"
},
@@ -5011,8 +7143,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -5020,8 +7156,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0xb5829e1f8078860969950852546B947f37855ef1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb5829e1f8078860969950852546B947f37855ef1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -5029,8 +7169,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0xCd627aA160A6fA45Eb793D19Ef54f5062F20f33f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCd627aA160A6fA45Eb793D19Ef54f5062F20f33f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x74eD17608cc2B5f30a59d6aF07C9aD1B1aB3A5b1"
},
@@ -5038,8 +7182,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0xFC361d7443B3E19F3720462d07480a03d60BB620",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFC361d7443B3E19F3720462d07480a03d60BB620",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3"
},
@@ -5047,8 +7195,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x3300f27EDEeEB59CC4C4203785406cBEAfEC8dF3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3300f27EDEeEB59CC4C4203785406cBEAfEC8dF3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x7A56E1C57C7475CCf742a1832B028F0456652F97"
},
@@ -5056,8 +7208,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x0809FC59B735e0aa90448514bBbEe0C75A080475",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0809FC59B735e0aa90448514bBbEe0C75A080475",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3"
},
@@ -5065,8 +7221,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x4bc35816c1D0B911940894ccd5121eC64Ffd69eb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4bc35816c1D0B911940894ccd5121eC64Ffd69eb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3"
},
@@ -5074,8 +7234,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -5083,8 +7247,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "SolvBTC",
- "poolAddress": "2a6KLcDkvoTVWmPDQhc15earc6hU4uwEyBQrmRfcBon4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "2a6KLcDkvoTVWmPDQhc15earc6hU4uwEyBQrmRfcBon4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "SoLvHDFVstC74Jr9eNLTDoG4goSUsn1RENmjNtFKZvW"
},
@@ -5092,8 +7260,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
},
@@ -5101,8 +7273,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Solv BTC",
- "poolAddress": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC",
"tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77"
}
@@ -5112,8 +7288,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Bera Vault",
- "poolAddress": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC.BERA",
"tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B"
},
@@ -5121,8 +7301,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Bera Vault",
- "poolAddress": "0x42e15ab6098716f3Ae67e0Ff69C64b5a47304406",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x42e15ab6098716f3Ae67e0Ff69C64b5a47304406",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SolvBTC.BERA",
"tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B"
},
@@ -5130,8 +7314,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Bera Vault",
- "poolAddress": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC.BERA",
"tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B"
},
@@ -5139,8 +7327,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Bera Vault",
- "poolAddress": "0xD4304D2D5C9cdF63124fD2A6C814f6b4F85925D9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD4304D2D5C9cdF63124fD2A6C814f6b4F85925D9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "SolvBTC.BERA",
"tokenAddress": "0xE7C253EAD50976Caf7b0C2cbca569146A7741B50"
}
@@ -5150,8 +7342,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Jupiter",
- "poolAddress": "0xb655EEd4AD8A1A7011c6C431DaE8b55a19a508B9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb655EEd4AD8A1A7011c6C431DaE8b55a19a508B9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SolvBTC.JUP",
"tokenAddress": "0x6b062AA7F5FC52b530Cb13967aE2E6bc0D8Dd3E4"
},
@@ -5159,8 +7355,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Jupiter",
- "poolAddress": "0x48731cF7e84dc94C5f84577882c14Be11a5B7456",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x48731cF7e84dc94C5f84577882c14Be11a5B7456",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SolvBTC.JUP",
"tokenAddress": "0x38a001e57430f781404ffF7a81DE4Bd67d1f6117"
},
@@ -5168,8 +7368,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "SolvBTC.JUP",
- "poolAddress": "HMDSmmuupoWwe9TV3nZ3qmPqAKL2tU7udghJzCywckgM",
- "poolType": "burnMint",
+ "pool": {
+ "address": "HMDSmmuupoWwe9TV3nZ3qmPqAKL2tU7udghJzCywckgM",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SolvBTCJUP",
"tokenAddress": "SoLvzL3ZVjofmNB5LYFrf94QtNhMUSea4DawFhnAau8"
},
@@ -5177,8 +7381,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "SolvBTC Jupiter",
- "poolAddress": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "SolvBTC.JUP",
"tokenAddress": "0xAffEb8576b927050f5a3B6fbA43F360D2883A118"
}
@@ -5188,8 +7396,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "STABLE",
- "poolAddress": "0x7169054A07c8946E45728CDe01Fee68bab5BEB82",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7169054A07c8946E45728CDe01Fee68bab5BEB82",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "STABLE",
"tokenAddress": "0x8bF75bc68FD337dfd8186d731Df8b3C2CB14B9E6"
},
@@ -5197,8 +7409,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "STABLE",
- "poolAddress": "0xD5B44D00A3670533c17b6BE38156C0b1bBdBe90A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD5B44D00A3670533c17b6BE38156C0b1bBdBe90A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "STABLE",
"tokenAddress": "0x666966Ef3925B1c92fa355FDA9722899f3e73451"
},
@@ -5206,8 +7422,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "STABLE",
- "poolAddress": "0x581CED7408860a33E47CE6cA93e2cbB4bB48c9C7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x581CED7408860a33E47CE6cA93e2cbB4bB48c9C7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "STABLE",
"tokenAddress": "0x60b9C41d99FE3Eb64Ecc1344baD31D87f1bceD6D"
}
@@ -5217,8 +7437,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stabull Finance",
- "poolAddress": "0x500F6D4948Aac25074690a1c42Ae267b41a73326",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x500F6D4948Aac25074690a1c42Ae267b41a73326",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "STABUL",
"tokenAddress": "0x6722F882cc3A1B1034893eFA9764397C88897892"
},
@@ -5226,8 +7450,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stabull Finance",
- "poolAddress": "0xd2D62AB60A53Bad539CD8e43121c624B246F6302",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd2D62AB60A53Bad539CD8e43121c624B246F6302",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "STABUL",
"tokenAddress": "0x6A43795941113c2F58EB487001f4f8eE74b6938A"
},
@@ -5235,8 +7463,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stabull Finance",
- "poolAddress": "0x057aDAdDa0C63fE48A41dEFFb13B07528b1Bee3b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x057aDAdDa0C63fE48A41dEFFb13B07528b1Bee3b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "STABUL",
"tokenAddress": "0xC4420347a4791832bb7b16bF070D5C017D9fABC4"
}
@@ -5246,8 +7478,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lorenzo stBTC",
- "poolAddress": "0x4B8BdCAdbDbb20330a6f90C8c8B1BA2E363E9BE8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4B8BdCAdbDbb20330a6f90C8c8B1BA2E363E9BE8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "stBTC",
"tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3"
},
@@ -5255,8 +7491,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Lorenzo stBTC",
- "poolAddress": "0x20282C8e5d2d44BaC0E37A3C78a18b3f78EE1d86",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x20282C8e5d2d44BaC0E37A3C78a18b3f78EE1d86",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "stBTC",
"tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3"
}
@@ -5266,8 +7506,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stobox Token v.2",
- "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "STBU",
"tokenAddress": "0xb0c4080a8Fa7afa11a09473f3be14d44AF3f8743"
},
@@ -5275,8 +7519,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stobox Token v.3",
- "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "STBU",
"tokenAddress": "0x1cb9bD2c6E7F4A7DE3778547d46C8D4c22abC093"
},
@@ -5284,8 +7532,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stobox Token v.2",
- "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "STBU",
"tokenAddress": "0xa6422E3E219ee6d4C1B18895275FE43556fd50eD"
},
@@ -5293,8 +7545,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Stobox Token v.2",
- "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "STBU",
"tokenAddress": "0xcf403036bc139d30080D2Cf0F5b48066F98191bB"
}
@@ -5304,8 +7560,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Tensorplex Staked TAO",
- "poolAddress": "0x4F3eF0574095DeE6f216b9dD9f21Bfb0466a4CCD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4F3eF0574095DeE6f216b9dD9f21Bfb0466a4CCD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "stTAO",
"tokenAddress": "0x886C0677D7BB7272C7eD8878dc03EF357aFbb5B5"
},
@@ -5313,8 +7573,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Tensorplex Staked TAO",
- "poolAddress": "0x43Fadc7B2929078F0f318E0bEC6b31dC2bF1C309",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x43Fadc7B2929078F0f318E0bEC6b31dC2bF1C309",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "stTAO",
"tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6"
},
@@ -5322,8 +7586,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Tensorplex Staked TAO",
- "poolAddress": "0x46083b69F70dDDbd1212e3AAc566DC3D8AdAc4C4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x46083b69F70dDDbd1212e3AAc566DC3D8AdAc4C4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "stTAO",
"tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6"
},
@@ -5331,8 +7599,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Tensorplex Staked TAO",
- "poolAddress": "0x5c16671f7360E32982691c6A14353D8186C57A59",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x5c16671f7360E32982691c6A14353D8186C57A59",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "stTAO",
"tokenAddress": "0xB60acD2057067DC9ed8c083f5aa227a244044fD6"
}
@@ -5342,8 +7614,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian BTC",
- "poolAddress": "0xd9193B4aFfA057Fa78E0b5C60fAf1bC09df3708b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd9193B4aFfA057Fa78E0b5C60fAf1bC09df3708b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "suBTC",
"tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711"
},
@@ -5351,8 +7627,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian BTC",
- "poolAddress": "0x13d579664bAAb9ADcC4c6B19956f7b7EADBB036f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x13d579664bAAb9ADcC4c6B19956f7b7EADBB036f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "suBTC",
"tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711"
},
@@ -5360,8 +7640,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian BTC",
- "poolAddress": "0x5Be290d68db372cc487B1356649D906efC4f58Ca",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5Be290d68db372cc487B1356649D906efC4f58Ca",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "suBTC",
"tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711"
}
@@ -5371,8 +7655,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian ETH",
- "poolAddress": "0x70544B4E4FcEd9c61BCdb6E0fFa69002cC4d374f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x70544B4E4FcEd9c61BCdb6E0fFa69002cC4d374f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "suETH",
"tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0"
},
@@ -5380,8 +7668,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian ETH",
- "poolAddress": "0xafc7E9fDD13AFF368B1d8d16e04f4977e68128E1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xafc7E9fDD13AFF368B1d8d16e04f4977e68128E1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "suETH",
"tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0"
},
@@ -5389,8 +7681,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian ETH",
- "poolAddress": "0xE58eDBb7Fdd5f2DD5cfAD2667e5D570E1a0a6A84",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE58eDBb7Fdd5f2DD5cfAD2667e5D570E1a0a6A84",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "suETH",
"tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0"
}
@@ -5400,8 +7696,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "sUSD1+",
- "poolAddress": "0xa58B73a340f3c0d9d65Be8cAaB6C5EfB9331F775",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa58B73a340f3c0d9d65Be8cAaB6C5EfB9331F775",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "sUSD1+",
"tokenAddress": "0x4F2760B32720F013E900DC92F65480137391199b"
},
@@ -5409,8 +7709,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "sUSD1+",
- "poolAddress": "0xBe4fbD980712a800f5e0e7C15a70e097efaCD331",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBe4fbD980712a800f5e0e7C15a70e097efaCD331",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "sUSD1+",
"tokenAddress": "0x8F18f2C97d2f5EC0e1d5B91c1D2ce245a9151972"
}
@@ -5420,8 +7724,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian USD",
- "poolAddress": "0x6C8Fee5E05E99db417DFEe0B96275B065eA20EAe",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6C8Fee5E05E99db417DFEe0B96275B065eA20EAe",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "suUSD",
"tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8"
},
@@ -5429,8 +7737,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian USD",
- "poolAddress": "0x69797ECF7ACd6CA73a8c42cfb4268F7572047346",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x69797ECF7ACd6CA73a8c42cfb4268F7572047346",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "suUSD",
"tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8"
},
@@ -5438,8 +7750,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Sumerian USD",
- "poolAddress": "0x67F4e731f446Ff76716E7E3c955CD5A75C1B1787",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x67F4e731f446Ff76716E7E3c955CD5A75C1B1787",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "suUSD",
"tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8"
}
@@ -5449,8 +7765,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Space and Time",
- "poolAddress": "0x44E787a3a81bbc03Ec2C2a7aDADC5aE7Bc925Db9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x44E787a3a81bbc03Ec2C2a7aDADC5aE7Bc925Db9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "SXT",
"tokenAddress": "0xA2c22252cDc8b7cDdEe1B0b2E242818509fCf7b8"
},
@@ -5458,8 +7778,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Space and Time",
- "poolAddress": "0x19EE30DE803b921Ecbba64eD1787Cda6d536c26a",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x19EE30DE803b921Ecbba64eD1787Cda6d536c26a",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "SXT",
"tokenAddress": "0xE6Bfd33F52d82Ccb5b37E16D3dD81f9FFDAbB195"
}
@@ -5469,8 +7793,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0x660975730059246A68521a3e2FBD4740173100f5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x660975730059246A68521a3e2FBD4740173100f5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0x41CA7586cC1311807B4605fBB748a3B8862b42b5"
},
@@ -5478,8 +7806,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0xA36955b2Bc12Aee77FF7519482D16C7B86DBe42a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA36955b2Bc12Aee77FF7519482D16C7B86DBe42a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0x660975730059246A68521a3e2FBD4740173100f5"
},
@@ -5487,8 +7819,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0x966519C334D895121B61584CAdeBc15571b62983",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x966519C334D895121B61584CAdeBc15571b62983",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0xd31dB306E5D79F0018Ac92e08492284201493EA1"
},
@@ -5496,8 +7832,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0x20B79D39Bd44dEee4F89B1e9d0e3b945fde06491",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x20B79D39Bd44dEee4F89B1e9d0e3b945fde06491",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0x80ac24aA929eaF5013f6436cdA2a7ba190f5Cc0b"
},
@@ -5505,8 +7845,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "HrTBpF3LqSxXnjnYdR4htnBLyMHNZ6eNaDZGPundvHbm",
- "poolType": "burnMint",
+ "pool": {
+ "address": "HrTBpF3LqSxXnjnYdR4htnBLyMHNZ6eNaDZGPundvHbm",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "AvZZF1YaZDziPY2RCK4oJrRVrbN3mTD9NL24hPeaZeUj"
}
@@ -5516,8 +7860,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT",
- "poolAddress": "0x0aA145a62153190B8f0D3cA00c441e451529f755",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0aA145a62153190B8f0D3cA00c441e451529f755",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0x051665f2455116e929b9972c36d23070F5054Ce0"
},
@@ -5525,8 +7873,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT",
- "poolAddress": "0xDE76A096C5eadDdf97Af3fE15ee49d32AEDa9822",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xDE76A096C5eadDdf97Af3fE15ee49d32AEDa9822",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0x356B8d89c1e1239Cbbb9dE4815c39A1474d5BA7D"
},
@@ -5534,8 +7886,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT",
- "poolAddress": "0x1d952d2f6eE86Ef4940Fa648aA7477c8fF175F09",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1d952d2f6eE86Ef4940Fa648aA7477c8fF175F09",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0xC4374775489CB9C56003BF2C9b12495fC64F0771"
}
@@ -5545,8 +7901,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse ETH",
- "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "tETH",
"tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003"
},
@@ -5554,8 +7914,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse ETH",
- "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "tETH",
"tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003"
},
@@ -5563,8 +7927,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse ETH",
- "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "tETH",
"tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003"
},
@@ -5572,8 +7940,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse ETH",
- "poolAddress": "0x8113f001eA456759264317007220cBc939cA8435",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8113f001eA456759264317007220cBc939cA8435",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "tETH",
"tokenAddress": "0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8"
},
@@ -5581,8 +7953,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse ETH",
- "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "tETH",
"tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003"
}
@@ -5592,8 +7968,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "THENA",
- "poolAddress": "0x93cAb7CB2a07477A557754a81971EFeDFa04EdAA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x93cAb7CB2a07477A557754a81971EFeDFa04EdAA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "THE",
"tokenAddress": "0x9d94A7fF461e83F161c8c040E78557e31d8Cba72"
},
@@ -5601,8 +7981,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "THENA",
- "poolAddress": "0xECFF67559c0583027A5fbd85136E33bC4D66eeA0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xECFF67559c0583027A5fbd85136E33bC4D66eeA0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "THE",
"tokenAddress": "0xF4C8E32EaDEC4BFe97E0F595AdD0f4450a863a11"
},
@@ -5610,8 +7994,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "THENA",
- "poolAddress": "0x2a9f896660E802c59a3178b2E8CB7FBaCCC04e86",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2a9f896660E802c59a3178b2E8CB7FBaCCC04e86",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "THE",
"tokenAddress": "0x27DfD2D7b85e0010542da35C6EBcD59E45fc949D"
}
@@ -5621,8 +8009,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Polytrade",
- "poolAddress": "0x7eb93143612CFB6Dda216EBE481e510F3A3b645f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7eb93143612CFB6Dda216EBE481e510F3A3b645f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "TRADE",
"tokenAddress": "0xb75Ba7eF520A5Bd0A5d01108060bE269642c4601"
},
@@ -5630,8 +8022,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Polytrade",
- "poolAddress": "0x2bFBA5bD4b0b1180A135Bb6a74423cCB429Fc744",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2bFBA5bD4b0b1180A135Bb6a74423cCB429Fc744",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "TRADE",
"tokenAddress": "0x72e1868f8EB8f9fb86455c10e72aa4b24774a5a3"
},
@@ -5639,8 +8035,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Polytrade",
- "poolAddress": "0x520763c1eBDa04DAC9a6077a41CCC703FF22a9f8",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x520763c1eBDa04DAC9a6077a41CCC703FF22a9f8",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "TRADE",
"tokenAddress": "0x6e5970DBd6fc7eb1f29C6D2eDF2bC4c36124C0C1"
},
@@ -5648,8 +8048,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Polytrade (PoS)",
- "poolAddress": "0xbE787bD62c85c2dCB92B662A5d77348eA9A7e461",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xbE787bD62c85c2dCB92B662A5d77348eA9A7e461",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "TRADE",
"tokenAddress": "0x692AC1e363ae34b6B489148152b12e2785a3d8d6"
}
@@ -5659,8 +8063,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse Token",
- "poolAddress": "0x229AE3eC539865444404c666f504Be68CeB81E02",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x229AE3eC539865444404c666f504Be68CeB81E02",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "TREE",
"tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3"
},
@@ -5668,8 +8076,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse Token",
- "poolAddress": "0x229AE3eC539865444404c666f504Be68CeB81E02",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x229AE3eC539865444404c666f504Be68CeB81E02",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "TREE",
"tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3"
},
@@ -5677,8 +8089,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Treehouse Token",
- "poolAddress": "0x407dBD0170A79Bb62a016d4555C656205BbA8a68",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x407dBD0170A79Bb62a016d4555C656205BbA8a68",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "TREE",
"tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3"
}
@@ -5688,8 +8104,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Turbo",
- "poolAddress": "0xeA771EB68CcfE489cdA2713F4248CD512c880453",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xeA771EB68CcfE489cdA2713F4248CD512c880453",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "TURBO",
"tokenAddress": "0x620a8b7Bd26b21d0d053ee9a05A593f35Bf37d8e"
},
@@ -5697,8 +8117,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Turbo",
- "poolAddress": "0x348540aa7b129b0F3c931FEDE811d009E0e18E60",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x348540aa7b129b0F3c931FEDE811d009E0e18E60",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "TURBO",
"tokenAddress": "0xA35923162C49cF95e6BF26623385eb431ad920D3"
}
@@ -5708,8 +8132,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Turtle",
- "poolAddress": "0x4559605E3003fdA8c059e14aF4f16ba9a004335a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4559605E3003fdA8c059e14aF4f16ba9a004335a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "TURTLE",
"tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd"
},
@@ -5717,8 +8145,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Turtle",
- "poolAddress": "0x7263Bc9f9D2f94e9a3Bcb3EFB40C79C43aC0C647",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7263Bc9f9D2f94e9a3Bcb3EFB40C79C43aC0C647",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "TURTLE",
"tokenAddress": "0x56aa6D651bfefA9207B35E508716466359BAe8eF"
},
@@ -5726,8 +8158,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Turtle",
- "poolAddress": "0xD3bD7Db2B40DBEE54cA70a34921fde8A8D2f8BbB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD3bD7Db2B40DBEE54cA70a34921fde8A8D2f8BbB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "TURTLE",
"tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd"
}
@@ -5737,8 +8173,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "una USDC",
- "poolAddress": "0xcfd0637093193ac909f74F9de95c2d4B92Df23c4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xcfd0637093193ac909f74F9de95c2d4B92Df23c4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "una.USDC",
"tokenAddress": "0x66cC3FD40612F9c591F977ce026Ef1C79520C472"
},
@@ -5746,8 +8186,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "una USDC",
- "poolAddress": "0x0c118bE814166fb720f8DDEB119F53B622787918",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0c118bE814166fb720f8DDEB119F53B622787918",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "una.USDC",
"tokenAddress": "0xcdf764933B9a9ebB2C5DA904B9715F3Cf981572A"
}
@@ -5757,8 +8201,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0x2F15F2C9d1E0945C37E3EDCD8914BBd0067e46C8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2F15F2C9d1E0945C37E3EDCD8914BBd0067e46C8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x9f1453d0fADC73aE12d4e1BD8311AA2463AE7d0D"
},
@@ -5766,8 +8214,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0x2b975918e804803615131e7de2ca1645B1719ec9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2b975918e804803615131e7de2ca1645B1719ec9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x98169bF9B7a44EDaD372364063b897E16eBba88e"
},
@@ -5775,8 +8227,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0x65030ab42BAd6E140ADD01D6998DC7d2eCb34089",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x65030ab42BAd6E140ADD01D6998DC7d2eCb34089",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x89F590D8f9c1a306AEB4E939Dc923C80144998Cd"
},
@@ -5784,8 +8240,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0xFaF7992eB0A1eff0C4cdB070c12512f18E0D6079",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFaF7992eB0A1eff0C4cdB070c12512f18E0D6079",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x6ff638E48247b003E003aa3EeDDdF97BaA8f3B64"
},
@@ -5793,8 +8253,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0x9F02c16190691CC4ceCD53A9267Bd24e37B6d06C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9F02c16190691CC4ceCD53A9267Bd24e37B6d06C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x2624Bd0094f474713AC9c634b37A5ebef4e0b1FE"
},
@@ -5802,8 +8266,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0xeDb68F273FC95e1DB951580957c3fE49FF0A8cF7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xeDb68F273FC95e1DB951580957c3fE49FF0A8cF7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0x186d65ceD0693382713437e34EF8723FD6aa9A1E"
},
@@ -5811,8 +8279,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "una WEMIX",
- "poolAddress": "0x3B1f09b0Ac19fCd3F03A0Bdda70F65Db01626de1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3B1f09b0Ac19fCd3F03A0Bdda70F65Db01626de1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "una.WEMIX",
"tokenAddress": "0xF500208d9aB68FeA3cc41bd107811e809C0B6B83"
}
@@ -5822,8 +8294,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x80ab5314fa37a0c2e10bc490acd7ca83898119accaebac9e7bba61f1f164b8ed",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x80ab5314fa37a0c2e10bc490acd7ca83898119accaebac9e7bba61f1f164b8ed",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xf764dbfd6999067ac052a8e722ae359bec389bd7dba19ead586801b99b81b075"
},
@@ -5831,8 +8307,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x097Ae334B90F98637899cfcaa7980B13aa497e5E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x097Ae334B90F98637899cfcaa7980B13aa497e5E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90"
},
@@ -5840,8 +8320,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5849,8 +8333,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x085e4ADc459699a8Ec60c6da5CBdBF715f23831f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x085e4ADc459699a8Ec60c6da5CBdBF715f23831f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x236f8c0a61dA474dB21B693fB2ea7AAB0c803894"
},
@@ -5858,8 +8346,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5867,8 +8359,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0xF0b508c7fF394B94BCb73C19007C7102C2d9aa19",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF0b508c7fF394B94BCb73C19007C7102C2d9aa19",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a"
},
@@ -5876,8 +8372,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5885,8 +8385,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x085BE2297c1A1A2C2a119b731AF887DD0119D035",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x085BE2297c1A1A2C2a119b731AF887DD0119D035",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a"
},
@@ -5894,8 +8398,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x02042Df6933a2Fb8a7Bfc92117146E7CCf6b260f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x02042Df6933a2Fb8a7Bfc92117146E7CCf6b260f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5903,8 +8411,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0xBf977109Ae4Fd840d23b19454DF1C7414168E9F9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBf977109Ae4Fd840d23b19454DF1C7414168E9F9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d"
},
@@ -5912,8 +8424,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x85d4CfFC273b0766bFa1402d890c71DF167CC2AD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x85d4CfFC273b0766bFa1402d890c71DF167CC2AD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5921,8 +8437,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e"
},
@@ -5930,8 +8450,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x30782053a09599eE44C054075A36c4CA1B224Be5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x30782053a09599eE44C054075A36c4CA1B224Be5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d"
},
@@ -5939,8 +8463,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x5aE00CB3da6d11d525dd7AE288673f3BCB992526",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5aE00CB3da6d11d525dd7AE288673f3BCB992526",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d"
},
@@ -5948,8 +8476,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0xda57087632409A30876e978450De23A2f55ADA91",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xda57087632409A30876e978450De23A2f55ADA91",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18"
},
@@ -5957,8 +8489,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x1689C22eD5435e49071CFc208D1Ac6F2A2274490",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1689C22eD5435e49071CFc208D1Ac6F2A2274490",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0x004E9C3EF86bc1ca1f0bB5C7662861Ee93350568"
},
@@ -5966,8 +8502,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "A8qxRKqAftbqatfegeiq3yTVmVTPS9DimGWHtgzjC417",
- "poolType": "burnMint",
+ "pool": {
+ "address": "A8qxRKqAftbqatfegeiq3yTVmVTPS9DimGWHtgzjC417",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "uniBKsEV37qLRFZD7v3Z9drX6voyiCM8WcaePqeSSLc"
},
@@ -5975,8 +8515,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0x22134617Ae0f6CA8D89451e5Ae091c94f7D743DC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x22134617Ae0f6CA8D89451e5Ae091c94f7D743DC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90"
},
@@ -5984,8 +8528,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "uniBTC",
- "poolAddress": "0xA7ee087c961A22aa25eDdaB9c0b43b4a39EAd5ea",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA7ee087c961A22aa25eDdaB9c0b43b4a39EAd5ea",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "uniBTC",
"tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18"
}
@@ -5995,8 +8543,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Unio Coin",
- "poolAddress": "0x5eD97E6938D4074CdFC83a310de2525F0a4e6c73",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5eD97E6938D4074CdFC83a310de2525F0a4e6c73",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "UNIO",
"tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab"
},
@@ -6004,8 +8556,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Unio Coin",
- "poolAddress": "0x8AA50883f5f62EB081D16c90FdAdAD9E227206c6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8AA50883f5f62EB081D16c90FdAdAD9E227206c6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "UNIO",
"tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab"
},
@@ -6013,8 +8569,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Unio Coin",
- "poolAddress": "0xc576D83eA5D672E220f7B099827E73685Fde5B73",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc576D83eA5D672E220f7B099827E73685Fde5B73",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "UNIO",
"tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab"
}
@@ -6024,8 +8584,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Usagi",
- "poolAddress": "0x7c458207b7b0E4Eca3c54f3353b2dB00A81a04aA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7c458207b7b0E4Eca3c54f3353b2dB00A81a04aA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USAGI",
"tokenAddress": "0x760295AA772671f21cd0046d094938d09f2b380D"
},
@@ -6033,8 +8597,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Usagi",
- "poolAddress": "0xC488be11a33c20bd21f7940D4a5937E8A8c81fEc",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xC488be11a33c20bd21f7940D4a5937E8A8c81fEc",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "USAGI",
"tokenAddress": "0x3a1adB8Ef2a37Fe127Aa62B2Fc0399a4A6AD9D79"
}
@@ -6044,8 +8612,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD+",
- "poolAddress": "0x1a1079CBA4bf83Ef2D90997360231F9599800fB5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1a1079CBA4bf83Ef2D90997360231F9599800fB5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USD+",
"tokenAddress": "0xfc90518D5136585ba45e34ED5E1D108BD3950CFa"
},
@@ -6053,8 +8625,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD+",
- "poolAddress": "0x1e88d63b8805C36f96C530c37bde113361aC6Cc0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1e88d63b8805C36f96C530c37bde113361aC6Cc0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USD+",
"tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3"
},
@@ -6062,8 +8638,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD+",
- "poolAddress": "0xCE8342b8eFd4D804B97Df92bC6bb930099098fDE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCE8342b8eFd4D804B97Df92bC6bb930099098fDE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD+",
"tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3"
}
@@ -6073,8 +8653,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Usual USD",
- "poolAddress": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD0",
"tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270"
},
@@ -6082,8 +8666,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Usual USD",
- "poolAddress": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USD0",
"tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270"
},
@@ -6091,8 +8679,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Usual USD",
- "poolAddress": "0xC3d39B77032114c8884276Dae0F02cdF75162782",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xC3d39B77032114c8884276Dae0F02cdF75162782",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "USD0",
"tokenAddress": "0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5"
}
@@ -6102,8 +8694,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0xEC1276CA704c612A28cb2C873dEdCEba97F65cED",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEC1276CA704c612A28cb2C873dEdCEba97F65cED",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD1",
"tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61"
},
@@ -6111,8 +8707,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "World Liberty Financial USD",
- "poolAddress": "0x1eb155d08acc900954b6ccee01659b390399ae81ad4c582b73d41374c475caf6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1eb155d08acc900954b6ccee01659b390399ae81ad4c582b73d41374c475caf6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USD1",
"tokenAddress": "0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2"
},
@@ -6120,8 +8720,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0xCe3f7378aE409e1CE0dD6fFA70ab683326b73f04",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCe3f7378aE409e1CE0dD6fFA70ab683326b73f04",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD1",
"tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d"
},
@@ -6129,8 +8733,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0xf58A2e303e519f6A1b772137995871967e30391a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf58A2e303e519f6A1b772137995871967e30391a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD1",
"tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61"
},
@@ -6138,8 +8746,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0x36a72eD0096B414521C45E3ddC9ed657d1D9c141",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x36a72eD0096B414521C45E3ddC9ed657d1D9c141",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USD1",
"tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d"
},
@@ -6147,8 +8759,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "World Liberty Financial USD",
- "poolAddress": "0x5258D5BEB800DF857D8A4e808EE0C8c7bF567e0E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5258D5BEB800DF857D8A4e808EE0C8c7bF567e0E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD1",
"tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61"
},
@@ -6156,8 +8772,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0x258Fc917b8de98b4aA0d38776E95dcce9e7EC8aC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x258Fc917b8de98b4aA0d38776E95dcce9e7EC8aC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USD1",
"tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61"
},
@@ -6165,8 +8785,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial USD",
- "poolAddress": "0x770318D51052871DeF5Eb5c452F4fd28B7960C4e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x770318D51052871DeF5Eb5c452F4fd28B7960C4e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USD1",
"tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61"
},
@@ -6174,8 +8798,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "World Liberty Financial USD",
- "poolAddress": "B4PB9qWUW6R18Gbpk5Km8mJ2GoQgCcVpgdqhU7C2n8fh",
- "poolType": "burnMint",
+ "pool": {
+ "address": "B4PB9qWUW6R18Gbpk5Km8mJ2GoQgCcVpgdqhU7C2n8fh",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USD1",
"tokenAddress": "USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB"
}
@@ -6185,8 +8813,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Bridged USDC",
- "poolAddress": "0x0A3d8eD619ECF1E984488710eB2cEcE4FDbd83CA",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0A3d8eD619ECF1E984488710eB2cEcE4FDbd83CA",
+ "rawType": "usdc",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDC.e",
"tokenAddress": "0x1f3AA82227281cA364bFb3d253B0f1af1Da6473E"
},
@@ -6194,8 +8826,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0x966519C334D895121B61584CAdeBc15571b62983",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x966519C334D895121B61584CAdeBc15571b62983",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.1"
+ },
"symbol": "USDC",
"tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E"
},
@@ -6203,8 +8839,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9",
+ "rawType": "usdc",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0xf8C374CE88A3BE3d374e8888349C7768B607c755"
},
@@ -6212,8 +8852,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Bridged USDC (BOB)",
- "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0",
+ "rawType": "usdc",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDC.e",
"tokenAddress": "0xe75D0fB2C24A55cA1e3F96781a2bCC7bdba058F0"
},
@@ -6221,8 +8865,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0x40530f5305d6Fd6912925C5ec2C36453B85d8F5f",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x40530f5305d6Fd6912925C5ec2C36453B85d8F5f",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.1"
+ },
"symbol": "USDC",
"tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
},
@@ -6230,8 +8878,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
},
@@ -6239,8 +8891,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0xE67E30B1b4F80A35852488757C3efc093903651A",
- "poolType": "usdc",
+ "pool": {
+ "address": "0xE67E30B1b4F80A35852488757C3efc093903651A",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85"
},
@@ -6248,8 +8904,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0xf58A2e303e519f6A1b772137995871967e30391a",
- "poolType": "usdc",
+ "pool": {
+ "address": "0xf58A2e303e519f6A1b772137995871967e30391a",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x078D782b760474a361dDA0AF3839290b0EF57AD6"
},
@@ -6257,8 +8917,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0x03D19033AdA17750D5BC2d8E325337D0748F9FEF",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x03D19033AdA17750D5BC2d8E325337D0748F9FEF",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
@@ -6266,8 +8930,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359"
},
@@ -6275,8 +8943,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C",
+ "rawType": "usdc",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc"
},
@@ -6284,8 +8956,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "Gog2wHG7KS8St26d1fPrgNFtta6HK8Xza7SSHzgbWPr5",
- "poolType": "usdc",
+ "pool": {
+ "address": "Gog2wHG7KS8St26d1fPrgNFtta6HK8Xza7SSHzgbWPr5",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
},
@@ -6293,8 +8969,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Bridged USDC",
- "poolAddress": "0x5937c7096b054564c6F17B7e61D9Abf1256B0593",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5937c7096b054564c6F17B7e61D9Abf1256B0593",
+ "rawType": "usdc",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDC.e",
"tokenAddress": "0x44bB111010DfFfb3695F9a1B66aa879976199e7b"
}
@@ -6304,8 +8984,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Falcon USD",
- "poolAddress": "0x4b66431F9E5f5Cd026ae48E617902207b43048D4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4b66431F9E5f5Cd026ae48E617902207b43048D4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USDf",
"tokenAddress": "0xb3b02E4A9Fb2bD28CC2ff97B0aB3F6B3Ec1eE9D2"
},
@@ -6313,8 +8997,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Falcon USD",
- "poolAddress": "0xEcf61D6fAA3B9faE7195AF3bc9891450C1733f78",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xEcf61D6fAA3B9faE7195AF3bc9891450C1733f78",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "USDf",
"tokenAddress": "0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2"
},
@@ -6322,8 +9010,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Falcon USD",
- "poolAddress": "0x33570299e0D73f07c82d005DE75De54cf4582FCC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x33570299e0D73f07c82d005DE75De54cf4582FCC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDf",
"tokenAddress": "0x8210c0634AB8f273806e4b7866E9Db353773c44B"
}
@@ -6333,8 +9025,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USDFI",
- "poolAddress": "0xDB96110a1d4c447055c71227CE5908AF859c1015",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDB96110a1d4c447055c71227CE5908AF859c1015",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDFI",
"tokenAddress": "0xC9f5955f6dA20e44A068f3d58FB2404f56f9a6f2"
},
@@ -6342,8 +9038,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USDFI",
- "poolAddress": "0x28B57510597c1629ec76f95A2DAcD579e18f1436",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x28B57510597c1629ec76f95A2DAcD579e18f1436",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDFI",
"tokenAddress": "0x249c48e22E95514Ca975De31f473F30c2f3C0916"
},
@@ -6351,8 +9051,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USDFI",
- "poolAddress": "0xE727F7975bEF908C49D0591724669F05F7dAd811",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE727F7975bEF908C49D0591724669F05F7dAd811",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USDFI",
"tokenAddress": "0xa7a0B3Fe94121E366D774d60D075F6386F750884"
}
@@ -6362,8 +9066,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x6a1252A0e3100fDFC3Fe65aE43D6829b6d2125Ba",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6a1252A0e3100fDFC3Fe65aE43D6829b6d2125Ba",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
},
@@ -6371,8 +9079,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x0723Bd0CE11cCFFa3D8bd1649011195fD38EF21E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0723Bd0CE11cCFFa3D8bd1649011195fD38EF21E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
},
@@ -6380,8 +9092,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x4109f7E577596432458F8D4DC2E78637428D5614",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4109f7E577596432458F8D4DC2E78637428D5614",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
},
@@ -6389,8 +9105,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x028A4Caa308883170C024AcfC367B8B627EceeCb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x028A4Caa308883170C024AcfC367B8B627EceeCb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
},
@@ -6398,8 +9118,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x70139902BC147754221FD59DFf8f8A16b34876F8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x70139902BC147754221FD59DFf8f8A16b34876F8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDM",
"tokenAddress": "0x7715c206A14Ac93Cb1A6c0316A6E5f8aD7c9Dc31"
},
@@ -6407,8 +9131,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0x4109f7E577596432458F8D4DC2E78637428D5614",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4109f7E577596432458F8D4DC2E78637428D5614",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
},
@@ -6416,8 +9144,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Mountain Protocol USD",
- "poolAddress": "0xA2492283F3016b078129290BAf5293Aea4f9ae48",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA2492283F3016b078129290BAf5293Aea4f9ae48",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USDM",
"tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C"
}
@@ -6427,8 +9159,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OpenEden Open Dollar",
- "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x500d4882938020E939a5666c1B4200873da7EfD3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDO",
"tokenAddress": "0x302e52AFf9815B9D1682473DBFB9C74F9B750AA8"
},
@@ -6436,8 +9172,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OpenEden Open Dollar",
- "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x500d4882938020E939a5666c1B4200873da7EfD3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDO",
"tokenAddress": "0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0"
},
@@ -6445,8 +9185,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OpenEden Open Dollar",
- "poolAddress": "0x017566aAD2C164011b9c6552Df3Eb7a8c5c11590",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x017566aAD2C164011b9c6552Df3Eb7a8c5c11590",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USDO",
"tokenAddress": "0x87e617C7484aDE79FcD90db58BEB82B057facb48"
},
@@ -6454,8 +9198,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "OpenEden Open Dollar",
- "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x500d4882938020E939a5666c1B4200873da7EfD3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDO",
"tokenAddress": "0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe"
}
@@ -6465,8 +9213,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0xd7502CaBdb70c79382deF58FB6df3CdA69cb2A1b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd7502CaBdb70c79382deF58FB6df3CdA69cb2A1b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6474,8 +9226,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Tether USD",
- "poolAddress": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USDT",
"tokenAddress": "0xfe9f969faf8Ad72a83b761138bF25dE87eFF9DD2"
},
@@ -6483,8 +9239,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0xAFEd606Bd2CAb6983fC6F10167c98aaC2173D77f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAFEd606Bd2CAb6983fC6F10167c98aaC2173D77f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6492,8 +9252,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0x0EEFa8b75587bcD4A909a0F3c36180D4441481a0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0EEFa8b75587bcD4A909a0F3c36180D4441481a0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6501,8 +9265,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Tether USD",
- "poolAddress": "0x47Db76c9c97F4bcFd54D8872FDb848Cab696092d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x47Db76c9c97F4bcFd54D8872FDb848Cab696092d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USDâ‚®",
"tokenAddress": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e"
},
@@ -6510,8 +9278,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0xa760D20a91C076A57b270D3F7a3150421ab40591",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa760D20a91C076A57b270D3F7a3150421ab40591",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6519,8 +9291,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0x55aeb80Aa6Ab34aA83E1F387903F8Bb2Aa9e2F2d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x55aeb80Aa6Ab34aA83E1F387903F8Bb2Aa9e2F2d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6528,8 +9304,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
},
@@ -6537,8 +9317,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Tether USD",
- "poolAddress": "0xa3532633401AbFfbd15e6be825a45FB7F141469B",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xa3532633401AbFfbd15e6be825a45FB7F141469B",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "USDT",
"tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
@@ -6546,8 +9330,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "OpenUSDT",
- "poolAddress": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "oUSDT",
"tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189"
}
@@ -6557,8 +9345,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USELESS COIN",
- "poolAddress": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USELESS",
"tokenAddress": "0xbA38B3C706f7A515Ff7C8Db04Daa0A134eC46D2b"
},
@@ -6566,8 +9358,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USELESS COIN",
- "poolAddress": "Aunb4sACHkdsqvb5eDHngkPLNLhnA42YUMosFMYDV5pG",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "Aunb4sACHkdsqvb5eDHngkPLNLhnA42YUMosFMYDV5pG",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "USELESS",
"tokenAddress": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk"
}
@@ -6577,8 +9373,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USUAL",
- "poolAddress": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "USUAL",
"tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5"
},
@@ -6586,8 +9386,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USUAL",
- "poolAddress": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "USUAL",
"tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5"
},
@@ -6595,8 +9399,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "USUAL",
- "poolAddress": "0x72a0203b731EdECE2DdAa506a048c0378C44366a",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x72a0203b731EdECE2DdAa506a048c0378C44366a",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "USUAL",
"tokenAddress": "0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E"
}
@@ -6606,8 +9414,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USX Stablecoin",
- "poolAddress": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "USX",
"tokenAddress": "0xad1493B01ced4fAAc409124E667b95259F12fb05"
},
@@ -6615,8 +9427,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USX",
- "poolAddress": "BhqsAa1yib3KqRTDX9WfyuKQtwikoUiDNJTLYgNwBtR6",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "BhqsAa1yib3KqRTDX9WfyuKQtwikoUiDNJTLYgNwBtR6",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "USX",
"tokenAddress": "6FrrzDk5mQARGc1TDYoyVnSyRdds1t4PbtohCD6p3tgG"
}
@@ -6626,8 +9442,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "VOOI",
- "poolAddress": "0x4D275A287B86E423E01CceE66F4e3313B5F47Cf7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4D275A287B86E423E01CceE66F4e3313B5F47Cf7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "VOOI",
"tokenAddress": "0x876cEcb73c9ED1B1526F8e35C6a5a51a31BCF341"
},
@@ -6635,8 +9455,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "VOOI",
- "poolAddress": "0x8B8461F822FDb00943C2c7d42aa17e1CDd5626F1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8B8461F822FDb00943C2c7d42aa17e1CDd5626F1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "VOOI",
"tokenAddress": "0xb31561F0e2aaC72406103b1926356D756F07A481"
}
@@ -6646,8 +9470,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0xF68fC9ccE79df9719c9801d345fFA38ecDCcad35",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF68fC9ccE79df9719c9801d345fFA38ecDCcad35",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "VRTX",
"tokenAddress": "0xFd91eD44Fc13f7FAFF758FE6d339d5790C4a85eC"
},
@@ -6655,8 +9483,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0x387E40Ed22Ee3396288c874411B00C48f6978653",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x387E40Ed22Ee3396288c874411B00C48f6978653",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "VRTX",
"tokenAddress": "0x95146881b86B3ee99e63705eC87AfE29Fcc044D9"
},
@@ -6664,8 +9496,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0xCaf4E8ED1cbdD5FB9B1359e98d9185dafE01B943",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCaf4E8ED1cbdD5FB9B1359e98d9185dafE01B943",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "VRTX",
"tokenAddress": "0xFB0c734Fc3008683c5efF45bcf8128836C4D97D0"
},
@@ -6673,8 +9509,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0xdF7F1eb75E0Ae7E4867F06dF3344abcd852C6D23",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdF7F1eb75E0Ae7E4867F06dF3344abcd852C6D23",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "VRTX",
"tokenAddress": "0x6CD20f11470e9C9d1458a69c8f7B330B99577EF9"
},
@@ -6682,8 +9522,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0x06Aa321d88e5bc62Ca86c54342cAeFa6F19FE526",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x06Aa321d88e5bc62Ca86c54342cAeFa6F19FE526",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "VRTX",
"tokenAddress": "0xd0728F5b1F53A834F8dcd1B86f62CeB8726eb0a0"
},
@@ -6691,8 +9535,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0x826Ba9cF4FE04c73A9750aD88B21b6daCb456516",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x826Ba9cF4FE04c73A9750aD88B21b6daCb456516",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "VRTX",
"tokenAddress": "0x5B8034F6346A81a1387EA21CDD36c48f6e05eb5f"
},
@@ -6700,8 +9548,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vertex",
- "poolAddress": "0x293325B3AacE7322BeB03400e302612A2FC5A4E8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x293325B3AacE7322BeB03400e302612A2FC5A4E8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "VRTX",
"tokenAddress": "0xAd747e3CF4e31B8897B96C81C6C74152De52f614"
}
@@ -6711,8 +9563,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vision",
- "poolAddress": "0x649f03D6F7ac74F6C13733212Aa5419c890d2db6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x649f03D6F7ac74F6C13733212Aa5419c890d2db6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "VSN",
"tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753"
},
@@ -6720,8 +9576,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vision",
- "poolAddress": "0x96db781A7EF341dA5ca348Ece4B824b3AdC71D55",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x96db781A7EF341dA5ca348Ece4B824b3AdC71D55",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "VSN",
"tokenAddress": "0x6fBBbD8bFB1cd3986B1D05e7861a0f62F87DB74b"
},
@@ -6729,8 +9589,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vision",
- "poolAddress": "0x1bb58BA8B6fc5a779EDB2D6421c330d464183c08",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1bb58BA8B6fc5a779EDB2D6421c330d464183c08",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "VSN",
"tokenAddress": "0x31185950db028eCFc70DF6a35a4B552462A35773"
},
@@ -6738,8 +9602,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vision",
- "poolAddress": "0x3DAa89A5AB49DBa691FEA66EB89aC8Cf8BeE2e35",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3DAa89A5AB49DBa691FEA66EB89aC8Cf8BeE2e35",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "VSN",
"tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753"
}
@@ -6749,8 +9617,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped 0G",
- "poolAddress": "0xF6839B313671daE8c1B6AbCaB4eBd0bF41259187",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF6839B313671daE8c1B6AbCaB4eBd0bF41259187",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "W0G",
"tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c"
},
@@ -6758,8 +9630,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped 0G",
- "poolAddress": "0x22fF19A7307eee6bd6d38C569f8bcb40fD071Ff4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x22fF19A7307eee6bd6d38C569f8bcb40fD071Ff4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "W0G",
"tokenAddress": "0x418176040912d11d9445dd4AEc322772A42f2a59"
},
@@ -6767,8 +9643,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped 0G",
- "poolAddress": "0x049DF7Ed53037C58BCAB45510c153D5CD5564830",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x049DF7Ed53037C58BCAB45510c153D5CD5564830",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "W0G",
"tokenAddress": "0x23cd099eB438CcA50349EE2BC809196b1ae00861"
},
@@ -6776,8 +9656,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped 0G",
- "poolAddress": "0xE25a97E9e2f1Eeee81d4a7986A018AC3Ae8D857b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE25a97E9e2f1Eeee81d4a7986A018AC3Ae8D857b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "W0G",
"tokenAddress": "0x4C1Dab3Be86347977F3DfC4b9688224ef2272939"
}
@@ -6787,7 +9671,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped AB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WAB",
"tokenAddress": "0x51dA03503FBBA94B9d0D88C15690D840F02F15F4"
}
@@ -6797,7 +9685,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped ApeCoin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WAPE",
"tokenAddress": "0x48b62137EdfA95a428D35C09E44256a739F6B557"
}
@@ -6807,8 +9699,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Astar Token",
- "poolAddress": "0x98ef4B1Fe8fe9C73Deb07a77c9f861E8558439d7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x98ef4B1Fe8fe9C73Deb07a77c9f861E8558439d7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ASTR",
"tokenAddress": "0xF27441230EADEaC85B764610325Cc9a0D7859689"
},
@@ -6816,8 +9712,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped ASTR",
- "poolAddress": "0x99B41d3e1529dF578f02d68c0c11a0Ca89a522d0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x99B41d3e1529dF578f02d68c0c11a0Ca89a522d0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "WASTR",
"tokenAddress": "0x37795FdD8C165CaB4D6c05771D564d80439CD093"
},
@@ -6825,8 +9725,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Astar Token",
- "poolAddress": "0x2200B5f4fA30a55359Ef0FaE04890113BD73bd16",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2200B5f4fA30a55359Ef0FaE04890113BD73bd16",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ASTR",
"tokenAddress": "0x2CAE934a1e84F693fbb78CA5ED3B0A6893259441"
}
@@ -6836,7 +9740,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped AVAX",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WAVAX",
"tokenAddress": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7"
}
@@ -6846,7 +9754,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Bera",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBERA",
"tokenAddress": "0x6969696969696969696969696969696969696969"
}
@@ -6856,7 +9768,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BNB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBNB",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -6864,7 +9780,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BNB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBNB",
"tokenAddress": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"
}
@@ -6874,7 +9794,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shibarium Wrapped BONE",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBONE",
"tokenAddress": "0xC76F4c819D820369Fb2d7C1531aB3Bb18e6fE8d8"
}
@@ -6884,7 +9808,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBTC",
"tokenAddress": "0xfF204e2681A6fA0e2C3FaDe68a1B28fb90E4Fc5F"
},
@@ -6892,7 +9820,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBTC",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -6900,7 +9832,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBTC",
"tokenAddress": "0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA"
},
@@ -6908,8 +9844,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Wrapped BTC",
- "poolAddress": "0xF6698064776D521b0AFE469F30C40B39B4875b93",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF6698064776D521b0AFE469F30C40B39B4875b93",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "WBTC",
"tokenAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"
},
@@ -6917,8 +9857,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Wrapped Bitcoin",
- "poolAddress": "0x57C6e9E48476B4d08CeAc0ba885D34f7dE71F323",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x57C6e9E48476B4d08CeAc0ba885D34f7dE71F323",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WBTC",
"tokenAddress": "0xCa3Eb64F3DFd7861C76070e3d1492eE5ee20cdC3"
}
@@ -6928,7 +9872,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Bitcorn",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBTCN",
"tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2"
}
@@ -6938,7 +9886,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Celo",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WCELO",
"tokenAddress": "0x2021B12D8138e2D63cF0895eccABC0DFc92416c6"
}
@@ -6948,7 +9900,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped CORE",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WCORE",
"tokenAddress": "0x40375C92d9FAf44d2f9db9Bd9ba41a3317a2404f"
}
@@ -6958,7 +9914,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped CRO",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WCRO",
"tokenAddress": "0x5C7F8A570d578ED84E63fdFA7b1eE72dEae1AE23"
}
@@ -6968,8 +9928,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WECOIN",
- "poolAddress": "0x9766a4A5c1F7Eacc5D9aAc1086aec62137e81596",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9766a4A5c1F7Eacc5D9aAc1086aec62137e81596",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "WECO",
"tokenAddress": "0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F"
},
@@ -6977,8 +9941,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WECOIN",
- "poolAddress": "0xf327989Ad11388B1fd943C29eE12ba0ed06f5180",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf327989Ad11388B1fd943C29eE12ba0ed06f5180",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WECO",
"tokenAddress": "0x44ca3E3649Bf8a905b6B07133BaAc43F1A00fa34"
},
@@ -6986,8 +9954,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WECOIN",
- "poolAddress": "0x8aC68225b0E80cF7f16EA67639b455d679a158d7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8aC68225b0E80cF7f16EA67639b455d679a158d7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WECO",
"tokenAddress": "0x54Df3076ac0CdC9bC97fA290AB9c5a88E3D23630"
},
@@ -6995,8 +9967,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WECOIN",
- "poolAddress": "0x6e2910e4eCFE573a8e351AdAe4a0d9F095a793CC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x6e2910e4eCFE573a8e351AdAe4a0d9F095a793CC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WECO",
"tokenAddress": "0x7200e56E62543Ecdba7a7f60A25e305BB88304B5"
}
@@ -7006,7 +9982,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x3439153EB7AF838Ad19d56E1571FBD09333C2809"
},
@@ -7014,8 +9994,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Ethereum Token",
- "poolAddress": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "ETH",
"tokenAddress": "0xEf63d4E178b3180BeEc9B0E143e0f37F4c93f4C2"
},
@@ -7023,7 +10007,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7031,8 +10019,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolAddress": "0xb3deA004d4d23b543934DfFb884d699Ee7C99269",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xb3deA004d4d23b543934DfFb884d699Ee7C99269",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1"
},
@@ -7040,8 +10032,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolAddress": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7049,7 +10045,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4300000000000000000000000000000000000004"
},
@@ -7057,7 +10057,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7065,8 +10069,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolAddress": "0x538dBDcC6902c3fbE109261833c77FA77e8e7f60",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x538dBDcC6902c3fbE109261833c77FA77e8e7f60",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f"
},
@@ -7074,7 +10082,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7082,8 +10094,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolAddress": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7091,7 +10107,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9"
},
@@ -7099,7 +10119,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x5300000000000000000000000000000000000004"
},
@@ -7107,7 +10131,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xA51894664A773981C6C112C43ce576f315d5b1B6"
},
@@ -7115,7 +10143,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7123,7 +10155,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7131,7 +10167,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7139,7 +10179,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91"
},
@@ -7147,7 +10191,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WETH",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x2e31ebD2eB114943630Db6ba8c7f7687bdA5835F"
},
@@ -7155,7 +10203,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7163,7 +10215,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xeA29Cbb2808CF848C185E4405Bb002F53f92a241"
},
@@ -7171,7 +10227,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7179,8 +10239,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolAddress": "0x011Ef1fe26D20077A59F38e9Ad155b166AD87D40",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x011Ef1fe26D20077A59F38e9Ad155b166AD87D40",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
},
@@ -7188,7 +10252,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x086917568f9317b68595B7552842de816698D7BD"
},
@@ -7196,7 +10264,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7204,7 +10276,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b"
},
@@ -7212,7 +10288,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7220,7 +10300,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x5300000000000000000000000000000000000011"
},
@@ -7228,7 +10312,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Vault Bridge ETH",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "vbETH",
"tokenAddress": "0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62"
},
@@ -7236,8 +10324,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Ronin Wrapped Ether",
- "poolAddress": "0x16d313Bd248Bf3A9513719c1A9d188FE7Ff65cF8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x16d313Bd248Bf3A9513719c1A9d188FE7Ff65cF8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5"
},
@@ -7245,7 +10337,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7253,7 +10349,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -7261,7 +10361,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
}
@@ -7271,8 +10375,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Wrapped Fragmetric Restaked SOL",
- "poolAddress": "0x414024b789097c9a81Ec2D34f95B009718f44365",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x414024b789097c9a81Ec2D34f95B009718f44365",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WFRAGSOL",
"tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946"
},
@@ -7280,8 +10388,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Wrapped Fragmetric Restaked SOL",
- "poolAddress": "0x789428528A842053b52cd0D77692125829406712",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x789428528A842053b52cd0D77692125829406712",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WFRAGSOL",
"tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946"
},
@@ -7289,8 +10401,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Wrapped Fragmetric Restaked SOL",
- "poolAddress": "5a37uszDg5q34tvCpuFikEwSYiUWD78nPr3cUFsNQ2kK",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "5a37uszDg5q34tvCpuFikEwSYiUWD78nPr3cUFsNQ2kK",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "wfragSOL",
"tokenAddress": "WFRGSWjaz8tbAxsJitmbfRuFV2mSNwy7BMWcCwaA28U"
}
@@ -7300,7 +10416,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Frax",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WFRAX",
"tokenAddress": "0xFc00000000000000000000000000000000000002"
}
@@ -7310,7 +10430,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Gho Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WGHO",
"tokenAddress": "0x6bDc36E20D267Ff0dd6097799f82e78907105e2F"
}
@@ -7320,7 +10444,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped gUSDT",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WgUSDT",
"tokenAddress": "0x817997Ca8394E26CCE3dE3A076a4889b27DbF9dE"
}
@@ -7330,7 +10458,11 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Wrapped HBAR",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WHBAR",
"tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed"
}
@@ -7340,8 +10472,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped HLP",
- "poolAddress": "0x051665f2455116e929b9972c36d23070F5054Ce0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x051665f2455116e929b9972c36d23070F5054Ce0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WHLP",
"tokenAddress": "0x1359b05241cA5076c9F59605214f4F84114c0dE8"
},
@@ -7349,8 +10485,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped HLP",
- "poolAddress": "JCPtaQkKFwBbjAfBbDrDF1wHpMfoEDEXJbwDfXvgs3j3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "JCPtaQkKFwBbjAfBbDrDF1wHpMfoEDEXJbwDfXvgs3j3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "wHLP",
"tokenAddress": "wHLPX7ChYUnbR5G8JKqPjZyeLwSY8Mdo4kXZpQubRnJ"
}
@@ -7360,8 +10500,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped HSK",
- "poolAddress": "0xaF6db93135F5820201e9E9b048Dd5e7Ef3dCf866",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xaF6db93135F5820201e9E9b048Dd5e7Ef3dCf866",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WHSK",
"tokenAddress": "0xC080b24a11fdAaf01548e384757b4c905993aF1a"
},
@@ -7369,8 +10513,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped HSK",
- "poolAddress": "0x71821F883E8f8F4D17889bF1E0bF548c2CFD9096",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x71821F883E8f8F4D17889bF1E0bF548c2CFD9096",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WHSK",
"tokenAddress": "0x54b92Ae9C9b8ce75fa958191649bC20B7e6c54C7"
},
@@ -7378,8 +10526,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped HSK",
- "poolAddress": "0x0B004c8e028495dC94e53e432810FAa4E66EfEe1",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x0B004c8e028495dC94e53e432810FAa4E66EfEe1",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "WHSK",
"tokenAddress": "0xB210D2120d57b758EE163cFfb43e73728c471Cf1"
}
@@ -7389,8 +10541,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "why",
- "poolAddress": "0x5156b61beb12eCdbB6caA4a49f41Db2203943702",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x5156b61beb12eCdbB6caA4a49f41Db2203943702",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WHY",
"tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27"
},
@@ -7398,8 +10554,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "why",
- "poolAddress": "0xf00986Ebb280A1B06bfDA84700ff4cEc9696E8c0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf00986Ebb280A1B06bfDA84700ff4cEc9696E8c0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WHY",
"tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27"
},
@@ -7407,8 +10567,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "why",
- "poolAddress": "0xCfee3d8CBc7dFdea23608E73b48B1b83Af8603a9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCfee3d8CBc7dFdea23608E73b48B1b83Af8603a9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WHY",
"tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27"
}
@@ -7418,7 +10582,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped HYPE",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WHYPE",
"tokenAddress": "0x5555555555555555555555555555555555555555"
}
@@ -7428,7 +10596,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Klay",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WKLAY",
"tokenAddress": "0x19Aac5f612f524B754CA7e7c41cbFa2E981A4432"
}
@@ -7438,8 +10610,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Worldcoin",
- "poolAddress": "0xc751E86208F0F8aF2d5CD0e29716cA7AD98B5eF5",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xc751E86208F0F8aF2d5CD0e29716cA7AD98B5eF5",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "WLD",
"tokenAddress": "0x2cFc85d8E48F8EAB294be644d9E25C3030863003"
},
@@ -7447,8 +10623,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Worldcoin",
- "poolAddress": "0x10c9a3c76bDbDB8600d726De621b941fd26F6058",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x10c9a3c76bDbDB8600d726De621b941fd26F6058",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WLD",
"tokenAddress": "0x163f8C2467924be0ae7B5347228CABF260318753"
}
@@ -7458,8 +10638,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial",
- "poolAddress": "0xa92261171d09aea90Bbf86c75A7322519F014c78",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa92261171d09aea90Bbf86c75A7322519F014c78",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WLFI",
"tokenAddress": "0x47474747477b199288bF72a1D702f7Fe0Fb1DEeA"
},
@@ -7467,8 +10651,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "World Liberty Financial",
- "poolAddress": "0xc785D05961B3C537cAC11f1D496876a255F6D650",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xc785D05961B3C537cAC11f1D496876a255F6D650",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WLFI",
"tokenAddress": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6"
},
@@ -7476,8 +10664,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "World Liberty Financial",
- "poolAddress": "7QziXoi8PodowR8XxGMN8TfdYnJzmQ8i4HcCk4LWovb7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "7QziXoi8PodowR8XxGMN8TfdYnJzmQ8i4HcCk4LWovb7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WLFI",
"tokenAddress": "WLFinEv6ypjkczcS83FZqFpgFZYwQXutRbxGe7oC16g"
}
@@ -7487,7 +10679,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped METIS",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WMETIS",
"tokenAddress": "0x75cb093E4D61d2A2e65D8e0BBb01DE8d89b53481"
}
@@ -7497,7 +10693,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Mantle",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WMNT",
"tokenAddress": "0x78c1b0C915c4FAA5FffA6CAbf0219DA63d7f4cb8"
}
@@ -7507,7 +10707,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped MON",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WMON",
"tokenAddress": "0x3A704ad3E4784b935AE029171AdCF57ee7988198"
}
@@ -7517,8 +10721,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "WorldMobileToken",
- "poolAddress": "0x0C03636614fe25278786e363643Ee5D4260C9eFE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0C03636614fe25278786e363643Ee5D4260C9eFE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WMTX",
"tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7"
},
@@ -7526,8 +10734,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "WorldMobileToken",
- "poolAddress": "0xF32C2942Cb14Dc47DB8d0387A089948171Bb8F05",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xF32C2942Cb14Dc47DB8d0387A089948171Bb8F05",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WMTX",
"tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7"
},
@@ -7535,8 +10747,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "WorldMobileToken",
- "poolAddress": "0x7adF83556CE7141BaB0eFdA46DB40C5d5840eBe7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7adF83556CE7141BaB0eFdA46DB40C5d5840eBe7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WMTX",
"tokenAddress": "0x3e31966d4f81C72D2a55310A6365A56A4393E98D"
},
@@ -7544,8 +10760,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "WorldMobileToken",
- "poolAddress": "0x229a1956929489870A31b01854a80EF9B0fd27c9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x229a1956929489870A31b01854a80EF9B0fd27c9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WMTX",
"tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7"
},
@@ -7553,8 +10773,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "World Mobile Token",
- "poolAddress": "4B9Yvea3RNJ7pJQfdDxz18yzPV5sKSpvQBxoMYgLnzuK",
- "poolType": "burnMint",
+ "pool": {
+ "address": "4B9Yvea3RNJ7pJQfdDxz18yzPV5sKSpvQBxoMYgLnzuK",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WMTX",
"tokenAddress": "WMTXyYKUMTG3VuZA5beXuHVRLpyTwwaoP7h2i8YpuRH"
}
@@ -7564,7 +10788,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped NXPC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WNXPC",
"tokenAddress": "0x150869eac5C58d3655f860C4316107fB626244d0"
}
@@ -7574,8 +10802,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped OETH",
- "poolAddress": "0xbC92233eca3c53c002Ab80eAc8b6F9f84Fa27DBE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbC92233eca3c53c002Ab80eAc8b6F9f84Fa27DBE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WOETH",
"tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839"
},
@@ -7583,8 +10815,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped OETH",
- "poolAddress": "0xFE8671c82036b1afEF2Fd423d1aadeF5dC735A43",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFE8671c82036b1afEF2Fd423d1aadeF5dC735A43",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wOETH",
"tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839"
},
@@ -7592,8 +10828,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped OETH",
- "poolAddress": "0x75a852478792E5a99bc4cdd0aDBd97129B0d9799",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x75a852478792E5a99bc4cdd0aDBd97129B0d9799",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "wOETH",
"tokenAddress": "0xDcEe70654261AF21C44c093C300eD3Bb97b78192"
}
@@ -7603,7 +10843,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped OKB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WOKB",
"tokenAddress": "0xe538905cf8410324e03A5A23C1c177a474D59b2b"
}
@@ -7613,8 +10857,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landwolf",
- "poolAddress": "0x158fbCD99c333afD5838aeF6ee3236c3e0a7041c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x158fbCD99c333afD5838aeF6ee3236c3e0a7041c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WOLF",
"tokenAddress": "0xe760fc2c7B94075Ae010216a539dcE7f91AF0e13"
},
@@ -7622,8 +10870,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landwolf",
- "poolAddress": "0x89C13177406982051baC3305D14180F763422CE2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x89C13177406982051baC3305D14180F763422CE2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WOLF",
"tokenAddress": "0x77Ca224436B132CD83581826669025Ed9cfd9b94"
},
@@ -7631,8 +10883,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Landwolf",
- "poolAddress": "0xfaFcaC5F48A7E034fec3264A6c42F88ef705638a",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xfaFcaC5F48A7E034fec3264A6c42F88ef705638a",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "WOLF",
"tokenAddress": "0x67466BE17df832165F8C80a5A120CCc652bD7E69"
}
@@ -7642,8 +10898,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WOW",
- "poolAddress": "0x0563f39D663D44B64677ead7D75CdC7ADA842eCf",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0563f39D663D44B64677ead7D75CdC7ADA842eCf",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "WOW",
"tokenAddress": "0xc97Cb00245a50c607b57D9b6d2e854FcA3B33F9c"
},
@@ -7651,8 +10911,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "WOW",
- "poolAddress": "0xB858917F2dA9253736c7869eD40f1212015AF4DE",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xB858917F2dA9253736c7869eD40f1212015AF4DE",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WOW",
"tokenAddress": "0x8f4b11d923BbAA6206f3Dd3ff84e8e31bafB49b7"
}
@@ -7662,7 +10926,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Plume",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WPLUME",
"tokenAddress": "0xEa237441c92CAe6FC17Caaf9a7acB3f953be4bd1"
}
@@ -7672,7 +10940,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Polygon Ecosystem Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WPOL",
"tokenAddress": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270"
}
@@ -7682,7 +10954,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WRBTC",
"tokenAddress": "0x542fDA317318eBF1d3DEAf76E0b632741A7e677d"
}
@@ -7692,7 +10968,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ronin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WRON",
"tokenAddress": "0xe514d9DEB7966c8BE0ca922de8a064264eA6bcd4"
}
@@ -7702,7 +10982,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Sonic",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "wS",
"tokenAddress": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38"
}
@@ -7712,8 +10996,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wisdomise",
- "poolAddress": "0x862428cA8C8108486e0c6e66a897Aa0166841349",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x862428cA8C8108486e0c6e66a897Aa0166841349",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WSDM",
"tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220"
},
@@ -7721,8 +11009,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wisdomise",
- "poolAddress": "0xCF241Cdd2dee05Ef1Bd7F3FdAEf1bEc143E4f87c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCF241Cdd2dee05Ef1Bd7F3FdAEf1bEc143E4f87c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "WSDM",
"tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220"
},
@@ -7730,8 +11022,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wisdomise",
- "poolAddress": "0x8ee28906BA9E482d881d28E825118b8b8e46A4a5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8ee28906BA9E482d881d28E825118b8b8e46A4a5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "WSDM",
"tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220"
},
@@ -7739,8 +11035,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wisdomise",
- "poolAddress": "0x2DeBF941D469709853d96Df09dEF1DD8151D44D3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x2DeBF941D469709853d96Df09dEF1DD8151D44D3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "WSDM",
"tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220"
}
@@ -7750,7 +11050,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped SEI",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WSEI",
"tokenAddress": "0xE30feDd158A2e3b13e9badaeABaFc5516e95e8C7"
}
@@ -7760,7 +11064,11 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Wrapped Solana",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WSOL",
"tokenAddress": "So11111111111111111111111111111111111111112"
}
@@ -7770,8 +11078,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stETH",
- "poolAddress": "0xFEe991bB8695a336f5C4ab00062BEEd4b5783f4F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xFEe991bB8695a336f5C4ab00062BEEd4b5783f4F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "wstETH",
"tokenAddress": "0x161a128567BF0C005b58211757F7e46eed983F02"
},
@@ -7779,8 +11091,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped liquid staked Ether 2.0",
- "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "wstETH",
"tokenAddress": "0x5659b4C62897Fa36C05780cD96c2D5c0a5602488"
},
@@ -7788,8 +11104,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped liquid staked Ether 2.0",
- "poolAddress": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wstETH",
"tokenAddress": "0xE561152E8d3f618b386EF4dD6E3fb980Eb2f9e61"
},
@@ -7797,8 +11117,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped liquid staked Ether 2.0",
- "poolAddress": "0xA586a732394A1AFfCF15b972cd47C936033C9FA7",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xA586a732394A1AFfCF15b972cd47C936033C9FA7",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "wstETH",
"tokenAddress": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0"
},
@@ -7806,8 +11130,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped liquid staked Ether 2.0",
- "poolAddress": "0x2f2E55517aac64c4066f6eB333b4Cb072eD00E8A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2f2E55517aac64c4066f6eB333b4Cb072eD00E8A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wstETH",
"tokenAddress": "0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417"
},
@@ -7815,8 +11143,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped liquid staked Ether 2.0",
- "poolAddress": "0xa4b1d393104a5eF340154c337009156aA0E83Bd8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa4b1d393104a5eF340154c337009156aA0E83Bd8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "wstETH",
"tokenAddress": "0x481e638105407Be40c2f2E2e006DE272d05930d0"
}
@@ -7826,8 +11158,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stLINK",
- "poolAddress": "0x04be180c1c3468c86EB68939aB53dbDC7306aDc7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x04be180c1c3468c86EB68939aB53dbDC7306aDc7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "wstLINK",
"tokenAddress": "0x601486C8Fdc3aD22745b01c920037d6c036A38B9"
},
@@ -7835,8 +11171,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stLINK",
- "poolAddress": "0x5406e9d1CEF8f54eb675bd41139A5E3D83bFf80c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5406e9d1CEF8f54eb675bd41139A5E3D83bFf80c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "wstLINK",
"tokenAddress": "0x3106E2e148525b3DB36795b04691D444c24972fB"
},
@@ -7844,8 +11184,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stLINK",
- "poolAddress": "0xc80088D32830Cdb869eBA08bb25Bb6D7B17467FF",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc80088D32830Cdb869eBA08bb25Bb6D7B17467FF",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "wstLINK",
"tokenAddress": "0xF2f7901B7bbA5799493B617B06EAd1862F771297"
},
@@ -7853,8 +11197,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stLINK",
- "poolAddress": "0xF6403CF6E954a43699097322e0867C63d653C2D0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xF6403CF6E954a43699097322e0867C63d653C2D0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "wstLINK",
"tokenAddress": "0x911D86C72155c33993d594B0Ec7E6206B4C803da"
},
@@ -7862,8 +11210,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stLINK",
- "poolAddress": "0x97f40E42e4aE3BA12b5856F685136f6747Fa49a5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x97f40E42e4aE3BA12b5856F685136f6747Fa49a5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wstLINK",
"tokenAddress": "0xc271A17DB5cE6F53745A3F466077Ec816bC20a9C"
}
@@ -7873,8 +11225,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stPOL",
- "poolAddress": "0x481242B7846FA88fA76f2Ee73157aAa3AE2B280b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x481242B7846FA88fA76f2Ee73157aAa3AE2B280b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wstPOL",
"tokenAddress": "0x9178baB5362282a861922Ce641F4f3b7D4Bb9EF3"
},
@@ -7882,8 +11238,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stPOL",
- "poolAddress": "0x553636e52059B0339592f545D25a4C0A86E3a1Bc",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x553636e52059B0339592f545D25a4C0A86E3a1Bc",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "wstPOL",
"tokenAddress": "0x2091d83592D79B4De5fD2ce3D98679c32A9555e6"
},
@@ -7891,8 +11251,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped stPOL",
- "poolAddress": "0xb4D2C033Ea68674E56F6071B0d826D03152376dB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb4D2C033Ea68674E56F6071B0d826D03152376dB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "wstPOL",
"tokenAddress": "0x1d0347C535C88Cf6BB72df75AED34363edB4B2AE"
}
@@ -7902,7 +11266,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped TAC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WTAC",
"tokenAddress": "0xB63B9f0eb4A6E6f191529D71d4D88cc8900Df2C9"
}
@@ -7912,7 +11280,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Tao",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WTAO",
"tokenAddress": "0x5F3B70e0c089a1e3020B1990823Bc241a7bF3522"
}
@@ -7922,8 +11294,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0xa843652dF6Bda4d4B2894a28505963F595AEdBe3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa843652dF6Bda4d4B2894a28505963F595AEdBe3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0x2d7e22Fb0fb7A7F0d1fef70ad8873A9ffDe18007"
},
@@ -7931,8 +11307,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0xf6C3874a0a535B616d4528263B796255949D0135",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xf6C3874a0a535B616d4528263B796255949D0135",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0xB86fb1047A955C0186c77ff6263819b37B32440D"
},
@@ -7940,8 +11320,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0x335CAd1ea3aB44fe800Da89Fc31e0071E044EF34",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x335CAd1ea3aB44fe800Da89Fc31e0071E044EF34",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0x1EaE7Ca39192a2B6E3EA2E852A0D4D20bCe89d14"
},
@@ -7949,8 +11333,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0x7211e50394Fa9c29373cf95987Fc381f35f8b8D8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7211e50394Fa9c29373cf95987Fc381f35f8b8D8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203"
},
@@ -7958,8 +11346,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0xCF4f83859845594aC0e7a9da26df5e47cf5474fd",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCF4f83859845594aC0e7a9da26df5e47cf5474fd",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0xe49465604e25cd5167005e0cEbD8Af461e833b83"
},
@@ -7967,8 +11359,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0xe9bFB4fe6E403985c5f2b968f883A9590Aac54aC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe9bFB4fe6E403985c5f2b968f883A9590Aac54aC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203"
},
@@ -7976,8 +11372,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Wrapped xUSD",
- "poolAddress": "0x04c5046A1f4E3fFf094c26dFCAA75eF293932f18",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x04c5046A1f4E3fFf094c26dFCAA75eF293932f18",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "wxUSD",
"tokenAddress": "0x29A0dc4f509873673B7682B60598d393A1e591b7"
}
@@ -7987,7 +11387,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Wemix",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WWEMIX",
"tokenAddress": "0x7D72b22a74A216Af4a002a1095C8C707d6eC1C5f"
}
@@ -7997,7 +11401,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XDAI",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WXDAI",
"tokenAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d"
}
@@ -8007,7 +11415,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XDC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WXDC",
"tokenAddress": "0x951857744785E80e2De051c32EE7b25f9c458C42"
}
@@ -8017,7 +11429,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XPL",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WXPL",
"tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873"
}
@@ -8027,7 +11443,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XTZ",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WXTZ",
"tokenAddress": "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb"
}
@@ -8037,7 +11457,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped zkCRO",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "wzkCRO",
"tokenAddress": "0xC1bF55EE54E16229d9b369a5502Bfe5fC9F20b6d"
}
@@ -8047,8 +11471,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0xe199E1C5201CCDd3792ed902aD3f610Ce5629B59",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe199E1C5201CCDd3792ed902aD3f610Ce5629B59",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xGold",
"tokenAddress": "0x281A83ee4819068C40937A066d801aAD7C6e0400"
},
@@ -8056,8 +11484,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0x055860f40533c4d9E7CD38105F4c0d1EB0593072",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x055860f40533c4d9E7CD38105F4c0d1EB0593072",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "xGold",
"tokenAddress": "0x5D84B92A34635e5C21b7885fB29D6a4B60287ab7"
},
@@ -8065,8 +11497,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0x2110679A2155534b7674349273741a537495C50C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2110679A2155534b7674349273741a537495C50C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xGold",
"tokenAddress": "0x3FA41d2b29c69F8DA6E2D0bFc4f83C62D6582750"
},
@@ -8074,8 +11510,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0x5B806bA13B8B66F83339A63496C2f914BDd4Eb13",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5B806bA13B8B66F83339A63496C2f914BDd4Eb13",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "xGold",
"tokenAddress": "0x74FC58Ba6FE27771589Be4b405D88Ab1521CD143"
},
@@ -8083,8 +11523,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0x55585FFBd94471925252C13ade6A81604C781C5D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x55585FFBd94471925252C13ade6A81604C781C5D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xGold",
"tokenAddress": "0x5E75a1aD7b10523f7ed98C1C7CA0b4A79B1bBDee"
},
@@ -8092,8 +11536,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xGold",
- "poolAddress": "0x9EC2F7DBEB9dC7fc72F8476D8a5770E89e13D385",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9EC2F7DBEB9dC7fc72F8476D8a5770E89e13D385",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xGold",
"tokenAddress": "0xDCFdCa64194945a44F092F8eD000245146aFcDd6"
}
@@ -8103,8 +11551,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Dexlab",
- "poolAddress": "0xbf5d2a9e48C51c5945A7975c2b294A8A3e5330f2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xbf5d2a9e48C51c5945A7975c2b294A8A3e5330f2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "XLAB",
"tokenAddress": "0x5BA9bfFFB868859064C33D4f995A0828b2B1d2d3"
},
@@ -8112,8 +11564,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Dexlab",
- "poolAddress": "2F9v1hYeB247wJzBgjsz8zYAQUhFSPDzr1PDs6srMGtU",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "2F9v1hYeB247wJzBgjsz8zYAQUhFSPDzr1PDs6srMGtU",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "XLAB",
"tokenAddress": "XLnpFRQ3rSWupCRjuQfx74mgVoT3ezVJKE1CogRZxhH"
}
@@ -8123,8 +11579,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation ETH",
- "poolAddress": "0x2d009c84770a3981613Ce5d1eD8F8a67BEc7411e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2d009c84770a3981613Ce5d1eD8F8a67BEc7411e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xrETH",
"tokenAddress": "0x4d26b028D8C255794671fd120a94231A80A2E2C9"
},
@@ -8132,8 +11592,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation ETH",
- "poolAddress": "0xf50B3be14ed2cF2CfE9aC239b763088E2463C11f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf50B3be14ed2cF2CfE9aC239b763088E2463C11f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xrETH",
"tokenAddress": "0xaD09085191216a94FA1Fd2A790E48e734602a869"
},
@@ -8141,8 +11605,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation ETH",
- "poolAddress": "0xEDe803B34B30C8De6a128DE57B855263Cd8C55bc",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xEDe803B34B30C8De6a128DE57B855263Cd8C55bc",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "xrETH",
"tokenAddress": "0xBB22d59B73D7a6F3A8a83A214BECc67Eb3b511fE"
}
@@ -8152,8 +11620,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation RPL",
- "poolAddress": "0x1dBD6224Cf535F624FcB41C4Ad8c065f10BDF3E3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1dBD6224Cf535F624FcB41C4Ad8c065f10BDF3E3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xRPL",
"tokenAddress": "0xd3Bb9E4e9aE431888873d3E51b3c03dA909e868A"
},
@@ -8161,8 +11633,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation RPL",
- "poolAddress": "0xDdEDeb125315ba7b6539A6C18478ccf8b59ACEaE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDdEDeb125315ba7b6539A6C18478ccf8b59ACEaE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xRPL",
"tokenAddress": "0x2775DeeB4FaDCc486562CAa777dE70AD6CCD82c6"
},
@@ -8170,8 +11646,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Constellation RPL",
- "poolAddress": "0x8d9F0185c49752d626ef0c318B24Bba83931D639",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8d9F0185c49752d626ef0c318B24Bba83931D639",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "xRPL",
"tokenAddress": "0x1DB1Afd9552eeB28e2e36597082440598B7F1320"
}
@@ -8181,8 +11661,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSILO",
- "poolAddress": "0x902CD33780288CD0Bfff42AE174511d378DfE728",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x902CD33780288CD0Bfff42AE174511d378DfE728",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSILO",
"tokenAddress": "0xbB4287da728532C78bAF246B12A10be3ace2Dc70"
},
@@ -8190,8 +11674,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSILO",
- "poolAddress": "0x9D1cDE77b0720D78aBBD03EdF9abF7D5E0EE4b3A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9D1cDE77b0720D78aBBD03EdF9abF7D5E0EE4b3A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSILO",
"tokenAddress": "0xf3775f959bc64923BD809085299dBC984D3e6C8A"
},
@@ -8199,8 +11687,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSILO",
- "poolAddress": "0xC201a236258Ec170dE5255A9507bb4f70c7caf31",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC201a236258Ec170dE5255A9507bb4f70c7caf31",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSILO",
"tokenAddress": "0xdd4c6FD31Ccf66E250790643947675153c221A91"
},
@@ -8208,8 +11700,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSILO",
- "poolAddress": "0x4F91b984B03B09Fdd60f9ed02279020eF930B2B0",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x4F91b984B03B09Fdd60f9ed02279020eF930B2B0",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "xSILO",
"tokenAddress": "0x4451765739b2D7BCe5f8BC95Beaf966c45E1Dcc9"
}
@@ -8219,8 +11715,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x2AB9cD10aC8077a554511FbcBCB0c94D833e0cC5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2AB9cD10aC8077a554511FbcBCB0c94D833e0cC5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8228,8 +11728,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x3539F2E214d8BC7E611056383323aC6D1b01943c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3539F2E214d8BC7E611056383323aC6D1b01943c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8237,8 +11741,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x3f2Be15aEA9F68f63ADE10440C6fE00753300b68",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3f2Be15aEA9F68f63ADE10440C6fE00753300b68",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8246,8 +11754,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xf0314c4B42cd6fCA8772bDE359E0A7d3b5E70f88",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xf0314c4B42cd6fCA8772bDE359E0A7d3b5E70f88",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0x1346b618dC92810EC74163e4c27004c921D446a5"
},
@@ -8255,8 +11767,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0x346c574C56e1A4aAa8dc88Cda8F7EB12b39947aB"
},
@@ -8264,8 +11780,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x1b019366e7fD47425c7E3D07C18D52D77c0B72bf",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x1b019366e7fD47425c7E3D07C18D52D77c0B72bf",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xC26C9099BD3789107888c35bb41178079B282561"
},
@@ -8273,8 +11793,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xdb9E8DF31cE12817DdD1C4d2c3acef038580f586",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xdb9E8DF31cE12817DdD1C4d2c3acef038580f586",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077"
},
@@ -8282,8 +11806,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xd25987B0712FA66D05aA2F7A35bA4B01fB60D22E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd25987B0712FA66D05aA2F7A35bA4B01fB60D22E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8291,8 +11819,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xDed2A972feB2AA8FE531D8C4E290C12FFE6Be9D6",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDed2A972feB2AA8FE531D8C4E290C12FFE6Be9D6",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8300,8 +11832,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x97810368dE6F7213Cf54f2918A267cEa25449F81",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x97810368dE6F7213Cf54f2918A267cEa25449F81",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0x2878295D69Aa3BDcf9004FCf362F0959992D801c"
},
@@ -8309,8 +11845,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xb5829e1f8078860969950852546B947f37855ef1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb5829e1f8078860969950852546B947f37855ef1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077"
},
@@ -8318,8 +11858,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x99bb52AAF045F63F74d0a3FbE6Cf3e7B23aeD212",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x99bb52AAF045F63F74d0a3FbE6Cf3e7B23aeD212",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xd9D920AA40f578ab794426F5C90F6C731D159DEf"
},
@@ -8327,8 +11871,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x44F2B4dE683f5225704376699fD1eF3E2769107b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x44F2B4dE683f5225704376699fD1eF3E2769107b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077"
},
@@ -8336,8 +11884,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x8A76fe7fA6da27f85a626c5C53730B38D13603d7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8A76fe7fA6da27f85a626c5C53730B38D13603d7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077"
},
@@ -8345,8 +11897,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xd2bdD1E01fd2F8d7d42b209c111c7b32158b5a42",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd2bdD1E01fd2F8d7d42b209c111c7b32158b5a42",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8354,8 +11910,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "xSolvBTC",
- "poolAddress": "JBxSefWbahYApU5DVsqXcHugDVGFNUaaZgWh3u7wESVn",
- "poolType": "burnMint",
+ "pool": {
+ "address": "JBxSefWbahYApU5DVsqXcHugDVGFNUaaZgWh3u7wESVn",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "SoLvAiHLF7LGEaiTN5KGZt1bNnraoWTi5mjcvRoDAX4"
},
@@ -8363,8 +11923,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0xEf53137aF78Afc63b312f0af64fe3c24804d2441",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xEf53137aF78Afc63b312f0af64fe3c24804d2441",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
},
@@ -8372,8 +11936,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "xSolvBTC",
- "poolAddress": "0x2B4d8FAD49A3276853560A9cAFaa59392a99cDbD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2B4d8FAD49A3276853560A9cAFaa59392a99cDbD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "xSolvBTC",
"tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c"
}
@@ -8383,8 +11951,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "XSwap",
- "poolAddress": "0x4d87CBff8187C4B3E00FDF534cb310724536EA4c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4d87CBff8187C4B3E00FDF534cb310724536EA4c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "XSWAP",
"tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c"
},
@@ -8392,8 +11964,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "XSwap",
- "poolAddress": "0x916D7d960B119bb6c4AbE381f7677eCEed866d44",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x916D7d960B119bb6c4AbE381f7677eCEed866d44",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "XSWAP",
"tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c"
}
@@ -8403,8 +11979,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Real Estate Panama Fund",
- "poolAddress": "0x38b771383823A442fF3943706d6541A253298c8e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x38b771383823A442fF3943706d6541A253298c8e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "XTFBRICK1",
"tokenAddress": "0x8d944193Cdeb7c4767fB1B3c43Fb9E1E1Df3158A"
},
@@ -8412,8 +11992,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Real Estate Panama Fund",
- "poolAddress": "0x07f49dC315E6F567a824Db364E834E3391E976a8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x07f49dC315E6F567a824Db364E834E3391E976a8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "XTFBRICK1",
"tokenAddress": "0x268Cf1A0d1723eff452a2df8208172F8768Aa001"
},
@@ -8421,8 +12005,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Real Estate Panama Fund",
- "poolAddress": "0x71cC4E6858bA934Da2F6F825807118160FADFDA8",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x71cC4E6858bA934Da2F6F825807118160FADFDA8",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "XTFBRICK1",
"tokenAddress": "0x2D7f7da70F8c36A2ef47BAbbc4D0be4B4274F72D"
}
@@ -8432,8 +12020,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Avenida CLO Bond Fund",
- "poolAddress": "0xDc274b09d624EE22079F187E8dFf11Bf599cd2A1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xDc274b09d624EE22079F187E8dFf11Bf599cd2A1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "XTFCLOBOND",
"tokenAddress": "0x9E1B4B2e870bD894e7457D18bA620E0cf3e37F90"
},
@@ -8441,8 +12033,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Avenida CLO Bond Fund",
- "poolAddress": "0x8680bf9D1d132DF66d9CeDcB0a0bA068cD94998A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8680bf9D1d132DF66d9CeDcB0a0bA068cD94998A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "XTFCLOBOND",
"tokenAddress": "0xD012151eA9352f477895e0a4f88Efe15f0e8855a"
},
@@ -8450,8 +12046,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Avenida CLO Bond Fund",
- "poolAddress": "0x8C66197BDbeAc351590F93447A1CD4186553970E",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x8C66197BDbeAc351590F93447A1CD4186553970E",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "XTFCLOBOND",
"tokenAddress": "0xe5097376a585565038D2CF05D2Eb04e9Db1902AD"
}
@@ -8461,8 +12061,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8470,8 +12074,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8479,8 +12087,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0x448eEF4A0EF5171F9B9C973017C9621C914591Ad",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x448eEF4A0EF5171F9B9C973017C9621C914591Ad",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8488,8 +12100,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8497,8 +12113,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0x9aCd2ffD56E278a560Cc4E12dCA2B7D2B3359Ac2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9aCd2ffD56E278a560Cc4E12dCA2B7D2B3359Ac2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8506,8 +12126,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8515,8 +12139,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "YBTC.B",
"tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335"
},
@@ -8524,8 +12152,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Yield BTC.B",
- "poolAddress": "FV7RjzzPxaVXEtkR9NsPREHBEzPoiVvQBtzQY97PGe3Z",
- "poolType": "burnMint",
+ "pool": {
+ "address": "FV7RjzzPxaVXEtkR9NsPREHBEzPoiVvQBtzQY97PGe3Z",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "YBTC.B",
"tokenAddress": "3VcKofugG1SPJmjuiEZCJL5mk1JkyqGZ19ByeMWXVWfK"
}
@@ -8535,8 +12167,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Yield Guild Games Token",
- "poolAddress": "0x799A356069Ca6D91BBE5d0407De625A969874aE4",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x799A356069Ca6D91BBE5d0407De625A969874aE4",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "YGG",
"tokenAddress": "0x25f8087EAD173b73D6e8B84329989A8eEA16CF73"
},
@@ -8544,8 +12180,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Yield Guild Games Token",
- "poolAddress": "0x2b200Ca34f70d39464A0881BC45fC5fb858b3d5F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2b200Ca34f70d39464A0881BC45fC5fb858b3d5F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "YGG",
"tokenAddress": "0x1c306872bC82525d72Bf3562E8F0aA3f8F26e857"
}
@@ -8555,8 +12195,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "yesnoerror",
- "poolAddress": "0xd8F5e7FAc317c638d2Fe4d07ab3f436ca6b5e5c7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd8F5e7FAc317c638d2Fe4d07ab3f436ca6b5e5c7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "YNE",
"tokenAddress": "0xE2f9db0186b13668AeC9fe0e15dbD13004ed8d6f"
},
@@ -8564,8 +12208,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "yesnoerror",
- "poolAddress": "AyxbrQHM1sPx17HKWP1x13E8PBFxpvMQiMERvoG4ub53",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "AyxbrQHM1sPx17HKWP1x13E8PBFxpvMQiMERvoG4ub53",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "YNE",
"tokenAddress": "7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump"
}
@@ -8575,8 +12223,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "zBTC",
- "poolAddress": "0x7B58df98a12F54813fDec73B5791642Fa35a52a4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7B58df98a12F54813fDec73B5791642Fa35a52a4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "zBTC",
"tokenAddress": "0x7F544C3a1a16059dd3bbc23AA3BC5c4f5B6969D0"
},
@@ -8584,8 +12236,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "zBTC",
- "poolAddress": "0xe3f4B78cdd20f6B8AE8644064656d3E2bF08c4B8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe3f4B78cdd20f6B8AE8644064656d3E2bF08c4B8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "zBTC",
"tokenAddress": "0x24eCd41CE6646ADa857995A682e1a5c42732cAbc"
},
@@ -8593,8 +12249,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "zBTC",
- "poolAddress": "9EvWTQvZafNxEgpt6snY2sTFT7hARk4tU5QtdRPqoisX",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "9EvWTQvZafNxEgpt6snY2sTFT7hARk4tU5QtdRPqoisX",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "zBTC",
"tokenAddress": "zBTCug3er3tLyffELcvDNrKkCymbPWysGcWihESYfLg"
},
@@ -8602,8 +12262,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "zBTC",
- "poolAddress": "0x66d78C6AF776350F89DA8D63b66008122236ab3e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x66d78C6AF776350F89DA8D63b66008122236ab3e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "zBTC",
"tokenAddress": "0x006A22D3120eaD503F0654Be855BCDfbba5Ced72"
}
@@ -8613,8 +12277,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zentry",
- "poolAddress": "0x55c47DE8bCfA02B3989f2B6F9542900E3A2EC6c3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x55c47DE8bCfA02B3989f2B6F9542900E3A2EC6c3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "ZENT",
"tokenAddress": "0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa"
},
@@ -8622,8 +12290,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zentry",
- "poolAddress": "0x52fEd5115D8B7397C09eb4ce2f0a99739891D6B8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x52fEd5115D8B7397C09eb4ce2f0a99739891D6B8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ZENT",
"tokenAddress": "0x9f28c9C2dA4A833cbFaAacbf7eB62267334d7149"
}
@@ -8633,8 +12305,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "ZeUSD",
- "poolAddress": "0x04c4032CBCdFDa3c676FA86B5F4b61edE6c8286b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x04c4032CBCdFDa3c676FA86B5F4b61edE6c8286b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ZeUSD",
"tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761"
},
@@ -8642,8 +12318,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "ZeUSD",
- "poolAddress": "0x99874400820c354eE07bC8b165C605632BdCeae3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x99874400820c354eE07bC8b165C605632BdCeae3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "ZeUSD",
"tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761"
}
@@ -8653,8 +12333,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Token",
- "poolAddress": "0x090D3978b8CaF2832b3CDB0d9d5D34EA0c6Cbd99",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x090D3978b8CaF2832b3CDB0d9d5D34EA0c6Cbd99",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ZUN",
"tokenAddress": "0x346E74Dc9935a9b02Eb34fB84658a66010fA056D"
},
@@ -8662,8 +12346,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Token",
- "poolAddress": "0xBFCFF67cc8a236B25Fc043a4a2b8Bf5B122AdC44",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xBFCFF67cc8a236B25Fc043a4a2b8Bf5B122AdC44",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "ZUN",
"tokenAddress": "0x1db0Fc8933f545648b54A9eE4326209a9A259643"
},
@@ -8671,8 +12359,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Token",
- "poolAddress": "0xa01bBE327951B2e441Ed38638927098A272e0F5C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa01bBE327951B2e441Ed38638927098A272e0F5C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "ZUN",
"tokenAddress": "0x25193034153AfB4251a8E02a8Db0DeaeF4C876F6"
},
@@ -8680,8 +12372,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Token",
- "poolAddress": "0x9c79223e8ce037c39b534891b41b3f306a8FE192",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x9c79223e8ce037c39b534891b41b3f306a8FE192",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "ZUN",
"tokenAddress": "0x6b5204B0Be36771253Cc38e88012E02B752f0f36"
}
@@ -8691,8 +12387,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni ETH",
- "poolAddress": "0x07d7A985832369eF32F0491aA4CD44fFA9dD4200",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x07d7A985832369eF32F0491aA4CD44fFA9dD4200",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "zunETH",
"tokenAddress": "0xC9eE652953D8069c5eD37bbB3F8142c6243EFDA0"
},
@@ -8700,8 +12400,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni ETH",
- "poolAddress": "0x9C764e7db0962d5528Bd043109E52c477bafe5db",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9C764e7db0962d5528Bd043109E52c477bafe5db",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "zunETH",
"tokenAddress": "0x24CB2B89844604C57350776D81e14765D03b91dE"
},
@@ -8709,8 +12413,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni ETH",
- "poolAddress": "0xC381C7CffD07Fa22f871ae9Ec1025Cee86693B3b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC381C7CffD07Fa22f871ae9Ec1025Cee86693B3b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "zunETH",
"tokenAddress": "0x2d691C2492e056ADCAE7cA317569af25910fC4cb"
},
@@ -8718,8 +12426,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami ETH",
- "poolAddress": "0xe4832022873C69E14731fd9436eb7FB9538Ae86F",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0xe4832022873C69E14731fd9436eb7FB9538Ae86F",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.1"
+ },
"symbol": "zunETH",
"tokenAddress": "0xc2e660C62F72c2ad35AcE6DB78a616215E2F2222"
}
@@ -8729,8 +12441,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni USD",
- "poolAddress": "0x68b49DC715214A2D138B0d73A2fC82a87dC8F1C0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x68b49DC715214A2D138B0d73A2fC82a87dC8F1C0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "zunUSD",
"tokenAddress": "0xBfEB8B6813491bb4fB823b8f451b62eF535420D1"
},
@@ -8738,8 +12454,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni USD",
- "poolAddress": "0x5800177Ab2cEFd1f7704A4e7eA8A309D98072fCb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5800177Ab2cEFd1f7704A4e7eA8A309D98072fCb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "zunUSD",
"tokenAddress": "0xD5B9dDB04f20eA773C9b56607250149B26049B1F"
},
@@ -8747,8 +12467,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami Omni USD",
- "poolAddress": "0xD4DC5f4573FE1E39a33C4e4aF8292b925B2E81Fd",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD4DC5f4573FE1E39a33C4e4aF8292b925B2E81Fd",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "zunUSD",
"tokenAddress": "0xdC30b3bdE2734A0Bc55AF01B38943ef04aaCB423"
},
@@ -8756,8 +12480,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Zunami USD",
- "poolAddress": "0x45af366C76a8C8f18806A8C404FE3E3bbA4F8AA3",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x45af366C76a8C8f18806A8C404FE3E3bbA4F8AA3",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "zunUSD",
"tokenAddress": "0x8C0D76C9B18779665475F3E212D9Ca1Ed6A1A0e6"
}
diff --git a/src/config/data/ccip/v1_2_0/mainnet/verifiers.json b/src/config/data/ccip/v1_2_0/mainnet/verifiers.json
new file mode 100644
index 00000000000..5bac359e6ed
--- /dev/null
+++ b/src/config/data/ccip/v1_2_0/mainnet/verifiers.json
@@ -0,0 +1,60 @@
+{
+ "mainnet": {
+ "0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D": {
+ "id": "chainlink",
+ "name": "Chainlink",
+ "type": "committee"
+ },
+ "0xF4c7E640EdA248ef95972845a62bdC74237805dB": {
+ "id": "lombard",
+ "name": "Lombard",
+ "type": "api"
+ },
+ "0x768a1a3B321126A8B214d7376D48465C7f6Fa061": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ },
+ "0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc": {
+ "id": "symbiotic",
+ "name": "Symbiotic",
+ "type": "api"
+ }
+ },
+ "ethereum-mainnet-base-1": {
+ "0x0aA145a62153190B8f0D3cA00c441e451529f755": {
+ "id": "chainlink-labs",
+ "name": "Chainlink Labs",
+ "type": "committee"
+ },
+ "0x09521B0B5BB2d4406124c0207Cf551829B45f84d": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ }
+ },
+ "ethereum-mainnet-arbitrum-1": {
+ "0xe9c6945281028cb6530d43F998eE539dFE2a9191": {
+ "id": "chainlink-labs",
+ "name": "Chainlink Labs",
+ "type": "committee"
+ },
+ "0xBF38331E34ef7f248020611bB31Be0576D06413D": {
+ "id": "lombard",
+ "name": "Lombard",
+ "type": "api"
+ }
+ },
+ "ethereum-mainnet-optimism-1": {
+ "0x2edAc8B8928c4e1Ed559e619b6A8a4aaCe9Ef18A": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ },
+ "0x76Aa17dCda9E8529149E76e9ffaE4aD1C4AD701B": {
+ "id": "symbiotic",
+ "name": "Symbiotic",
+ "type": "api"
+ }
+ }
+}
diff --git a/src/config/data/ccip/v1_2_0/testnet/lanes.json b/src/config/data/ccip/v1_2_0/testnet/lanes.json
index 567cbe4b92e..381172eb4e1 100644
--- a/src/config/data/ccip/v1_2_0/testnet/lanes.json
+++ b/src/config/data/ccip/v1_2_0/testnet/lanes.json
@@ -23,22 +23,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"apechain-testnet-curtis": {
@@ -52,22 +37,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"aptos-testnet": {
@@ -81,22 +51,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -108,22 +63,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -135,22 +75,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -162,22 +87,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -189,22 +99,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ink-testnet-sepolia": {
"offRamp": {
@@ -227,22 +122,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -278,36 +158,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -319,50 +170,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -374,36 +182,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -415,36 +194,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -456,36 +206,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"monad-testnet": {
"offRamp": {
@@ -508,36 +229,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"polygon-testnet-tatara": {
"offRamp": {
@@ -571,22 +263,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -609,36 +286,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -650,36 +298,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"berachain-testnet-bartio": {
@@ -778,22 +397,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -831,22 +435,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"bitcoin-testnet-sepolia-bob-1": {
@@ -860,22 +449,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"bsc-testnet": {
@@ -889,22 +463,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"avalanche-fuji-testnet": {
"offRamp": {
@@ -916,36 +475,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bitcoin-testnet-bitlayer-1": {
"offRamp": {
@@ -979,36 +509,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -1020,36 +521,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-blast-1": {
"offRamp": {
@@ -1105,36 +577,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"solana-devnet": {
"offRamp": {
@@ -1146,22 +589,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"sonic-testnet-blaze": {
"offRamp": {
@@ -1184,36 +612,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -1225,36 +624,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"celo-testnet-alfajores": {
@@ -1268,36 +638,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -1346,22 +687,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"cronos-zkevm-testnet-sepolia": {
@@ -1476,22 +802,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"sonic-testnet-blaze": {
"offRamp": {
@@ -1516,22 +827,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"ethereum-testnet-holesky-taiko-1": {
@@ -1545,22 +841,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"ethereum-testnet-hoodi-morph": {
@@ -1574,22 +855,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"ethereum-testnet-sepolia": {
@@ -1614,22 +880,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"apechain-testnet-curtis": {
"offRamp": {
@@ -1641,22 +892,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"aptos-testnet": {
"offRamp": {
@@ -1668,22 +904,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"avalanche-fuji-testnet": {
"offRamp": {
@@ -1695,50 +916,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"berachain-testnet-bartio": {
"offRamp": {
@@ -1794,22 +972,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"bitcoin-testnet-merlin": {
"offRamp": {
@@ -1832,22 +995,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"bitcoin-testnet-sepolia-bob-1": {
"offRamp": {
@@ -1859,22 +1007,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -1886,36 +1019,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"celo-testnet-alfajores": {
"offRamp": {
@@ -1927,36 +1031,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"core-testnet": {
"offRamp": {
@@ -1979,22 +1054,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"cronos-zkevm-testnet-sepolia": {
"offRamp": {
@@ -2017,22 +1077,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-holesky-taiko-1": {
"offRamp": {
@@ -2044,22 +1089,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-hoodi-morph": {
"offRamp": {
@@ -2071,22 +1101,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-andromeda-1": {
"offRamp": {
@@ -2098,36 +1113,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -2139,64 +1125,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC", "syrupUSDC"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -2208,64 +1137,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC", "syrupUSDC"]
},
"ethereum-testnet-sepolia-blast-1": {
"offRamp": {
@@ -2277,36 +1149,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-corn-1": {
"offRamp": {
@@ -2329,22 +1172,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-lens-1": {
"offRamp": {
@@ -2367,22 +1195,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-lisk-1": {
"offRamp": {
@@ -2394,22 +1207,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-mantle-1": {
"offRamp": {
@@ -2421,50 +1219,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "syrupUSDT"]
},
"ethereum-testnet-sepolia-mode-1": {
"offRamp": {
@@ -2476,36 +1231,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -2517,50 +1243,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"ethereum-testnet-sepolia-polygon-zkevm-1": {
"offRamp": {
@@ -2572,22 +1255,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-scroll-1": {
"offRamp": {
@@ -2599,22 +1267,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-soneium-1": {
"offRamp": {
@@ -2637,36 +1290,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC"]
},
"ethereum-testnet-sepolia-worldchain-1": {
"offRamp": {
@@ -2678,22 +1302,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-xlayer-1": {
"offRamp": {
@@ -2705,22 +1314,7 @@
"enforceOutOfOrder": true,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-zksync-1": {
"offRamp": {
@@ -2732,36 +1326,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"etherlink-testnet": {
"offRamp": {
@@ -2784,22 +1349,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"hemi-testnet-sepolia": {
"offRamp": {
@@ -2822,22 +1372,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"janction-testnet-sepolia": {
"offRamp": {
@@ -2860,22 +1395,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"kaia-testnet-kairos": {
"offRamp": {
@@ -2909,22 +1429,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"metal-testnet": {
"offRamp": {
@@ -2936,22 +1441,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"mind-testnet": {
"offRamp": {
@@ -2974,22 +1464,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"monad-testnet": {
"offRamp": {
@@ -3034,22 +1509,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["syrupUSDT"]
},
"plume-testnet-sepolia": {
"offRamp": {
@@ -3061,22 +1521,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"polkadot-testnet-astar-shibuya": {
"offRamp": {
@@ -3088,36 +1533,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "167000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000000"
- },
- "out": {
- "capacity": "167000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"polygon-testnet-amoy": {
"offRamp": {
@@ -3129,50 +1545,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"polygon-testnet-tatara": {
"offRamp": {
@@ -3195,36 +1568,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"sei-testnet-atlantic": {
"offRamp": {
@@ -3236,22 +1580,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"shibarium-testnet-puppynet": {
"offRamp": {
@@ -3263,22 +1592,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -3290,50 +1604,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC", "syrupUSDC"]
},
"sonic-testnet-blaze": {
"offRamp": {
@@ -3345,22 +1616,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"superseed-testnet": {
"offRamp": {
@@ -3383,22 +1639,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"treasure-testnet-topaz": {
"offRamp": {
@@ -3421,36 +1662,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "167000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -3462,36 +1674,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdc-testnet": {
"offRamp": {
@@ -3503,22 +1686,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"zora-testnet": {
"offRamp": {
@@ -3543,36 +1711,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -3597,22 +1736,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"avalanche-fuji-testnet": {
"offRamp": {
@@ -3624,36 +1748,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bitcoin-testnet-bsquared-1": {
"offRamp": {
@@ -3687,64 +1782,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC", "syrupUSDC"]
},
"ethereum-testnet-sepolia-andromeda-1": {
"offRamp": {
@@ -3767,36 +1805,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-hashkey-1": {
"offRamp": {
@@ -3819,36 +1828,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-soneium-1": {
"offRamp": {
@@ -3893,22 +1873,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -3920,22 +1885,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"treasure-testnet-topaz": {
"offRamp": {
@@ -3958,36 +1908,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -3999,36 +1920,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-base-1": {
@@ -4042,22 +1934,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"avalanche-fuji-testnet": {
"offRamp": {
@@ -4069,36 +1946,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -4110,36 +1958,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"celo-testnet-alfajores": {
"offRamp": {
@@ -4173,64 +1992,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC", "syrupUSDC"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -4242,36 +2004,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-hashkey-1": {
"offRamp": {
@@ -4294,36 +2027,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -4335,36 +2039,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ink-testnet-sepolia": {
"offRamp": {
@@ -4431,22 +2106,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -4458,22 +2118,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"sonic-testnet-blaze": {
"offRamp": {
@@ -4507,36 +2152,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-blast-1": {
@@ -4561,36 +2177,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-corn-1": {
@@ -4628,22 +2215,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -4690,22 +2262,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-lens-1": {
@@ -4743,22 +2300,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -4794,22 +2336,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"ethereum-testnet-sepolia-mantle-1": {
@@ -4834,50 +2361,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "syrupUSDT"]
}
},
"ethereum-testnet-sepolia-mode-1": {
@@ -4891,36 +2375,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -4932,36 +2387,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-optimism-1": {
@@ -4975,22 +2401,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"avalanche-fuji-testnet": {
"offRamp": {
@@ -5002,36 +2413,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"celo-testnet-alfajores": {
"offRamp": {
@@ -5054,50 +2436,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -5109,36 +2448,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -5150,36 +2460,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-hashkey-1": {
"offRamp": {
@@ -5224,36 +2505,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"shibarium-testnet-puppynet": {
"offRamp": {
@@ -5265,22 +2517,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -5292,36 +2529,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC"]
},
"wemix-testnet": {
"offRamp": {
@@ -5333,36 +2541,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -5374,36 +2553,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-polygon-zkevm-1": {
@@ -5417,22 +2567,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-scroll-1": {
@@ -5457,22 +2592,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-soneium-1": {
@@ -5521,36 +2641,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC"]
},
"solana-devnet": {
"offRamp": {
@@ -5562,22 +2653,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"sonic-testnet-blaze": {
"offRamp": {
@@ -5602,22 +2678,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -5642,22 +2703,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
}
},
"ethereum-testnet-sepolia-zksync-1": {
@@ -5671,36 +2717,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"etherlink-testnet": {
@@ -5727,22 +2744,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"hemi-testnet-sepolia": {
@@ -5802,22 +2804,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -5877,22 +2864,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"polygon-testnet-amoy": {
"offRamp": {
@@ -5943,22 +2915,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -6005,22 +2962,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"mind-testnet": {
@@ -6047,22 +2989,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"monad-testnet": {
@@ -6203,22 +3130,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "syrupUSDT": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["syrupUSDT"]
},
"ink-testnet-sepolia": {
"offRamp": {
@@ -6265,22 +3177,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"polkadot-testnet-astar-shibuya": {
@@ -6294,36 +3191,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "167000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000000"
- },
- "out": {
- "capacity": "167000000000000000000",
- "isEnabled": true,
- "rate": "100000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-soneium-1": {
"offRamp": {
@@ -6348,36 +3216,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -6389,36 +3228,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-holesky": {
"offRamp": {
@@ -6441,50 +3251,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM", "USDC"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -6518,36 +3285,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"jovay-testnet": {
"offRamp": {
@@ -6581,22 +3319,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"wemix-testnet": {
"offRamp": {
@@ -6608,36 +3331,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"xdai-testnet-chiado": {
"offRamp": {
@@ -6649,36 +3343,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"polygon-testnet-tatara": {
@@ -6703,22 +3368,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -6765,36 +3415,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -6830,22 +3451,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -6870,22 +3476,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -6897,22 +3488,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -6924,22 +3500,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -6951,22 +3512,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -6978,22 +3524,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"solana-devnet": {
"offRamp": {
@@ -7040,22 +3571,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -7067,50 +3583,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- },
- "syrupUSDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC", "syrupUSDC"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -7122,22 +3595,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -7149,22 +3607,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -7176,36 +3619,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- },
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "USDC"]
},
"ethereum-testnet-sepolia-unichain-1": {
"offRamp": {
@@ -7217,22 +3631,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"ethereum-testnet-sepolia-worldchain-1": {
"offRamp": {
@@ -7288,22 +3687,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "USDC": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["USDC"]
},
"polygon-testnet-tatara": {
"offRamp": {
@@ -7348,22 +3732,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- },
- "out": {
- "capacity": "100000000000000",
- "isEnabled": true,
- "rate": "167000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"sonic-testnet-blaze": {
@@ -7377,22 +3746,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -7426,22 +3780,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -7508,22 +3847,7 @@
"enforceOutOfOrder": true,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"superseed-testnet": {
@@ -7550,22 +3874,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"treasure-testnet-topaz": {
@@ -7603,36 +3912,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -7644,36 +3924,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -7685,36 +3936,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -7726,36 +3948,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -7778,22 +3971,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -7805,36 +3983,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"polygon-testnet-amoy": {
"offRamp": {
@@ -7846,36 +3995,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"xdai-testnet-chiado": {
@@ -7900,36 +4020,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"bsc-testnet": {
"offRamp": {
@@ -7941,36 +4032,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia": {
"offRamp": {
@@ -7982,36 +4044,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-arbitrum-1": {
"offRamp": {
@@ -8023,36 +4056,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-base-1": {
"offRamp": {
@@ -8064,36 +4068,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"ethereum-testnet-sepolia-optimism-1": {
"offRamp": {
@@ -8105,36 +4080,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
},
"plasma-testnet": {
"offRamp": {
@@ -8157,36 +4103,7 @@
"enforceOutOfOrder": false,
"version": "1.5.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- },
- "CCIP-LnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- },
- "out": {
- "capacity": "100000000000000000000000",
- "isEnabled": true,
- "rate": "167000000000000000000"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM", "CCIP-LnM"]
}
},
"xdc-testnet": {
@@ -8200,22 +4117,7 @@
"enforceOutOfOrder": false,
"version": "1.6.0"
},
- "supportedTokens": {
- "CCIP-BnM": {
- "rateLimiterConfig": {
- "in": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- },
- "out": {
- "capacity": "0",
- "isEnabled": false,
- "rate": "0"
- }
- }
- }
- }
+ "supportedTokens": ["CCIP-BnM"]
}
},
"zora-testnet": {
diff --git a/src/config/data/ccip/v1_2_0/testnet/tokens.json b/src/config/data/ccip/v1_2_0/testnet/tokens.json
index 3f0963c8f72..21d9fb96e86 100644
--- a/src/config/data/ccip/v1_2_0/testnet/tokens.json
+++ b/src/config/data/ccip/v1_2_0/testnet/tokens.json
@@ -4,7 +4,11 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Aptos Coin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "APT",
"tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A"
}
@@ -14,8 +18,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xAA1Bbe60dE447706e8E676edB6dbFfe8Cf7BB69a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xAA1Bbe60dE447706e8E676edB6dbFfe8Cf7BB69a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x596b8A0A2A63E5B4b2c0e201c4C27078642c8509"
},
@@ -23,8 +31,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x812E0EaB33c1A34Ff651bfBD63Cd3A8AcD63b2F5",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x812E0EaB33c1A34Ff651bfBD63Cd3A8AcD63b2F5",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xF48cae4B1F4EB3a1682600D4F3aFA166db5B162E"
},
@@ -32,8 +44,12 @@
"allowListEnabled": false,
"decimals": 8,
"name": "CCIP-BnM",
- "poolAddress": "0x65ad4cb3142cab5100a4eeed34e2005cbb1fcae42fc688e3c96b0c33ae16e6b9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x65ad4cb3142cab5100a4eeed34e2005cbb1fcae42fc688e3c96b0c33ae16e6b9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xa680c9935c7ea489676fa0e01f1ff8a97fadf0cb35e1e06ba1ba32ecd882fc9a"
},
@@ -41,8 +57,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x10e3A37ff21c20CD802fdAF0204e2Ff04e5485ee",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x10e3A37ff21c20CD802fdAF0204e2Ff04e5485ee",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xD21341536c5cF5EB1bcb58f6723cE26e8D8E90e4"
},
@@ -50,8 +70,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x05D5c0CAA8ab3f4Fb8627956ed027039e854f16A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x05D5c0CAA8ab3f4Fb8627956ed027039e854f16A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x0643fD73C261eC4B369C3a8C5c0eC8c57485E32d"
},
@@ -59,8 +83,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x71Da9f1fbc06f0C3364fA066C4aa8280886Ca79e",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x71Da9f1fbc06f0C3364fA066C4aa8280886Ca79e",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xEc9c9E6A862BA7aee87731110a01A2f087EC7ECc"
},
@@ -68,8 +96,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xE5AA8132cC86c2618a55723A3418EA7ED5FFf074",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xE5AA8132cC86c2618a55723A3418EA7ED5FFf074",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x3B7d0d0CeC08eBF8dad58aCCa4719791378b2329"
},
@@ -77,8 +109,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x9F49971B7c86E258f25f5A2E1fe740c0e1B903F1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9F49971B7c86E258f25f5A2E1fe740c0e1B903F1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xbFA2ACd33ED6EEc0ed3Cc06bF1ac38d22b36B9e9"
},
@@ -86,8 +122,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x0833975C065e821C84bE70C4935916579b5a0731",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0833975C065e821C84bE70C4935916579b5a0731",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x7e503dd1dAF90117A1b79953321043d9E6815C72"
},
@@ -95,8 +135,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xe6fAb999cA267205AB4c55D4a0319794A0d0C082",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe6fAb999cA267205AB4c55D4a0319794A0d0C082",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x028E1B6f424c5A96E4bD5e1bbaB8b3C9088e5D39"
},
@@ -104,8 +148,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xcF8830447D5D7A02f0f5e0406C29FA3B7E27EB57",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xcF8830447D5D7A02f0f5e0406C29FA3B7E27EB57",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xdd578844095DB1837A96c353F8f237f6cDC79bED"
},
@@ -113,8 +161,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xd959A5B20e0CD198eE16300977079E4b7742e3f1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd959A5B20e0CD198eE16300977079E4b7742e3f1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x6122841A203d34Cd3087c3C19d04d101F6FaF8e8"
},
@@ -122,8 +174,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xe3C755bE5409ACb76944B6Fee83413f080503885",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe3C755bE5409ACb76944B6Fee83413f080503885",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x54B50385e417469dbdb697f40651e8864664D992"
},
@@ -131,8 +187,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x693926456C8b210f56E29Bc5b4514B32A5224c88",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x693926456C8b210f56E29Bc5b4514B32A5224c88",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x69521081Fd90669b59b1Cb3F67a2229D36a7De00"
},
@@ -140,8 +200,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x4CcbDd6CF18800360161E4D2A519A2047176bDF0",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4CcbDd6CF18800360161E4D2A519A2047176bDF0",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05"
},
@@ -149,8 +213,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x01Fc8b86A16279F3f9302B20949Bd3Aba9AC7D9a",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x01Fc8b86A16279F3f9302B20949Bd3Aba9AC7D9a",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x20Aa09AAb761e2E600d65c6929A9fd1E59821D3f"
},
@@ -158,8 +226,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x4d27Ff41AeC442562215a2CE1407cE252807890c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4d27Ff41AeC442562215a2CE1407cE252807890c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xA8C0c11bf64AF62CDCA6f93D3769B88BdD7cb93D"
},
@@ -167,8 +239,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x3C12a7dA5234d1080C46baABC05efB8Fde00816b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x3C12a7dA5234d1080C46baABC05efB8Fde00816b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x88A2d74F47a237a62e7A51cdDa67270CE381555e"
},
@@ -176,8 +252,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x8D7Db7B563606DbDA8e5FD57d0BAdcAE6914212E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8D7Db7B563606DbDA8e5FD57d0BAdcAE6914212E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x8D122C3e8ce9C8B62b87d3551bDfD8C259Bb0771"
},
@@ -185,8 +265,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xedFb4A5171A34024F5908627CE186a14d01AeF4A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xedFb4A5171A34024F5908627CE186a14d01AeF4A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xB0F91Ce2ECAa3555D4b1fD4489bD9a207a7844f0"
},
@@ -194,8 +278,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x5027F0B1a3ac0c531750B96f419573B426A37eE3",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5027F0B1a3ac0c531750B96f419573B426A37eE3",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x03B2F16FC12010d2e35055092055674645C38378"
},
@@ -203,8 +291,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xCa0d36eC52dA4b466f2bAd1A97C6130775870b78",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xCa0d36eC52dA4b466f2bAd1A97C6130775870b78",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xEA8cA8AE1c54faB8D185FC1fd7C2d70Bee8a417e"
},
@@ -212,8 +304,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xB9d4e1141E67ECFedC8A8139b5229b7FF2BF16F5"
},
@@ -221,8 +317,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x95A7B37D1958D25eD1758edc930B47e5616b7226",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x95A7B37D1958D25eD1758edc930B47e5616b7226",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x8aF4204e30565DF93352fE8E1De78925F6664dA7"
},
@@ -230,8 +330,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x08389B66018D77fbe1d48CA21D127E804f8a6a2C",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x08389B66018D77fbe1d48CA21D127E804f8a6a2C",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x6122841A203d34Cd3087c3C19d04d101F6FaF8e8"
},
@@ -239,8 +343,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xb92d527977768075926D3f6C134D3700f39AF788",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb92d527977768075926D3f6C134D3700f39AF788",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x8fdE0C794fDA5a7A303Ce216f79B9695a7714EcB"
},
@@ -248,8 +356,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x979f90eC3444e7E6E8567EF26998C6328Ca637E2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x979f90eC3444e7E6E8567EF26998C6328Ca637E2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xFf6d0c1518A8104611f482eb2801CaF4f13c9dEb"
},
@@ -257,8 +369,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xd3870F30fe8730A0760C02C24b2de36Ad97FAa18",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xd3870F30fe8730A0760C02C24b2de36Ad97FAa18",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x01Ac06943d2B8327a7845235Ef034741eC1Da352"
},
@@ -266,8 +382,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x4B07cd55bbD45C9df160C54C62c3933c26594C6A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4B07cd55bbD45C9df160C54C62c3933c26594C6A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x414dbe1d58dd9BA7C84f7Fc0e4f82bc858675d37"
},
@@ -275,8 +395,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x2bF249E1796D5F3a293dFB0B084f52bF5D3f35CB",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2bF249E1796D5F3a293dFB0B084f52bF5D3f35CB",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xB45B9eb94F25683B47e5AFb0f74A05a58be86311"
},
@@ -284,8 +408,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xefE6Aa4551184612ABe166ccEe032e0eda748e9b",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xefE6Aa4551184612ABe166ccEe032e0eda748e9b",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x62325603b3550CbF763cb47F9Fe081dD977e728a"
},
@@ -293,8 +421,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xbD6F12f358D8ee3b35B0AD612450a186bA866B72"
},
@@ -302,8 +434,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x0643fD73C261eC4B369C3a8C5c0eC8c57485E32d",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x0643fD73C261eC4B369C3a8C5c0eC8c57485E32d",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x56408DC41E35d3E8E92A16bc94787438df9387a1"
},
@@ -311,8 +447,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x8D7Db7B563606DbDA8e5FD57d0BAdcAE6914212E",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8D7Db7B563606DbDA8e5FD57d0BAdcAE6914212E",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x225fAc4130595d1C7dabbE61A8bA9B051440b76c"
},
@@ -320,8 +460,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x812cF48d7e39107f19f580104eCCf7C4F6c162EE",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x812cF48d7e39107f19f580104eCCf7C4F6c162EE",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xc49ec0eB4beb48B8Da4cceC51AA9A5bD0D0A4c43"
},
@@ -329,8 +473,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x4122fe199B6e489a89f54c67245Be33bf602935F",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4122fe199B6e489a89f54c67245Be33bf602935F",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xcab0EF91Bee323d1A617c0a027eE753aFd6997E4"
},
@@ -338,8 +486,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x9116547A104C4Bb2531EacdC5A6695019eea5387",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9116547A104C4Bb2531EacdC5A6695019eea5387",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xc3B04ce056D8E44AA43BE1e23D554ef2AA3a9f58"
},
@@ -347,8 +499,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x15A542b074B1ec3a52F2B3eC91efc15ECf6f24dC",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x15A542b074B1ec3a52F2B3eC91efc15ECf6f24dC",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x88DD2416699Bad3AeC58f535BC66F7f62DE2B2EC"
},
@@ -356,8 +512,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x5B0340e56135eA391ceb64f1B5df65BD838B6365",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x5B0340e56135eA391ceb64f1B5df65BD838B6365",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x271F22d029c6edFc9469faE189C4F43E457F257C"
},
@@ -365,8 +525,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x694f112E941472c8806b853Db714c29387396FBb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x694f112E941472c8806b853Db714c29387396FBb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x81249b4bD91A8706eE67a2f422DB82258D4947ad"
},
@@ -374,8 +538,12 @@
"allowListEnabled": false,
"decimals": 9,
"name": "CCIP-BnM",
- "poolAddress": "BqGg42v35Ghuigi4smWU9KKQTUnQb5ATocDbJikHjocS",
- "poolType": "burnMint",
+ "pool": {
+ "address": "BqGg42v35Ghuigi4smWU9KKQTUnQb5ATocDbJikHjocS",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "3PjyGzj1jGVgHSKS4VR1Hr1memm63PmN8L9rtPDKwzZ6"
},
@@ -383,8 +551,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xB31e0A1A02bce6a8386C812f1dD80572f6f3a717",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB31e0A1A02bce6a8386C812f1dD80572f6f3a717",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x230c46b9a7c8929A80863bDe89082B372a4c7A99"
},
@@ -392,8 +564,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x82087E24B4C5f0a1fc8A3Feef10657420A5690C4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x82087E24B4C5f0a1fc8A3Feef10657420A5690C4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x4Bc8740F54eC7CD6738f19ff00438bFE3DCbceB3"
},
@@ -401,8 +577,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xD2c13079256523607EA273422f41956F9205653c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xD2c13079256523607EA273422f41956F9205653c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xF4E4057FbBc86915F4b2d63EEFFe641C03294ffc"
},
@@ -410,8 +590,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0xA3Ab1330b7275402A38e02Bd22F237CD6B2c68Fb",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xA3Ab1330b7275402A38e02Bd22F237CD6B2c68Fb",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0xA189971a2c5AcA0DFC5Ee7a2C44a2Ae27b3CF389"
},
@@ -419,8 +603,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-BnM",
- "poolAddress": "0x61876F0429726D7777B46f663e1C9ab75d08Fc56",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x61876F0429726D7777B46f663e1C9ab75d08Fc56",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "CCIP-BnM",
"tokenAddress": "0x1350D63CAEc50778A132e1Ab85D43a3B50FD61dD"
}
@@ -430,8 +618,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x8e35eB0dfb39Ec5F84254C3f863986a913171E0B",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x8e35eB0dfb39Ec5F84254C3f863986a913171E0B",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x70F5c5C40b873EA597776DA2C21929A8282A3b35"
},
@@ -439,8 +631,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xc3b32Cc1e0207648d174d38AfD659332D4d11341",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xc3b32Cc1e0207648d174d38AfD659332D4d11341",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x79a4Fc27f69323660f5Bfc12dEe21c3cC14f5901"
},
@@ -448,8 +644,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x049627974516Eb171FD91EdE659a291e17836eD7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x049627974516Eb171FD91EdE659a291e17836eD7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x7F4e739D40E58BBd59dAD388171d18e37B26326f"
},
@@ -457,8 +657,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "CCIP-LnM",
- "poolAddress": "0x658FdaC59a197D5166151640b7a673F7dF1Ba324",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x658FdaC59a197D5166151640b7a673F7dF1Ba324",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "CCIP-LnM",
"tokenAddress": "0x466D489b6d36E7E3b824ef491C225F5830E81cC1"
},
@@ -466,8 +670,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xC64011eD08A2263F87AE8eF05b7d41EfC91f4AFD",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC64011eD08A2263F87AE8eF05b7d41EfC91f4AFD",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x705b364CadE0e515577F2646529e3A417473a155"
},
@@ -475,8 +683,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x056B16D54bCAea1C14036Bb78Fe8338d892F0262",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x056B16D54bCAea1C14036Bb78Fe8338d892F0262",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x139E99f0ab4084E14e6bb7DacA289a91a2d92927"
},
@@ -484,8 +696,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xB8937715574FC00a88408582C8406653a16495D7",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB8937715574FC00a88408582C8406653a16495D7",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xA98FA8A008371b9408195e52734b1768c0d1Cb5c"
},
@@ -493,8 +709,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x4bd6F0785Cbe5200EBc98c1496e29C279E18ABDe",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4bd6F0785Cbe5200EBc98c1496e29C279E18ABDe",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x35347A2fC1f2a4c5Eae03339040d0b83b09e6FDA"
},
@@ -502,8 +722,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xa77c73A8b6239377B2648Af55d2B4501aCB1A46A",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xa77c73A8b6239377B2648Af55d2B4501aCB1A46A",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x835fcBB6770E1246CfCf52F83cDcec3177d0bb6b"
},
@@ -511,8 +735,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xcDD99Ac87b8e5B0E39f47a024f7189a74c1128E4",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xcDD99Ac87b8e5B0E39f47a024f7189a74c1128E4",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xA7EA79b9E466e8D2a440128867ed399bC78f4aaE"
},
@@ -520,8 +748,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x2979C66FaBb41f67451F0BcB2A668382f92959a1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2979C66FaBb41f67451F0BcB2A668382f92959a1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xCdeE7708A96479f6D029741144f458B7FA807A6C"
},
@@ -529,8 +761,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x31C110BaffaADc5a0eC9738cD8C6670123C1926c",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x31C110BaffaADc5a0eC9738cD8C6670123C1926c",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x86f9Eed8EAD1534D87d23FbAB247D764fC725D49"
},
@@ -538,8 +774,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x69B5126A10582063B17fa3b614C5Ac6b0f1D23Ba",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x69B5126A10582063B17fa3b614C5Ac6b0f1D23Ba",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x044a6B4b561af69D2319A2f4be5Ec327a6975D0a"
},
@@ -547,8 +787,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x036bf900C4690961ad5AE8f104547824C76583c1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x036bf900C4690961ad5AE8f104547824C76583c1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xA4C9e2108ca478DE0B91c7D9Ba034bbc93C22Ecc"
},
@@ -556,8 +800,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x08aa3aeB96bd89D0228f2d3373A5cEE453F7a304",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x08aa3aeB96bd89D0228f2d3373A5cEE453F7a304",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x0298e204F9131d45EEb436D693f32C6eA1190622"
},
@@ -565,8 +813,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x48d73fcEc510aCED85E7aC288A896AB614C73Af2",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x48d73fcEc510aCED85E7aC288A896AB614C73Af2",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xd70f29744f03F10b7EC2443Bd294B7E62D654c5b"
},
@@ -574,8 +826,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x06f1097Ec4376964fE32153F72ea39CA35679992",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x06f1097Ec4376964fE32153F72ea39CA35679992",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "LnM",
"tokenAddress": "0xBf8eA19505ab7Eb266aeD435B11bd56321BFB5c5"
},
@@ -583,8 +839,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x2B758a239f6B8Fb422d069B1b04A7b8c2A60209D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x2B758a239f6B8Fb422d069B1b04A7b8c2A60209D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xB9d4e1141E67ECFedC8A8139b5229b7FF2BF16F5"
},
@@ -592,8 +852,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xb15799a06A69cf4E825F3b0F3082903E09E0Ecc1",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xb15799a06A69cf4E825F3b0F3082903E09E0Ecc1",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.0"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x3d357fb52253e86c8Ee0f80F5FfE438fD9503FF2"
},
@@ -601,8 +865,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0x17a9049600902Ba429B3A5761d02A9C4E052eE40",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x17a9049600902Ba429B3A5761d02A9C4E052eE40",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x04B1F917a3ba69Fa252564414DdAFc82fA1B5178"
},
@@ -610,8 +878,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xC212AD0E6EBE962a3626509A0efE363380c30F46",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xC212AD0E6EBE962a3626509A0efE363380c30F46",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0xcb342aE3D65E3fEDF8F912B0432e2B8F88514d5D"
},
@@ -619,8 +891,12 @@
"allowListEnabled": false,
"decimals": 18,
"name": "clCCIP-LnM",
- "poolAddress": "0xe036d1B13B108f1f5DFF25EB2e66538a8DcC07c9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xe036d1B13B108f1f5DFF25EB2e66538a8DcC07c9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "clCCIP-LnM",
"tokenAddress": "0x30DeCD269277b8094c00B0bacC3aCaF3fF4Da7fB"
}
@@ -630,7 +906,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Frax Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "frxETH",
"tokenAddress": "0xFC00000000000000000000000000000000000006"
}
@@ -640,7 +920,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xd211Bd4ff8fd68C16016C5c7a66b6e10F6227C49"
},
@@ -648,7 +932,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb"
},
@@ -656,7 +944,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E"
},
@@ -664,7 +956,11 @@
"allowListEnabled": false,
"decimals": 8,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x3d5d565c271d6b9c52f1a963f2b7bddad3453b0de2ace5e254b8db6549cc335e"
},
@@ -672,7 +968,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846"
},
@@ -680,7 +980,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271"
},
@@ -688,7 +992,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x56E16E648c51609A14Eb14B99BAB771Bee797045"
},
@@ -696,7 +1004,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48"
},
@@ -704,7 +1016,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2"
},
@@ -712,7 +1028,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45"
},
@@ -720,7 +1040,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50"
},
@@ -728,7 +1052,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x39dD98CcCC3a51b2c0007e23517488e363581264"
},
@@ -736,7 +1064,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183"
},
@@ -744,7 +1076,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06"
},
@@ -752,7 +1088,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x32E08557B14FaD8908025619797221281D439071"
},
@@ -760,7 +1100,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x6C475841d1D7871940E93579E5DBaE01634e17aA"
},
@@ -768,7 +1112,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262"
},
@@ -776,7 +1124,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827"
},
@@ -784,7 +1136,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B"
},
@@ -792,7 +1148,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF"
},
@@ -800,7 +1160,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c"
},
@@ -808,7 +1172,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54"
},
@@ -816,7 +1184,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x779877A7B0D9E8603169DdbD7836e478b4624789"
},
@@ -824,7 +1196,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x9870D6a0e05F867EAAe696e106741843F7fD116D"
},
@@ -832,7 +1208,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E"
},
@@ -840,7 +1220,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410"
},
@@ -848,7 +1232,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32"
},
@@ -856,7 +1244,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1"
},
@@ -864,7 +1256,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57"
},
@@ -872,7 +1268,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8"
},
@@ -880,7 +1280,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36"
},
@@ -888,7 +1292,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xF64E6E064a71B45514691D397ad4204972cD6508"
},
@@ -896,7 +1304,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb"
},
@@ -904,7 +1316,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04"
},
@@ -912,7 +1328,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d"
},
@@ -920,7 +1340,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410"
},
@@ -928,7 +1352,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x5576815a38A3706f37bf815b261cCc7cCA77e975"
},
@@ -936,7 +1364,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x231d45b53C905c3d6201318156BDC725c9c3B9B1"
},
@@ -944,7 +1376,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2"
},
@@ -952,7 +1388,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xda40816f278Cd049c137F6612822D181065EBfB4"
},
@@ -960,7 +1400,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801"
},
@@ -968,7 +1412,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55"
},
@@ -976,7 +1424,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e"
},
@@ -984,7 +1436,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950"
},
@@ -992,7 +1448,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6"
},
@@ -1000,7 +1460,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x5246409a2e09134824c4E709602205B176491e57"
},
@@ -1008,7 +1472,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4"
},
@@ -1016,7 +1484,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2"
},
@@ -1024,7 +1496,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xd3e461C55676B10634a5F81b747c324B85686Dd1"
},
@@ -1032,7 +1508,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xAF3243f975afe2269Da8Ffa835CA3A8F8B6A5A36"
},
@@ -1040,7 +1520,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x4d03398C2588D92B220578dAEde29814E41c8033"
},
@@ -1048,7 +1532,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54"
},
@@ -1056,7 +1544,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237"
},
@@ -1064,7 +1556,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4"
},
@@ -1072,7 +1568,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237"
},
@@ -1080,7 +1580,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x6fE981Dbd557f81ff66836af0932cba535Cbc343"
},
@@ -1088,7 +1592,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x7F85bAC57B5D4b81F866F495c30AB8C8c453f6FD"
},
@@ -1096,7 +1604,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x2f79e049f552E600D5d8118923278Aa0fCD67179"
},
@@ -1104,7 +1616,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54"
},
@@ -1112,7 +1628,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068"
},
@@ -1120,7 +1640,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xe74037112db8807B3B4B3895F5790e5bc1866a29"
},
@@ -1128,7 +1652,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904"
},
@@ -1136,7 +1664,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x29261B6Fb93097885bEB714ee253Da63A52dFc46"
},
@@ -1144,7 +1676,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15"
},
@@ -1152,7 +1688,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B"
},
@@ -1160,7 +1700,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0x44637eEfD71A090990f89faEC7022fc74B2969aD"
},
@@ -1168,7 +1712,11 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Chainlink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L"
},
@@ -1176,7 +1724,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580"
},
@@ -1184,7 +1736,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956"
},
@@ -1192,7 +1748,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54"
},
@@ -1200,7 +1760,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5"
},
@@ -1208,7 +1772,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "LINK",
"tokenAddress": "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093"
},
@@ -1216,7 +1784,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xDCA67FD8324990792C0bfaE95903B8A64097754F"
},
@@ -1224,7 +1796,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "LINK",
"tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54"
},
@@ -1232,7 +1808,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "ChainLink Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "LINK",
"tokenAddress": "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e"
}
@@ -1242,7 +1822,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped A0GI",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WA0GI",
"tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c"
}
@@ -1252,8 +1836,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "S-USDCircle",
- "poolAddress": "0x98C80d0235Eaae38200720Ae86e2D6a62b3B19c9",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x98C80d0235Eaae38200720Ae86e2D6a62b3B19c9",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.5.0"
+ },
"symbol": "syrupUSDCircle",
"tokenAddress": "0xb1206B74F612F478c12A647D12E7e822AF5D8244"
},
@@ -1261,8 +1849,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0xB2F73a7540A000b383e8a9ffb3BdEECc4709Dc4D",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB2F73a7540A000b383e8a9ffb3BdEECc4709Dc4D",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0xbc9A4b299741CBf2A8eD5D2078A426027C31B2A3"
},
@@ -1270,8 +1862,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "0xB6bD6e3e56a8E28CCbE44b6442cA8b586B964Af8",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0xB6bD6e3e56a8E28CCbE44b6442cA8b586B964Af8",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "0x183F67cE6CCCeaBB5D79c69C2d92e78111736B62"
},
@@ -1279,8 +1875,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDC",
- "poolAddress": "B3rp2RHbuZeDeSSZLXww3EbaMr1TVtn9kF2a2FAobnxi",
- "poolType": "burnMint",
+ "pool": {
+ "address": "B3rp2RHbuZeDeSSZLXww3EbaMr1TVtn9kF2a2FAobnxi",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDC",
"tokenAddress": "95Er6pcK2agiTa2Jctp1BBnQtuDfX1d78XSTZKWZyXKk"
}
@@ -1290,8 +1890,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT Demo",
- "poolAddress": "0x83703f6601eDF05Bf9A30F03ba1F1B195BFdDEe9",
- "poolType": "lockRelease",
+ "pool": {
+ "address": "0x83703f6601eDF05Bf9A30F03ba1F1B195BFdDEe9",
+ "rawType": "LockRelease",
+ "type": "lockRelease",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0x7679CBe9aE66298114AC6dAC73487B63ac023c0b"
},
@@ -1299,8 +1903,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT",
- "poolAddress": "0x4F213c8374c4F223eB85d8770Fc76eAd5163FC23",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x4F213c8374c4F223eB85d8770Fc76eAd5163FC23",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.5.1"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0x1495CB0831108160405c8F453E1B8e155DbFbEdC"
},
@@ -1308,8 +1916,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "Syrup USDT",
- "poolAddress": "0x9F367a290B4Cc64d0F85B3783d332256b26143B9",
- "poolType": "burnMint",
+ "pool": {
+ "address": "0x9F367a290B4Cc64d0F85B3783d332256b26143B9",
+ "rawType": "BurnMint",
+ "type": "burnMint",
+ "version": "1.6.1"
+ },
"symbol": "syrupUSDT",
"tokenAddress": "0x2282DA461850d900ba7E777b6D4161a415860931"
}
@@ -1319,8 +1931,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0x2f79e049f552E600D5d8118923278Aa0fCD67179",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x2f79e049f552E600D5d8118923278Aa0fCD67179",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65"
},
@@ -1328,8 +1944,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0x02eef4b366225362180d704C917c50f6c46af9e0",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x02eef4b366225362180d704C917c50f6c46af9e0",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238"
},
@@ -1337,8 +1957,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "0xeA2912f446Ff28663D2E5A971da751A84E409292",
- "poolType": "usdc",
+ "pool": {
+ "address": "0xeA2912f446Ff28663D2E5A971da751A84E409292",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d"
},
@@ -1346,8 +1970,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0x63d023db6e9b2a838Cf4cc54903d2C2D825A2967",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x63d023db6e9b2a838Cf4cc54903d2C2D825A2967",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e"
},
@@ -1355,8 +1983,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0x8E9066E66bF1B8A4eAF2344589De9ff82CE47C2d",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x8E9066E66bF1B8A4eAF2344589De9ff82CE47C2d",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.0"
+ },
"symbol": "USDC",
"tokenAddress": "0x5fd84259d66Cd46123540766Be93DFE6D43130D7"
},
@@ -1364,8 +1996,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0xB45B9eb94F25683B47e5AFb0f74A05a58be86311",
- "poolType": "usdc",
+ "pool": {
+ "address": "0xB45B9eb94F25683B47e5AFb0f74A05a58be86311",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x31d0220469e10c4E71834a79b1f276d740d3768F"
},
@@ -1373,8 +2009,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USDC",
- "poolAddress": "0x4F213c8374c4F223eB85d8770Fc76eAd5163FC23",
- "poolType": "usdc",
+ "pool": {
+ "address": "0x4F213c8374c4F223eB85d8770Fc76eAd5163FC23",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.6.1"
+ },
"symbol": "USDC",
"tokenAddress": "0x41E94Eb019C0762f9Bfcf9Fb1E58725BfB0e7582"
},
@@ -1382,8 +2022,12 @@
"allowListEnabled": false,
"decimals": 6,
"name": "USD Coin",
- "poolAddress": "7hCNZAWQNSq49CCA1KtjLuZbK5cWguRSVVsJcMa3C5zL",
- "poolType": "usdc",
+ "pool": {
+ "address": "7hCNZAWQNSq49CCA1KtjLuZbK5cWguRSVVsJcMa3C5zL",
+ "rawType": "Usdc",
+ "type": "usdc",
+ "version": "1.5.1"
+ },
"symbol": "USDC",
"tokenAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU"
}
@@ -1393,7 +2037,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped ApeCoin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WAPE",
"tokenAddress": "0x1762A2B15f63ca4E1165A9385cB40412CF545aC3"
}
@@ -1403,7 +2051,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped AVAX",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WAVAX",
"tokenAddress": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c"
}
@@ -1413,7 +2065,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Bera",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBERA",
"tokenAddress": "0x7507c1dc16935B82698e4C63f2746A2fCf994dF8"
}
@@ -1423,7 +2079,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BNB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBNB",
"tokenAddress": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd"
}
@@ -1433,7 +2093,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Shibarium Wrapped BONE",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBONE",
"tokenAddress": "0x41c3F37587EBcD46C0F85eF43E38BcfE1E70Ab56"
}
@@ -1443,7 +2107,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WBTC",
"tokenAddress": "0x3e57d6946f893314324C975AA9CEBBdF3232967E"
},
@@ -1451,7 +2119,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BTC TOKEN",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBTC",
"tokenAddress": "0x233631132FD56c8f86D1FC97F0b82420a8d20af3"
},
@@ -1459,7 +2131,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1467,7 +2143,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Bitcoin",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WBTC",
"tokenAddress": "0x1A6357313BA1B6bc92e7325A9BAf241Ca3e493dD"
}
@@ -1477,7 +2157,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Bitcorn",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WBTCN",
"tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2"
}
@@ -1487,7 +2171,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Celo",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WCELO",
"tokenAddress": "0x99604d0e2EfE7ABFb58BdE565b5330Bb46Ab3Dca"
}
@@ -1497,7 +2185,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped CORE",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WCORE",
"tokenAddress": "0x7Ce5fCfFd1296d870b3578809B31D8CA8bF5aC3d"
}
@@ -1507,7 +2199,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped CRO",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WCRO",
"tokenAddress": "0x5C50653Ada833D649a718ba4D1Fb9e2EE49c202d"
}
@@ -1517,7 +2213,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x9EDCde0257F2386Ce177C3a7FCdd97787F0D841d"
},
@@ -1525,7 +2225,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1533,7 +2237,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1541,7 +2249,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x94373a4919B3240D86eA41593D5eBa789FEF3848"
},
@@ -1549,7 +2261,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xae2C46ddb314B9Ba743C6dEE4878F151881333D9"
},
@@ -1557,7 +2273,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x5300000000000000000000000000000000000011"
},
@@ -1565,7 +2285,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x097D90c9d3E0B50Ca60e1ae45F6A81010f9FB534"
},
@@ -1573,7 +2297,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xE591bf0A0CF924A0674d7792db046B23CEbF5f34"
},
@@ -1581,7 +2309,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1589,7 +2321,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000023"
},
@@ -1597,7 +2333,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000001"
},
@@ -1605,7 +2345,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x06565ed324Ee9fb4DB0FF80B7eDbE4Cb007555a3"
},
@@ -1613,7 +2357,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1621,7 +2369,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1629,7 +2381,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1637,7 +2393,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x1CE28d5C81B229c77C5651feB49c4C489f8c52C4"
},
@@ -1645,7 +2405,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x5300000000000000000000000000000000000004"
},
@@ -1653,7 +2417,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1661,7 +2429,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1669,7 +2441,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1677,7 +2453,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4317b2eCD41851173175005783322D29E9bAee9E"
},
@@ -1685,7 +2465,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x0C8aFD1b58aa2A5bAd2414B861D8A7fF898eDC3A"
},
@@ -1693,7 +2477,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1701,7 +2489,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1709,7 +2501,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xFe06d41BA962A74209845f938c387b363a931505"
},
@@ -1717,7 +2513,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E"
},
@@ -1725,7 +2525,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x85Be6b6ff4e61C3bEB0Fb73a2A9dC3A80e279c86"
},
@@ -1733,7 +2537,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1741,7 +2549,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x12e3b49DF7dD40792EFbB1B3eAB1295951Bad5EE"
},
@@ -1749,7 +2561,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1757,7 +2573,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0xc2e1B8e9a765A19315cD9BbbD84a1BB6DC3FC335"
},
@@ -1765,7 +2585,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1773,7 +2597,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
},
@@ -1781,7 +2609,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WETH",
"tokenAddress": "0x4200000000000000000000000000000000000006"
}
@@ -1791,7 +2623,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Frax Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "wfrxETH",
"tokenAddress": "0xFC00000000000000000000000000000000000006"
}
@@ -1801,7 +2637,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped GAS v10",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WGAS10",
"tokenAddress": "0x1CE16390FD09040486221e912B87551E4e44Ab17"
}
@@ -1811,7 +2651,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Grass",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WGRASS",
"tokenAddress": "0xeee5a340Cdc9c179Db25dea45AcfD5FE8d4d3eB8"
}
@@ -1821,7 +2665,11 @@
"allowListEnabled": false,
"decimals": 8,
"name": "Wrapped HBAR",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WHBAR",
"tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed"
}
@@ -1831,7 +2679,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Hashkey",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WHSK",
"tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262"
}
@@ -1841,7 +2693,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ether",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WETH",
"tokenAddress": "0xF04fcEC93DEB6191B704a0ec5d0FFF2A8B2c39be"
}
@@ -1851,7 +2707,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped MAGIC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WMAGIC",
"tokenAddress": "0x095ded714d42cBD5fb2E84A0FfbFb140E38dC9E1"
}
@@ -1861,7 +2721,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Metis",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WMETIS",
"tokenAddress": "0x5c48e07062aC4E2Cf4b9A768a711Aef18e8fbdA0"
}
@@ -1871,7 +2735,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Mantle",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WMNT",
"tokenAddress": "0x19f5557E23e9914A18239990f6C70D68FDF0deD5"
}
@@ -1881,7 +2749,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Monad",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WMON",
"tokenAddress": "0x760AfE86e5de5fa0Ee542fc7B7B713e1c5425701"
}
@@ -1891,7 +2763,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped OKB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WOKB",
"tokenAddress": "0xa7b9C3a116b20bEDDdBE4d90ff97157f67F0bD97"
}
@@ -1901,7 +2777,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Pharos",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WPHRS",
"tokenAddress": "0x838800b758277CC111B2d48Ab01e5E164f8E9471"
}
@@ -1911,7 +2791,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Plume",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WPLUME",
"tokenAddress": "0xC1FD14775c8665B31c7154074f537338774351EB"
}
@@ -1921,7 +2805,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Polygon Ecosystem Token",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WPOL",
"tokenAddress": "0x360ad4f9a9A8EFe9A8DCB5f461c4Cc1047E1Dcf9"
}
@@ -1931,7 +2819,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped RBTC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WRBTC",
"tokenAddress": "0x09B6Ca5E4496238a1F176aEA6bB607db96C2286E"
}
@@ -1941,7 +2833,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Ron",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WRON",
"tokenAddress": "0xA959726154953bAe111746E265E6d754F48570E6"
}
@@ -1951,7 +2847,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped S",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WS",
"tokenAddress": "0x917FE4b784d1895187Df169aeCc687C03ba12662"
}
@@ -1961,7 +2861,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Shibuya",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.1"
+ },
"symbol": "WSBY",
"tokenAddress": "0xbd5F3751856E11f3e80dBdA567Ef91Eb7e874791"
}
@@ -1971,7 +2875,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped SEI",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WSEI",
"tokenAddress": "0x3921eA6Cf927BE80211Bb57f19830700285b0AdA"
}
@@ -1981,7 +2889,11 @@
"allowListEnabled": false,
"decimals": 9,
"name": "Wrapped Solana",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WSOL",
"tokenAddress": "So11111111111111111111111111111111111111112"
}
@@ -1991,7 +2903,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped TAC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WTAC",
"tokenAddress": "0xCf61405b7525F09f4E7501fc831fE7cbCc823d4c"
}
@@ -2001,7 +2917,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped BNB",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WBNB",
"tokenAddress": "0x4200000000000000000000000000000000000006"
}
@@ -2011,7 +2931,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped Wemix",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WWEMIX",
"tokenAddress": "0xbE3686643c05f00eC46e73da594c78098F7a9Ae7"
}
@@ -2021,7 +2945,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XDAI",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WXDAI",
"tokenAddress": "0x18c8a7ec7897177E4529065a7E7B0878358B3BfF"
}
@@ -2031,7 +2959,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XDC",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "WXDC",
"tokenAddress": "0x56408DC41E35d3E8E92A16bc94787438df9387a1"
}
@@ -2041,7 +2973,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XPL",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WXPL",
"tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873"
}
@@ -2051,7 +2987,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped XTZ",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.5.0"
+ },
"symbol": "WXTZ",
"tokenAddress": "0xB1Ea698633d57705e93b0E40c1077d46CD6A51d8"
}
@@ -2061,7 +3001,11 @@
"allowListEnabled": false,
"decimals": 18,
"name": "Wrapped zkCRO",
- "poolType": "feeTokenOnly",
+ "pool": {
+ "rawType": "FeeTokenOnly",
+ "type": "feeTokenOnly",
+ "version": "1.6.1"
+ },
"symbol": "wzkCRO",
"tokenAddress": "0xeD73b53197189BE3Ff978069cf30eBc28a8B5837"
}
diff --git a/src/config/data/ccip/v1_2_0/testnet/verifiers.json b/src/config/data/ccip/v1_2_0/testnet/verifiers.json
new file mode 100644
index 00000000000..2614058b4bd
--- /dev/null
+++ b/src/config/data/ccip/v1_2_0/testnet/verifiers.json
@@ -0,0 +1,55 @@
+{
+ "ethereum-testnet-sepolia": {
+ "0x91339eb99C4c2Be9A071203DD99E014A3189FD29": {
+ "id": "chainlink",
+ "name": "Chainlink",
+ "type": "committee"
+ },
+ "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f": {
+ "id": "lombard",
+ "name": "Lombard",
+ "type": "api"
+ },
+ "0x051665f2455116e929b9972c36d23070F5054Ce0": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ }
+ },
+ "ethereum-testnet-sepolia-base-1": {
+ "0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de": {
+ "id": "chainlink-labs",
+ "name": "Chainlink Labs",
+ "type": "committee"
+ },
+ "0xD3ED6fC9fd22412764ac2Ef64fB664b9393dF9F2": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ }
+ },
+ "ethereum-testnet-sepolia-arbitrum-1": {
+ "0xa132F089492CcE5f1D79483a9e4552f37266ed01": {
+ "id": "chainlink-labs",
+ "name": "Chainlink Labs",
+ "type": "committee"
+ },
+ "0xb0B4b5847E35033766d5B49CD9C0fC40F459321F": {
+ "id": "lombard",
+ "name": "Lombard",
+ "type": "api"
+ }
+ },
+ "ethereum-testnet-sepolia-optimism-1": {
+ "0x0B8B717f8D65DeC5c9e440A9eD51f48887E83c1b": {
+ "id": "cctp",
+ "name": "CCTP",
+ "type": "api"
+ },
+ "0x34E63B2B9491570FCc01CC0b288569851EF47B27": {
+ "id": "symbiotic",
+ "name": "Symbiotic",
+ "type": "api"
+ }
+ }
+}
diff --git a/src/features/utils/index.ts b/src/features/utils/index.ts
index 3a6fe212dde..2f191a11a95 100644
--- a/src/features/utils/index.ts
+++ b/src/features/utils/index.ts
@@ -9,6 +9,7 @@ import {
ChainFamily,
} from "@config/index.ts"
import { CCIP_TOKEN_ICON_MAPPINGS } from "@config/data/ccip/tokenIconMappings.ts"
+import { TOKEN_ICONS_PATH } from "@config/cdn.ts"
import { toQuantity } from "ethers"
import referenceChains from "~/scripts/reference/chains.json" with { type: "json" }
@@ -156,10 +157,11 @@ export const getTokenIconUrl = (token: string, size = 40) => {
// Request appropriately sized images from CloudFront
// For 40x40 display, request 80x80 for retina displays (2x)
- return `https://d2f70xi62kby8n.cloudfront.net/tokens/${transformTokenName(iconIdentifier)}.webp?auto=compress%2Cformat&q=60&w=${size}&h=${size}&fit=cover`
+ return `${TOKEN_ICONS_PATH}/${transformTokenName(iconIdentifier)}.webp?auto=compress%2Cformat&q=60&w=${size}&h=${size}&fit=cover`
}
export const fallbackTokenIconUrl = "/assets/icons/generic-token.svg"
+export const fallbackVerifierIconUrl = "/assets/icons/generic-verifier.svg"
export const getChainId = (supportedChain: SupportedChain) => {
const technology = chainToTechnology[supportedChain]
diff --git a/src/lib/ccip/services/lane-data.ts b/src/lib/ccip/services/lane-data.ts
index a61316bc506..fa3211c3646 100644
--- a/src/lib/ccip/services/lane-data.ts
+++ b/src/lib/ccip/services/lane-data.ts
@@ -4,11 +4,17 @@ import {
LaneFilterType,
LaneConfigError,
LaneServiceResponse,
+ LaneDetailServiceResponse,
+ LaneDetailWithRateLimits,
+ SupportedTokensServiceResponse,
ChainInfo,
ChainInfoInternal,
OutputKeyType,
ChainType,
ChainFamily,
+ LaneInputKeyType,
+ TokenRateLimits,
+ RateLimitsData,
} from "~/lib/ccip/types/index.ts"
import { loadReferenceData, Version } from "@config/data/ccip/index.ts"
import type { LaneConfig, ChainConfig } from "@config/data/ccip/types.ts"
@@ -21,6 +27,10 @@ import {
directoryToSupportedChain,
} from "../../../features/utils/index.ts"
+// Import rate limits mock data
+import rateLimitsMainnet from "~/__mocks__/rate-limits-mainnet.json" with { type: "json" }
+import rateLimitsTestnet from "~/__mocks__/rate-limits-testnet.json" with { type: "json" }
+
export const prerender = false
/**
@@ -242,18 +252,18 @@ export class LaneDataService {
filters: LaneFilterType
): boolean {
// Check source chain filters
- if (filters.sourceChainId && !this.matchesChainFilter(sourceChain, filters.sourceChainId, "chainId")) {
+ if (filters.sourceChainId && !this.matchesChainFilter(sourceChain, filters.sourceChainId, "chain_id")) {
return false
}
if (filters.sourceSelector && !this.matchesChainFilter(sourceChain, filters.sourceSelector, "selector")) {
return false
}
- if (filters.sourceInternalId && !this.matchesChainFilter(sourceChain, filters.sourceInternalId, "internalId")) {
+ if (filters.sourceInternalId && !this.matchesChainFilter(sourceChain, filters.sourceInternalId, "internal_id")) {
return false
}
// Check destination chain filters
- if (filters.destinationChainId && !this.matchesChainFilter(destChain, filters.destinationChainId, "chainId")) {
+ if (filters.destinationChainId && !this.matchesChainFilter(destChain, filters.destinationChainId, "chain_id")) {
return false
}
if (filters.destinationSelector && !this.matchesChainFilter(destChain, filters.destinationSelector, "selector")) {
@@ -261,7 +271,7 @@ export class LaneDataService {
}
if (
filters.destinationInternalId &&
- !this.matchesChainFilter(destChain, filters.destinationInternalId, "internalId")
+ !this.matchesChainFilter(destChain, filters.destinationInternalId, "internal_id")
) {
return false
}
@@ -275,14 +285,21 @@ export class LaneDataService {
private matchesChainFilter(
chain: ChainInfoInternal,
filterValue: string,
- filterType: "chainId" | "selector" | "internalId"
+ filterType: "chain_id" | "selector" | "internal_id"
): boolean {
const filterValues = filterValue.split(",").map((v) => v.trim())
- const chainValue = chain[filterType].toString()
+ // Map snake_case filter types to camelCase property names
+ const propertyMap: Record = {
+ chain_id: "chainId",
+ selector: "selector",
+ internal_id: "internalId",
+ }
+ const propertyName = propertyMap[filterType]
+ const chainValue = chain[propertyName].toString()
- // For chainId, also check generated chain key format
- if (filterType === "chainId") {
- const generatedKey = generateChainKey(chain.chainId, chain.chainType, "chainId")
+ // For chain_id, also check generated chain key format
+ if (filterType === "chain_id") {
+ const generatedKey = generateChainKey(chain.chainId, chain.chainType, "chain_id")
return filterValues.includes(chainValue) || filterValues.includes(generatedKey)
}
@@ -297,15 +314,23 @@ export class LaneDataService {
destChain: ChainInfoInternal,
outputKey: OutputKeyType
): string {
+ // Map snake_case output keys to camelCase property names
+ const propertyMap: Record = {
+ chain_id: "chainId",
+ selector: "selector",
+ internal_id: "internalId",
+ }
+ const propertyName = propertyMap[outputKey]
+
const sourceKey =
- outputKey === "chainId"
+ outputKey === "chain_id"
? generateChainKey(sourceChain.chainId, sourceChain.chainType, outputKey)
- : sourceChain[outputKey].toString()
+ : sourceChain[propertyName].toString()
const destKey =
- outputKey === "chainId"
+ outputKey === "chain_id"
? generateChainKey(destChain.chainId, destChain.chainType, outputKey)
- : destChain[outputKey].toString()
+ : destChain[propertyName].toString()
return `${sourceKey}_to_${destKey}`
}
@@ -353,13 +378,12 @@ export class LaneDataService {
* Extracts supported token keys from lane configuration
*/
private extractSupportedTokens(laneConfig: LaneConfig): string[] {
- if (!laneConfig.supportedTokens) {
+ if (!laneConfig.supportedTokens || !Array.isArray(laneConfig.supportedTokens)) {
return []
}
- // Extract token keys from supportedTokens object
- // lanes.json structure: "supportedTokens": { "LINK": {...}, "CCIP-BnM": {...} }
- return Object.keys(laneConfig.supportedTokens)
+ // lanes.json structure: "supportedTokens": ["LINK", "CCIP-BnM", ...]
+ return laneConfig.supportedTokens
}
/**
@@ -389,4 +413,359 @@ export class LaneDataService {
getRequestId(): string {
return this.requestId
}
+
+ /**
+ * Retrieves details for a specific lane by source and destination chain identifiers
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param sourceIdentifier - Source chain identifier (chainId, selector, or internalId)
+ * @param destinationIdentifier - Destination chain identifier
+ * @param inputKeyType - Type of identifier used (chainId, selector, internalId)
+ * @returns Lane details or null if not found
+ */
+ async getLaneDetails(
+ environment: Environment,
+ sourceIdentifier: string,
+ destinationIdentifier: string,
+ inputKeyType: LaneInputKeyType
+ ): Promise {
+ logger.info({
+ message: "Getting lane details",
+ requestId: this.requestId,
+ environment,
+ sourceIdentifier,
+ destinationIdentifier,
+ inputKeyType,
+ })
+
+ try {
+ // Load reference data
+ const { lanesReferenceData, chainsReferenceData } = loadReferenceData({
+ environment,
+ version: Version.V1_2_0,
+ })
+
+ // Resolve identifiers to internal IDs
+ const sourceInternalId = this.resolveToInternalId(
+ sourceIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+ const destinationInternalId = this.resolveToInternalId(
+ destinationIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+
+ if (!sourceInternalId || !destinationInternalId) {
+ logger.warn({
+ message: "Could not resolve chain identifiers",
+ requestId: this.requestId,
+ sourceIdentifier,
+ destinationIdentifier,
+ sourceInternalId,
+ destinationInternalId,
+ })
+ return { data: null }
+ }
+
+ // Get lane data
+ const sourceLanes = lanesReferenceData[sourceInternalId] as Record | undefined
+ if (!sourceLanes) {
+ return { data: null }
+ }
+
+ const laneConfig = sourceLanes[destinationInternalId]
+ if (!laneConfig) {
+ return { data: null }
+ }
+
+ // Resolve chain info
+ const sourceChain = this.resolveChainInfo(sourceInternalId, chainsReferenceData)
+ const destChain = this.resolveChainInfo(destinationInternalId, chainsReferenceData)
+
+ if (!sourceChain || !destChain) {
+ return { data: null }
+ }
+
+ // Build lane details with rate limits
+ const laneDetails = this.buildLaneDetailsWithRateLimits(
+ sourceChain,
+ destChain,
+ laneConfig,
+ sourceInternalId,
+ destinationInternalId,
+ environment
+ )
+
+ logger.info({
+ message: "Lane details with rate limits retrieved",
+ requestId: this.requestId,
+ sourceInternalId,
+ destinationInternalId,
+ tokenCount: Object.keys(laneDetails.supportedTokens).length,
+ })
+
+ return { data: laneDetails }
+ } catch (error) {
+ logger.error({
+ message: "Failed to get lane details",
+ requestId: this.requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ })
+ return { data: null }
+ }
+ }
+
+ /**
+ * Resolves a chain identifier to its internal ID
+ *
+ * @param identifier - Chain identifier (chainId, selector, or internalId)
+ * @param inputKeyType - Type of identifier
+ * @param chainsReferenceData - Chain configuration data
+ * @returns Internal ID or null if not found
+ */
+ resolveToInternalId(
+ identifier: string,
+ inputKeyType: LaneInputKeyType,
+ chainsReferenceData: Record
+ ): string | null {
+ // If already an internal_id, return it directly
+ if (inputKeyType === "internal_id") {
+ return chainsReferenceData[identifier] ? identifier : null
+ }
+
+ // Search through chains to find matching chain_id or selector
+ for (const [internalId, chainConfig] of Object.entries(chainsReferenceData)) {
+ if (inputKeyType === "chain_id") {
+ // Try to match by numeric chain ID
+ try {
+ const supportedChain = directoryToSupportedChain(internalId)
+ const chainId = getChainId(supportedChain)
+ if (chainId && chainId.toString() === identifier) {
+ return internalId
+ }
+ } catch {
+ // Skip chains that can't be resolved
+ }
+ } else if (inputKeyType === "selector") {
+ // Match by selector
+ if (chainConfig.chainSelector === identifier) {
+ return internalId
+ }
+ }
+ }
+
+ return null
+ }
+
+ /**
+ * Loads rate limits data for the specified environment
+ */
+ private loadRateLimitsData(environment: Environment): RateLimitsData {
+ return environment === "mainnet"
+ ? (rateLimitsMainnet as unknown as RateLimitsData)
+ : (rateLimitsTestnet as unknown as RateLimitsData)
+ }
+
+ /**
+ * Builds lane details with rate limits included in supportedTokens
+ */
+ private buildLaneDetailsWithRateLimits(
+ sourceChain: ChainInfoInternal,
+ destChain: ChainInfoInternal,
+ laneConfig: LaneConfig,
+ sourceInternalId: string,
+ destinationInternalId: string,
+ environment: Environment
+ ): LaneDetailWithRateLimits {
+ // Convert internal chain info to public interface
+ const publicSourceChain: ChainInfo = {
+ chainId: sourceChain.chainId,
+ displayName: sourceChain.displayName,
+ selector: sourceChain.selector,
+ internalId: sourceChain.internalId,
+ }
+
+ const publicDestChain: ChainInfo = {
+ chainId: destChain.chainId,
+ displayName: destChain.displayName,
+ selector: destChain.selector,
+ internalId: destChain.internalId,
+ }
+
+ // Extract supported token symbols
+ const tokenSymbols = this.extractSupportedTokens(laneConfig)
+
+ // Load rate limits data
+ const rateLimitsData = this.loadRateLimitsData(environment)
+
+ // Build supportedTokens with rate limits
+ const supportedTokensWithRateLimits: Record = {}
+
+ for (const tokenSymbol of tokenSymbols) {
+ const tokenData = rateLimitsData[tokenSymbol]
+ if (tokenData) {
+ const sourceData = tokenData[sourceInternalId]
+ if (sourceData?.remote) {
+ const destData = sourceData.remote[destinationInternalId]
+ if (destData) {
+ supportedTokensWithRateLimits[tokenSymbol] = {
+ standard: destData.standard,
+ custom: destData.custom,
+ }
+ } else {
+ // Token exists but no rate limits for this lane - use null for unavailable
+ supportedTokensWithRateLimits[tokenSymbol] = {
+ standard: null,
+ custom: null,
+ }
+ }
+ } else {
+ // Token exists but no data for source chain
+ supportedTokensWithRateLimits[tokenSymbol] = {
+ standard: null,
+ custom: null,
+ }
+ }
+ } else {
+ // Token not found in rate limits data
+ supportedTokensWithRateLimits[tokenSymbol] = {
+ standard: null,
+ custom: null,
+ }
+ }
+ }
+
+ return {
+ sourceChain: publicSourceChain,
+ destinationChain: publicDestChain,
+ onRamp: {
+ address: laneConfig.onRamp.address,
+ version: normalizeVersion(laneConfig.onRamp.version),
+ enforceOutOfOrder: laneConfig.onRamp.enforceOutOfOrder,
+ },
+ offRamp: {
+ address: laneConfig.offRamp.address,
+ version: normalizeVersion(laneConfig.offRamp.version),
+ },
+ supportedTokens: supportedTokensWithRateLimits,
+ }
+ }
+
+ /**
+ * Retrieves only supported tokens with rate limits for a specific lane
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param sourceIdentifier - Source chain identifier (chainId, selector, or internalId)
+ * @param destinationIdentifier - Destination chain identifier
+ * @param inputKeyType - Type of identifier used (chainId, selector, internalId)
+ * @returns Supported tokens with rate limits or null if lane not found
+ */
+ async getSupportedTokensWithRateLimits(
+ environment: Environment,
+ sourceIdentifier: string,
+ destinationIdentifier: string,
+ inputKeyType: LaneInputKeyType
+ ): Promise {
+ logger.info({
+ message: "Getting supported tokens with rate limits",
+ requestId: this.requestId,
+ environment,
+ sourceIdentifier,
+ destinationIdentifier,
+ inputKeyType,
+ })
+
+ try {
+ // Load reference data
+ const { lanesReferenceData, chainsReferenceData } = loadReferenceData({
+ environment,
+ version: Version.V1_2_0,
+ })
+
+ // Resolve identifiers to internal IDs
+ const sourceInternalId = this.resolveToInternalId(
+ sourceIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+ const destinationInternalId = this.resolveToInternalId(
+ destinationIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+
+ if (!sourceInternalId || !destinationInternalId) {
+ logger.warn({
+ message: "Could not resolve chain identifiers",
+ requestId: this.requestId,
+ sourceIdentifier,
+ destinationIdentifier,
+ })
+ return { data: null, tokenCount: 0 }
+ }
+
+ // Get lane data
+ const sourceLanes = lanesReferenceData[sourceInternalId] as Record | undefined
+ if (!sourceLanes) {
+ return { data: null, tokenCount: 0 }
+ }
+
+ const laneConfig = sourceLanes[destinationInternalId]
+ if (!laneConfig) {
+ return { data: null, tokenCount: 0 }
+ }
+
+ // Extract supported token symbols
+ const tokenSymbols = this.extractSupportedTokens(laneConfig)
+
+ // Load rate limits data
+ const rateLimitsData = this.loadRateLimitsData(environment)
+
+ // Build supportedTokens with rate limits
+ const supportedTokensWithRateLimits: Record = {}
+
+ for (const tokenSymbol of tokenSymbols) {
+ const tokenData = rateLimitsData[tokenSymbol]
+ if (tokenData) {
+ const sourceData = tokenData[sourceInternalId]
+ if (sourceData?.remote) {
+ const destData = sourceData.remote[destinationInternalId]
+ if (destData) {
+ supportedTokensWithRateLimits[tokenSymbol] = {
+ standard: destData.standard,
+ custom: destData.custom,
+ }
+ } else {
+ supportedTokensWithRateLimits[tokenSymbol] = { standard: null, custom: null }
+ }
+ } else {
+ supportedTokensWithRateLimits[tokenSymbol] = { standard: null, custom: null }
+ }
+ } else {
+ supportedTokensWithRateLimits[tokenSymbol] = { standard: null, custom: null }
+ }
+ }
+
+ const tokenCount = Object.keys(supportedTokensWithRateLimits).length
+
+ logger.info({
+ message: "Supported tokens with rate limits retrieved",
+ requestId: this.requestId,
+ sourceInternalId,
+ destinationInternalId,
+ tokenCount,
+ })
+
+ return { data: supportedTokensWithRateLimits, tokenCount }
+ } catch (error) {
+ logger.error({
+ message: "Failed to get supported tokens with rate limits",
+ requestId: this.requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ })
+ return { data: null, tokenCount: 0 }
+ }
+ }
}
diff --git a/src/lib/ccip/services/rate-limits-data.ts b/src/lib/ccip/services/rate-limits-data.ts
new file mode 100644
index 00000000000..cce168ac68e
--- /dev/null
+++ b/src/lib/ccip/services/rate-limits-data.ts
@@ -0,0 +1,352 @@
+import {
+ Environment,
+ RateLimitsFilterType,
+ RateLimitsServiceResponse,
+ RateLimitsData,
+ TokenRateLimits,
+ RateLimiterConfig,
+ RateLimiterEntry,
+ RateLimiterDirections,
+ isRateLimiterUnavailable,
+ LaneRateLimitsFilterType,
+ LaneInputKeyType,
+} from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "./lane-data.ts"
+import { loadReferenceData, Version } from "@config/data/ccip/index.ts"
+import type { ChainConfig } from "@config/data/ccip/types.ts"
+import { logger } from "@lib/logging/index.js"
+
+// Import the mock data files
+import rateLimitsMainnet from "~/__mocks__/rate-limits-mainnet.json" with { type: "json" }
+import rateLimitsTestnet from "~/__mocks__/rate-limits-testnet.json" with { type: "json" }
+
+export const prerender = false
+
+/**
+ * Service class for handling CCIP rate limits data operations
+ * Provides functionality to filter and retrieve rate limiter configurations
+ */
+export class RateLimitsDataService {
+ private readonly requestId: string
+
+ /**
+ * Creates a new instance of RateLimitsDataService
+ */
+ constructor() {
+ this.requestId = crypto.randomUUID()
+
+ logger.debug({
+ message: "RateLimitsDataService initialized",
+ requestId: this.requestId,
+ })
+ }
+
+ /**
+ * Retrieves rate limits data for a specific lane, optionally filtered by tokens, direction, and rate type
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param filters - Filter parameters including source/destination chains, tokens, direction, and rate type
+ * @returns Filtered rate limits data with metadata
+ */
+ async getFilteredRateLimits(
+ environment: Environment,
+ filters: RateLimitsFilterType
+ ): Promise {
+ logger.debug({
+ message: "Processing rate limits request",
+ requestId: this.requestId,
+ environment,
+ filters,
+ })
+
+ try {
+ // Load the appropriate rate limits data based on environment
+ const rateLimitsData = this.loadRateLimitsData(environment)
+
+ // Extract rate limits for the specified lane
+ const result = this.extractLaneRateLimits(rateLimitsData, filters)
+
+ const tokenCount = Object.keys(result).length
+
+ logger.info({
+ message: "Rate limits data retrieved successfully",
+ requestId: this.requestId,
+ tokenCount,
+ sourceChain: filters.sourceInternalId,
+ destinationChain: filters.destinationInternalId,
+ })
+
+ return {
+ data: result,
+ metadata: {
+ tokenCount,
+ },
+ }
+ } catch (error) {
+ logger.error({
+ message: "Failed to process rate limits data",
+ requestId: this.requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ })
+
+ throw error
+ }
+ }
+
+ /**
+ * Loads rate limits data for the specified environment
+ */
+ private loadRateLimitsData(environment: Environment): RateLimitsData {
+ logger.debug({
+ message: "Loading rate limits data",
+ requestId: this.requestId,
+ environment,
+ })
+
+ if (environment === Environment.Mainnet) {
+ return rateLimitsMainnet as RateLimitsData
+ }
+ return rateLimitsTestnet as RateLimitsData
+ }
+
+ /**
+ * Extracts rate limits for a specific lane from the token-centric data structure
+ *
+ * @param rateLimitsData - Full rate limits data (token -> source -> { minBlockConfirmation?, remote: { dest -> ... } })
+ * @param filters - Filter parameters
+ * @returns Token-centric rate limits for the specified lane
+ */
+ private extractLaneRateLimits(
+ rateLimitsData: RateLimitsData,
+ filters: RateLimitsFilterType
+ ): Record {
+ const { sourceInternalId, destinationInternalId, tokens, direction, rateType } = filters
+ const result: Record = {}
+
+ // Parse token filter if provided
+ const tokenFilter = tokens
+ ? tokens
+ .split(",")
+ .map((t) => t.trim())
+ .filter((t) => t.length > 0)
+ : null
+
+ // Iterate through all tokens in the data
+ for (const [tokenSymbol, sourceChains] of Object.entries(rateLimitsData)) {
+ // Skip if token filter is provided and this token is not in the filter
+ if (tokenFilter && !tokenFilter.includes(tokenSymbol)) {
+ continue
+ }
+
+ // Check if this token has data for the requested source chain
+ const sourceChainData = sourceChains[sourceInternalId]
+ if (!sourceChainData) {
+ continue
+ }
+
+ // Check if destination exists in remote
+ const laneRateLimits = sourceChainData.remote[destinationInternalId]
+ if (!laneRateLimits) {
+ continue
+ }
+
+ // Apply filters for direction and rate type
+ const filteredLimits = this.applyFilters(laneRateLimits, direction, rateType)
+
+ if (filteredLimits) {
+ result[tokenSymbol] = filteredLimits
+ }
+ }
+
+ logger.debug({
+ message: "Lane rate limits extracted",
+ requestId: this.requestId,
+ sourceChain: sourceInternalId,
+ destinationChain: destinationInternalId,
+ tokenCount: Object.keys(result).length,
+ filteredTokens: tokenFilter,
+ direction,
+ rateType,
+ })
+
+ return result
+ }
+
+ /**
+ * Applies direction and rate type filters to rate limits
+ *
+ * @param rateLimits - Original rate limits with standard and custom entries
+ * @param direction - Optional direction filter ("in" or "out")
+ * @param rateType - Optional rate type filter ("standard" or "custom")
+ * @returns Filtered rate limits or null if no data matches
+ */
+ private applyFilters(
+ rateLimits: TokenRateLimits,
+ direction?: "in" | "out",
+ rateType?: "standard" | "custom"
+ ): TokenRateLimits | null {
+ // Apply direction filter to both standard and custom entries
+ const filteredStandard = this.applyDirectionFilter(rateLimits.standard, direction)
+ const filteredCustom = this.applyDirectionFilter(rateLimits.custom, direction)
+
+ // If rate type filter is specified, return only that type
+ if (rateType === "standard") {
+ if (!filteredStandard) {
+ return null
+ }
+ return {
+ standard: filteredStandard,
+ custom: null, // Indicate custom was filtered out
+ }
+ }
+
+ if (rateType === "custom") {
+ if (!filteredCustom) {
+ return null
+ }
+ return {
+ standard: null, // Indicate standard was filtered out
+ custom: filteredCustom,
+ }
+ }
+
+ // No rate type filter, return both (if either has data)
+ if (!filteredStandard && !filteredCustom) {
+ return null
+ }
+
+ return {
+ standard: filteredStandard ?? null,
+ custom: filteredCustom ?? null,
+ }
+ }
+
+ /**
+ * Applies direction filter to a rate limiter entry
+ *
+ * @param entry - Rate limiter entry (directions or unavailable)
+ * @param direction - Optional direction filter ("in" or "out")
+ * @returns Filtered entry or null if no data matches
+ */
+ private applyDirectionFilter(entry: RateLimiterEntry, direction?: "in" | "out"): RateLimiterEntry | null {
+ // If entry is unavailable, return it as-is
+ if (isRateLimiterUnavailable(entry)) {
+ return entry
+ }
+
+ // If no direction filter, return the full entry
+ if (!direction) {
+ return entry
+ }
+
+ // Filter to specific direction
+ const directionsEntry = entry as RateLimiterDirections
+ const filteredConfig = directionsEntry[direction]
+ if (!filteredConfig) {
+ return null
+ }
+
+ // Return only the requested direction
+ return {
+ [direction]: filteredConfig,
+ } as RateLimiterDirections
+ }
+
+ /**
+ * Validates that a rate limiter config exists and has valid structure
+ */
+ private isValidRateLimiterConfig(config: unknown): config is RateLimiterConfig {
+ if (!config || typeof config !== "object") {
+ return false
+ }
+
+ const c = config as Record
+ return typeof c.capacity === "string" && typeof c.isEnabled === "boolean" && typeof c.rate === "string"
+ }
+
+ /**
+ * Gets the request ID for this service instance
+ */
+ getRequestId(): string {
+ return this.requestId
+ }
+
+ /**
+ * Retrieves rate limits for a specific lane using path parameters
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param sourceIdentifier - Source chain identifier
+ * @param destinationIdentifier - Destination chain identifier
+ * @param inputKeyType - Type of chain identifier (chainId, selector, internalId)
+ * @param filters - Optional filters for tokens, direction, rate type
+ * @returns Rate limits data with metadata
+ */
+ async getLaneRateLimits(
+ environment: Environment,
+ sourceIdentifier: string,
+ destinationIdentifier: string,
+ inputKeyType: LaneInputKeyType,
+ filters: LaneRateLimitsFilterType = {}
+ ): Promise {
+ logger.info({
+ message: "Processing lane rate limits request",
+ requestId: this.requestId,
+ environment,
+ sourceIdentifier,
+ destinationIdentifier,
+ inputKeyType,
+ filters,
+ })
+
+ try {
+ // Resolve chain identifiers to internal IDs
+ const { chainsReferenceData } = loadReferenceData({
+ environment,
+ version: Version.V1_2_0,
+ })
+
+ const laneDataService = new LaneDataService()
+ const sourceInternalId = laneDataService.resolveToInternalId(
+ sourceIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+ const destinationInternalId = laneDataService.resolveToInternalId(
+ destinationIdentifier,
+ inputKeyType,
+ chainsReferenceData as Record
+ )
+
+ if (!sourceInternalId || !destinationInternalId) {
+ logger.warn({
+ message: "Could not resolve chain identifiers for rate limits",
+ requestId: this.requestId,
+ sourceIdentifier,
+ destinationIdentifier,
+ })
+ return {
+ data: {},
+ metadata: { tokenCount: 0 },
+ }
+ }
+
+ // Use existing filter-based method with resolved internal IDs
+ const fullFilters: RateLimitsFilterType = {
+ sourceInternalId,
+ destinationInternalId,
+ tokens: filters.tokens,
+ direction: filters.direction,
+ rateType: filters.rateType,
+ }
+
+ return this.getFilteredRateLimits(environment, fullFilters)
+ } catch (error) {
+ logger.error({
+ message: "Failed to get lane rate limits",
+ requestId: this.requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ })
+ throw error
+ }
+ }
+}
diff --git a/src/lib/ccip/services/token-data.ts b/src/lib/ccip/services/token-data.ts
index ed76fc93c2b..23f850bb1db 100644
--- a/src/lib/ccip/services/token-data.ts
+++ b/src/lib/ccip/services/token-data.ts
@@ -6,6 +6,13 @@ import {
TokenChainData,
TokenDataResponse,
TokenServiceResponse,
+ TokenDetailChainData,
+ TokenDetailDataResponse,
+ TokenDetailServiceResponse,
+ TokenFinalityData,
+ TokenFinalityDataResponse,
+ TokenFinalityServiceResponse,
+ RateLimitsData,
} from "~/lib/ccip/types/index.ts"
import { Version } from "@config/data/ccip/types.ts"
import { SupportedChain } from "@config/index.ts"
@@ -15,6 +22,10 @@ import { logger } from "@lib/logging/index.js"
import { getChainId, getChainTypeAndFamily, getTitle } from "../../../features/utils/index.ts"
import { getSelectorEntry } from "@config/data/ccip/selectors.ts"
+// Import rate limits mock data for custom finality info
+import rateLimitsMainnet from "~/__mocks__/rate-limits-mainnet.json" with { type: "json" }
+import rateLimitsTestnet from "~/__mocks__/rate-limits-testnet.json" with { type: "json" }
+
export const prerender = false
/**
@@ -99,11 +110,11 @@ export class TokenDataService {
Object.entries(tokenData).forEach(([chainId, chainData]) => {
try {
- // Only process chains where poolAddress exists
- if (!chainData.poolAddress) {
+ // Only process chains where pool.address exists
+ if (!chainData.pool?.address) {
this.skippedTokensCount++
logger.warn({
- message: "Chain missing poolAddress - skipping only this chain",
+ message: "Chain missing pool.address - skipping only this chain",
requestId: this.requestId,
tokenCanonicalId,
chainId,
@@ -138,12 +149,12 @@ export class TokenDataService {
if (!destNumericChainId) return destChainId
- if (outputKey === "chainId") {
+ if (outputKey === "chain_id") {
return generateChainKey(destNumericChainId, destChainType, outputKey)
} else if (outputKey === "selector") {
const selectorEntry = getSelectorEntry(destNumericChainId, destChainType)
return selectorEntry?.selector || destChainId
- } else if (outputKey === "internalId") {
+ } else if (outputKey === "internal_id") {
const selectorEntry = getSelectorEntry(destNumericChainId, destChainType)
return selectorEntry?.name || destChainId
}
@@ -153,14 +164,14 @@ export class TokenDataService {
// Get the appropriate key based on outputKey parameter
let chainKey = chainId
- if (outputKey === "chainId") {
+ if (outputKey === "chain_id") {
chainKey = generateChainKey(numericChainId, chainType, outputKey)
} else if (outputKey === "selector") {
const selectorEntry = getSelectorEntry(numericChainId, chainType)
if (selectorEntry) {
chainKey = selectorEntry.selector
}
- } else if (outputKey === "internalId") {
+ } else if (outputKey === "internal_id") {
const selectorEntry = getSelectorEntry(numericChainId, chainType)
if (selectorEntry) {
chainKey = selectorEntry.name
@@ -176,8 +187,12 @@ export class TokenDataService {
decimals: chainData.decimals,
destinations,
name: chainData.name || "",
- poolAddress: chainData.poolAddress,
- poolType: chainData.poolType,
+ pool: {
+ address: chainData.pool.address || "",
+ rawType: chainData.pool.rawType,
+ type: chainData.pool.type,
+ version: chainData.pool.version,
+ },
symbol: chainData.symbol,
tokenAddress: chainData.tokenAddress,
},
@@ -261,7 +276,7 @@ export class TokenDataService {
public async getFilteredTokens(
environment: Environment,
filters: TokenFilterType,
- outputKey: OutputKeyType = "chainId"
+ outputKey: OutputKeyType = "chain_id"
): Promise {
logger.info({
message: "Starting token filtering process",
@@ -361,4 +376,224 @@ export class TokenDataService {
metadata,
}
}
+
+ /**
+ * Retrieves detailed token information for a specific token, including custom finality data
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param tokenCanonicalSymbol - Canonical symbol for the token
+ * @param outputKey - Format to use for displaying chain information
+ * @returns Token details with custom finality information for each chain
+ */
+ public async getTokenWithFinality(
+ environment: Environment,
+ tokenCanonicalSymbol: string,
+ outputKey: OutputKeyType = "chain_id"
+ ): Promise {
+ logger.info({
+ message: "Getting token with finality data",
+ requestId: this.requestId,
+ environment,
+ tokenCanonicalSymbol,
+ outputKey,
+ })
+
+ // Get base token data using existing method
+ const tokenData = await this.processTokenData(environment, tokenCanonicalSymbol, outputKey)
+
+ if (!tokenData) {
+ logger.warn({
+ message: "Token not found",
+ requestId: this.requestId,
+ tokenCanonicalSymbol,
+ })
+ return null
+ }
+
+ // Load rate limits data for finality info
+ const rateLimitsData = this.loadRateLimitsData(environment)
+
+ // Get token's rate limits by internal ID
+ const tokenRateLimits = rateLimitsData[tokenCanonicalSymbol]
+
+ // Merge token data with custom finality information
+ const result: TokenDetailDataResponse = {}
+
+ for (const [chainKey, chainData] of Object.entries(tokenData)) {
+ // Look up minBlockConfirmation using internal ID
+ // We need to map the chainKey back to internal ID for rate limits lookup
+ const internalId = this.getInternalIdFromChainKey(chainData.chainId, chainData.chainName, outputKey)
+
+ let minBlockConfirmation: number | null = null
+ let hasCustomFinality: boolean | null = null
+
+ if (tokenRateLimits && internalId && tokenRateLimits[internalId]) {
+ minBlockConfirmation = tokenRateLimits[internalId].minBlockConfirmation
+
+ // Derive hasCustomFinality from minBlockConfirmation
+ if (minBlockConfirmation === null) {
+ hasCustomFinality = null // Unavailable
+ } else if (minBlockConfirmation > 0) {
+ hasCustomFinality = true
+ } else {
+ hasCustomFinality = false
+ }
+ }
+
+ const detailChainData: TokenDetailChainData = {
+ ...chainData,
+ hasCustomFinality,
+ minBlockConfirmation,
+ }
+
+ result[chainKey] = detailChainData
+ }
+
+ logger.info({
+ message: "Token with finality data retrieved",
+ requestId: this.requestId,
+ tokenCanonicalSymbol,
+ chainCount: Object.keys(result).length,
+ })
+
+ return {
+ data: result,
+ metadata: {
+ chainCount: Object.keys(result).length,
+ },
+ }
+ }
+
+ /**
+ * Loads rate limits data for the specified environment
+ */
+ private loadRateLimitsData(environment: Environment): RateLimitsData {
+ if (environment === Environment.Mainnet) {
+ return rateLimitsMainnet as RateLimitsData
+ }
+ return rateLimitsTestnet as RateLimitsData
+ }
+
+ /**
+ * Gets the internal ID for a chain based on chainId/chainName
+ * This is needed to look up rate limits data which uses internal IDs as keys
+ */
+ private getInternalIdFromChainKey(
+ chainId: number | string,
+ chainName: string,
+ outputKey: OutputKeyType
+ ): string | null {
+ try {
+ // If outputKey is internalId, the chainName might already be the internal ID
+ // We need to look up the selector entry by chainId
+ const numericChainId = typeof chainId === "string" ? parseInt(chainId, 10) : chainId
+
+ if (isNaN(numericChainId)) {
+ // chainId is not numeric, might be a non-EVM chain identifier
+ // Try to find by name pattern
+ return null
+ }
+
+ // Get selector entry which has the internal name
+ const selectorEntry = getSelectorEntry(numericChainId, "evm")
+ if (selectorEntry) {
+ return selectorEntry.name
+ }
+
+ return null
+ } catch {
+ logger.debug({
+ message: "Could not resolve internal ID for chain",
+ requestId: this.requestId,
+ chainId,
+ chainName,
+ })
+ return null
+ }
+ }
+
+ /**
+ * Retrieves only finality data for a specific token (lightweight endpoint)
+ *
+ * @param environment - Network environment (mainnet/testnet)
+ * @param tokenCanonicalSymbol - Canonical symbol for the token
+ * @param outputKey - Format to use for displaying chain information
+ * @returns Finality information (hasCustomFinality, minBlockConfirmation) for each chain
+ */
+ public async getTokenFinality(
+ environment: Environment,
+ tokenCanonicalSymbol: string,
+ outputKey: OutputKeyType = "chain_id"
+ ): Promise {
+ logger.info({
+ message: "Getting token finality data",
+ requestId: this.requestId,
+ environment,
+ tokenCanonicalSymbol,
+ outputKey,
+ })
+
+ // Get base token data to know which chains the token exists on
+ const tokenData = await this.processTokenData(environment, tokenCanonicalSymbol, outputKey)
+
+ if (!tokenData) {
+ logger.warn({
+ message: "Token not found",
+ requestId: this.requestId,
+ tokenCanonicalSymbol,
+ })
+ return null
+ }
+
+ // Load rate limits data for finality info
+ const rateLimitsData = this.loadRateLimitsData(environment)
+
+ // Get token's rate limits by internal ID
+ const tokenRateLimits = rateLimitsData[tokenCanonicalSymbol]
+
+ // Extract only finality data for each chain
+ const result: TokenFinalityDataResponse = {}
+
+ for (const [chainKey, chainData] of Object.entries(tokenData)) {
+ // Look up minBlockConfirmation using internal ID
+ const internalId = this.getInternalIdFromChainKey(chainData.chainId, chainData.chainName, outputKey)
+
+ let minBlockConfirmation: number | null = null
+ let hasCustomFinality: boolean | null = null
+
+ if (tokenRateLimits && internalId && tokenRateLimits[internalId]) {
+ minBlockConfirmation = tokenRateLimits[internalId].minBlockConfirmation
+
+ // Derive hasCustomFinality from minBlockConfirmation
+ if (minBlockConfirmation === null) {
+ hasCustomFinality = null // Unavailable
+ } else if (minBlockConfirmation > 0) {
+ hasCustomFinality = true
+ } else {
+ hasCustomFinality = false
+ }
+ }
+
+ const finalityData: TokenFinalityData = {
+ hasCustomFinality,
+ minBlockConfirmation,
+ }
+
+ result[chainKey] = finalityData
+ }
+
+ logger.info({
+ message: "Token finality data retrieved",
+ requestId: this.requestId,
+ tokenCanonicalSymbol,
+ chainCount: Object.keys(result).length,
+ })
+
+ return {
+ data: result,
+ metadata: {
+ chainCount: Object.keys(result).length,
+ },
+ }
+ }
}
diff --git a/src/lib/ccip/types/index.ts b/src/lib/ccip/types/index.ts
index f2a74d933ff..30232fed61d 100644
--- a/src/lib/ccip/types/index.ts
+++ b/src/lib/ccip/types/index.ts
@@ -64,7 +64,7 @@ export type ChainApiResponse = {
}[]
}
-export type OutputKeyType = "chainId" | "selector" | "internalId"
+export type OutputKeyType = "chain_id" | "selector" | "internal_id"
export type ChainApiError = {
error: string
@@ -102,14 +102,20 @@ export type TokenMetadata = {
validTokenCount: number
}
+export type TokenPool = {
+ address: string
+ rawType: string
+ type: string
+ version: string
+}
+
export type TokenChainData = {
chainId: number | string
chainName: string
decimals: number
destinations: string[]
name: string
- poolAddress: string
- poolType: string
+ pool: TokenPool
symbol: string
tokenAddress: string
}
@@ -140,6 +146,91 @@ export interface TokenFilterType {
chain_id?: string
}
+// Token Detail API Types (for /tokens/{tokenCanonicalSymbol} endpoint)
+
+/**
+ * Extended token chain data with custom finality information
+ */
+export interface TokenDetailChainData extends TokenChainData {
+ /** Whether custom finality is enabled (derived from minBlockConfirmation > 0) */
+ hasCustomFinality: boolean | null
+ /** Minimum block confirmations required, null if unavailable */
+ minBlockConfirmation: number | null
+}
+
+/**
+ * Token detail response data structure
+ */
+export type TokenDetailDataResponse = {
+ [chainKey: string]: TokenDetailChainData
+}
+
+/**
+ * Metadata for token detail API responses
+ */
+export interface TokenDetailMetadata {
+ environment: Environment
+ timestamp: string
+ requestId: string
+ tokenSymbol: string
+ chainCount: number
+}
+
+/**
+ * Token detail API response format
+ */
+export interface TokenDetailApiResponse {
+ metadata: TokenDetailMetadata
+ data: TokenDetailDataResponse
+}
+
+/**
+ * Token detail service response (internal)
+ */
+export interface TokenDetailServiceResponse {
+ data: TokenDetailDataResponse
+ metadata: {
+ chainCount: number
+ }
+}
+
+// Token Finality API Types (for /tokens/{tokenCanonicalSymbol}/finality endpoint)
+
+/**
+ * Finality data for a token on a specific chain
+ */
+export interface TokenFinalityData {
+ /** Whether custom finality is enabled (derived from minBlockConfirmation > 0) */
+ hasCustomFinality: boolean | null
+ /** Minimum block confirmations required, null if unavailable */
+ minBlockConfirmation: number | null
+}
+
+/**
+ * Token finality response data structure
+ */
+export type TokenFinalityDataResponse = {
+ [chainKey: string]: TokenFinalityData
+}
+
+/**
+ * Token finality API response format
+ */
+export interface TokenFinalityApiResponse {
+ metadata: TokenDetailMetadata
+ data: TokenFinalityDataResponse
+}
+
+/**
+ * Token finality service response (internal)
+ */
+export interface TokenFinalityServiceResponse {
+ data: TokenFinalityDataResponse
+ metadata: {
+ chainCount: number
+ }
+}
+
// Lane Data API Types
export type LaneConfigError = {
@@ -217,6 +308,202 @@ export interface LaneFilterType {
version?: string
}
+// Lane Detail API Types (for /lanes/by-{type}/{source}/{destination} endpoints)
+
+/**
+ * Input key type for lane path parameters
+ */
+export type LaneInputKeyType = "chain_id" | "selector" | "internal_id"
+
+/**
+ * Metadata for single lane detail API responses
+ */
+export interface LaneDetailMetadata {
+ environment: Environment
+ timestamp: string
+ requestId: string
+ sourceChain: string
+ destinationChain: string
+}
+
+// Rate Limits API Types
+
+/**
+ * Rate limiter configuration for a single direction (in or out)
+ */
+export interface RateLimiterConfig {
+ capacity: string
+ isEnabled: boolean
+ rate: string
+}
+
+/**
+ * Rate limiter directions (in and/or out)
+ */
+export interface RateLimiterDirections {
+ in?: RateLimiterConfig
+ out?: RateLimiterConfig
+}
+
+/**
+ * Rate limiter entry can be directions data or null (unavailable)
+ */
+export type RateLimiterEntry = RateLimiterDirections | null
+
+/**
+ * Rate limits for a single token on a lane with both standard and custom (FTF) limits
+ */
+export interface TokenRateLimits {
+ standard: RateLimiterEntry
+ custom: RateLimiterEntry
+}
+
+/**
+ * Lane details with rate limits included in supportedTokens
+ * Used for single lane detail endpoints that merge rate limits
+ */
+export interface LaneDetailWithRateLimits {
+ sourceChain: ChainInfo
+ destinationChain: ChainInfo
+ onRamp: {
+ address: string
+ version: string
+ enforceOutOfOrder?: boolean
+ }
+ offRamp: {
+ address: string
+ version: string
+ }
+ supportedTokens: Record
+}
+
+/**
+ * Single lane detail API response format (with rate limits)
+ */
+export interface LaneDetailApiResponse {
+ metadata: LaneDetailMetadata
+ data: LaneDetailWithRateLimits
+}
+
+/**
+ * Lane detail service response (internal)
+ */
+export interface LaneDetailServiceResponse {
+ data: LaneDetailWithRateLimits | null
+}
+
+// Supported Tokens API Types (for /lanes/by-{type}/{source}/{destination}/supported-tokens endpoints)
+
+/**
+ * Metadata for supported tokens API responses
+ */
+export interface SupportedTokensMetadata {
+ environment: Environment
+ timestamp: string
+ requestId: string
+ sourceChain: string
+ destinationChain: string
+ tokenCount: number
+}
+
+/**
+ * Supported tokens API response format
+ */
+export interface SupportedTokensApiResponse {
+ metadata: SupportedTokensMetadata
+ data: Record
+}
+
+/**
+ * Supported tokens service response (internal)
+ */
+export interface SupportedTokensServiceResponse {
+ data: Record | null
+ tokenCount: number
+}
+
+/**
+ * Type guard to check if a RateLimiterEntry is unavailable (null)
+ */
+export function isRateLimiterUnavailable(entry: RateLimiterEntry): entry is null {
+ return entry === null
+}
+
+/**
+ * Metadata for rate limits API responses
+ */
+export interface RateLimitsMetadata {
+ environment: Environment
+ timestamp: string
+ requestId: string
+ sourceChain: string
+ destinationChain: string
+ tokenCount: number
+}
+
+/**
+ * Filter parameters for rate limits queries (query-based - deprecated)
+ */
+export interface RateLimitsFilterType {
+ sourceInternalId: string
+ destinationInternalId: string
+ tokens?: string
+ direction?: "in" | "out"
+ rateType?: "standard" | "custom"
+}
+
+/**
+ * Filter parameters for lane rate limits queries (path-based)
+ * Source and destination come from URL path parameters
+ */
+export interface LaneRateLimitsFilterType {
+ tokens?: string
+ direction?: "in" | "out"
+ rateType?: "standard" | "custom"
+}
+
+/**
+ * Direction type for rate limits
+ */
+export type RateLimitsDirection = "in" | "out"
+
+/**
+ * Rate type for rate limits (standard or custom/FTF)
+ */
+export type RateLimitsType = "standard" | "custom"
+
+/**
+ * Source chain rate limits data with minBlockConfirmation and remote destinations
+ */
+export interface SourceChainRateLimitsData {
+ minBlockConfirmation: number | null
+ remote: Record
+}
+
+/**
+ * Rate limits data structure in the mock JSON files
+ * Token -> SourceChain -> { minBlockConfirmation?, remote: { DestChain -> { standard, custom } } }
+ */
+export type RateLimitsData = Record>
+
+/**
+ * Rate limits API response format
+ */
+export interface RateLimitsApiResponse {
+ metadata: RateLimitsMetadata
+ data: Record
+}
+
+/**
+ * Rate limits service response (internal)
+ */
+export interface RateLimitsServiceResponse {
+ data: Record
+ metadata: {
+ tokenCount: number
+ }
+}
+
// Faucet API Types
export type {
FaucetChainConfig,
diff --git a/src/lib/ccip/utils.ts b/src/lib/ccip/utils.ts
index 4496319a028..de1326f5ed0 100644
--- a/src/lib/ccip/utils.ts
+++ b/src/lib/ccip/utils.ts
@@ -4,8 +4,16 @@ import { ChainsConfig, Environment, loadReferenceData, Version } from "@config/d
import { SupportedChain } from "@config/index.ts"
import { directoryToSupportedChain } from "@features/utils/index.ts"
import { v4 as uuidv4 } from "uuid"
-import type { TokenMetadata, ChainType, OutputKeyType } from "./types/index.ts"
-import { jsonHeaders, commonHeaders as sharedCommonHeaders } from "@lib/api/cacheHeaders.js"
+import type {
+ TokenMetadata,
+ ChainType,
+ OutputKeyType,
+ RateLimitsMetadata,
+ RateLimitsFilterType,
+ RateLimitsDirection,
+ RateLimitsType,
+} from "./types/index.ts"
+import { commonHeaders } from "@lib/api/cacheHeaders.ts"
export const prerender = false
@@ -14,18 +22,6 @@ export type { ChainsConfig, Version }
export { Environment }
export type { SelectorsConfig } from "@config/data/ccip/selectors.ts"
-/**
- * Common HTTP headers used across all API responses
- * @deprecated Use sharedCommonHeaders from @lib/api/cacheHeaders.js instead
- */
-export const commonHeaders = sharedCommonHeaders
-
-/**
- * Extended headers for successful responses with caching directives
- * @deprecated Use jsonHeaders from @lib/api/cacheHeaders.js instead
- */
-export const successHeaders = jsonHeaders
-
/**
* Custom error class for CCIP-specific errors
*/
@@ -220,6 +216,90 @@ export const createTokenMetadata = (environment: Environment): TokenMetadata =>
}
}
+/**
+ * Creates rate-limits-specific metadata object
+ * @param environment - Current network environment
+ * @param sourceChain - Source chain internal ID
+ * @param destinationChain - Destination chain internal ID
+ * @param tokenCount - Number of tokens in the response
+ * @returns Metadata object for rate limits API response
+ */
+export const createRateLimitsMetadata = (
+ environment: Environment,
+ sourceChain: string,
+ destinationChain: string,
+ tokenCount: number
+): RateLimitsMetadata => {
+ return {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId: crypto.randomUUID(),
+ sourceChain,
+ destinationChain,
+ tokenCount,
+ }
+}
+
+/**
+ * Validates rate limits filter parameters
+ * @param filters - Filter parameters to validate
+ * @throws CCIPError if required parameters are missing or invalid
+ */
+export const validateRateLimitsFilters = (filters: {
+ sourceInternalId?: string
+ destinationInternalId?: string
+ tokens?: string
+ direction?: string
+ rateType?: string
+}): RateLimitsFilterType => {
+ // Validate required parameters
+ if (!filters.sourceInternalId) {
+ throw new CCIPError(400, "source_internal_id parameter is required")
+ }
+ if (!filters.destinationInternalId) {
+ throw new CCIPError(400, "destination_internal_id parameter is required")
+ }
+
+ // Validate direction if provided
+ let direction: RateLimitsDirection | undefined
+ if (filters.direction) {
+ const normalizedDirection = filters.direction.toLowerCase()
+ if (!["in", "out"].includes(normalizedDirection)) {
+ throw new CCIPError(400, 'direction parameter must be "in" or "out"')
+ }
+ direction = normalizedDirection as RateLimitsDirection
+ }
+
+ // Validate rate_type if provided
+ let rateType: RateLimitsType | undefined
+ if (filters.rateType) {
+ const normalizedRateType = filters.rateType.toLowerCase()
+ if (!["standard", "custom"].includes(normalizedRateType)) {
+ throw new CCIPError(400, 'rate_type parameter must be "standard" or "custom"')
+ }
+ rateType = normalizedRateType as RateLimitsType
+ }
+
+ // Validate tokens if provided (must not be empty after parsing)
+ if (filters.tokens !== undefined && filters.tokens !== null) {
+ const tokenList = filters.tokens
+ .split(",")
+ .map((t) => t.trim())
+ .filter((t) => t.length > 0)
+ if (filters.tokens.length > 0 && tokenList.length === 0) {
+ throw new CCIPError(400, "tokens parameter cannot be empty when provided")
+ }
+ }
+
+ return {
+ sourceInternalId: filters.sourceInternalId,
+ destinationInternalId: filters.destinationInternalId,
+ tokens: filters.tokens,
+ direction,
+ rateType,
+ }
+}
+
/**
* Validates the environment parameter
* @param environment - Environment string to validate
@@ -247,30 +327,30 @@ export const validateFilters = (filters: FilterType): void => {
}
/**
- * Validates and normalizes the outputKey parameter
+ * Validates and normalizes the output_key parameter
* @param outputKey - Output key to validate
* @returns Validated output key
* @throws CCIPError if output key is invalid
*/
-export const validateOutputKey = (outputKey?: string): "chainId" | "selector" | "internalId" => {
- if (!outputKey) return "chainId"
- if (!["chainId", "selector", "internalId"].includes(outputKey)) {
- throw new CCIPError(400, "outputKey must be one of: chainId, selector, or internalId")
+export const validateOutputKey = (outputKey?: string): "chain_id" | "selector" | "internal_id" => {
+ if (!outputKey) return "chain_id"
+ if (!["chain_id", "selector", "internal_id"].includes(outputKey)) {
+ throw new CCIPError(400, "output_key must be one of: chain_id, selector, or internal_id")
}
- return outputKey as "chainId" | "selector" | "internalId"
+ return outputKey as "chain_id" | "selector" | "internal_id"
}
/**
- * Validates the enrichFeeTokens parameter
+ * Validates the enrich_fee_tokens parameter
* @param enrichFeeTokens - String value to validate
* @returns Boolean indicating whether to enrich fee tokens with addresses and metadata
- * @throws CCIPError if enrichFeeTokens value is invalid
+ * @throws CCIPError if enrich_fee_tokens value is invalid
*/
export const validateEnrichFeeTokens = (enrichFeeTokens?: string): boolean => {
if (!enrichFeeTokens) return false
const normalizedValue = enrichFeeTokens.toLowerCase()
if (!["true", "false"].includes(normalizedValue)) {
- throw new CCIPError(400, 'enrichFeeTokens must be "true" or "false"')
+ throw new CCIPError(400, 'enrich_fee_tokens must be "true" or "false"')
}
return normalizedValue === "true"
}
@@ -278,7 +358,7 @@ export const validateEnrichFeeTokens = (enrichFeeTokens?: string): boolean => {
export const generateChainKey = (chainId: number | string, chainType: ChainType, outputKey: OutputKeyType): string => {
const chainIdStr = chainId.toString()
- if (outputKey === "chainId" && chainType !== "evm" && chainType !== "solana") {
+ if (outputKey === "chain_id" && chainType !== "evm" && chainType !== "solana") {
return `${chainType}-${chainIdStr}`
}
diff --git a/src/pages/api/ccip/v1/chains.ts b/src/pages/api/ccip/v1/chains.ts
index 5f733985065..98933605e8e 100644
--- a/src/pages/api/ccip/v1/chains.ts
+++ b/src/pages/api/ccip/v1/chains.ts
@@ -7,14 +7,13 @@ import {
generateChainKey,
createMetadata,
handleApiError,
- successHeaders,
- commonHeaders,
loadChainConfiguration,
FilterType,
APIErrorType,
createErrorResponse,
CCIPError,
} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import type { ChainDetails, ChainApiResponse } from "~/lib/ccip/types/index.ts"
@@ -45,7 +44,7 @@ export const GET: APIRoute = async ({ request }) => {
// Validate filters
const filters: FilterType = {
- chainId: params.get("chainId") || undefined,
+ chainId: params.get("chain_id") || undefined,
selector: params.get("selector") || undefined,
internalId: params.get("internalId") || undefined,
}
@@ -57,15 +56,15 @@ export const GET: APIRoute = async ({ request }) => {
})
// Validate output key
- const outputKey = validateOutputKey(params.get("outputKey") || undefined)
+ const outputKey = validateOutputKey(params.get("output_key") || undefined)
logger.debug({
message: "Output key validated",
requestId,
outputKey,
})
- // Validate enrichFeeTokens parameter
- const enrichFeeTokens = validateEnrichFeeTokens(params.get("enrichFeeTokens") || undefined)
+ // Validate enrich_fee_tokens parameter
+ const enrichFeeTokens = validateEnrichFeeTokens(params.get("enrich_fee_tokens") || undefined)
logger.debug({
message: "EnrichFeeTokens parameter validated",
requestId,
@@ -105,7 +104,7 @@ export const GET: APIRoute = async ({ request }) => {
acc[family] = chainList.reduce(
(familyAcc, chain) => {
const key =
- outputKey === "chainId"
+ outputKey === "chain_id"
? generateChainKey(chain.chainId, chain.chainType, outputKey)
: outputKey
? chain[outputKey].toString()
@@ -133,7 +132,7 @@ export const GET: APIRoute = async ({ request }) => {
})
return new Response(JSON.stringify(response), {
- headers: { ...commonHeaders, ...successHeaders },
+ headers: jsonHeaders,
})
} catch (error) {
logger.error({
diff --git a/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts b/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts
index 7cb73fe1999..c6d7405c9cb 100644
--- a/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts
+++ b/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts
@@ -1,5 +1,6 @@
import type { APIRoute } from "astro"
-import { APIErrorType, createErrorResponse, commonHeaders, CCIPError } from "~/lib/ccip/utils.ts"
+import { APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { commonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import { getFaucetConfig } from "@lib/core/config/index.ts"
import { FaucetService } from "~/lib/ccip/services/faucet-service.ts"
diff --git a/src/pages/api/ccip/v1/drips/[chainName]/execute.ts b/src/pages/api/ccip/v1/drips/[chainName]/execute.ts
index eed4c9a4724..23ef79769f7 100644
--- a/src/pages/api/ccip/v1/drips/[chainName]/execute.ts
+++ b/src/pages/api/ccip/v1/drips/[chainName]/execute.ts
@@ -1,5 +1,6 @@
import type { APIRoute } from "astro"
-import { APIErrorType, createErrorResponse, commonHeaders, CCIPError } from "~/lib/ccip/utils.ts"
+import { APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { commonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import { FaucetService } from "~/lib/ccip/services/faucet-service.ts"
import { SvmDripAdapter } from "~/lib/ccip/faucet/adapters/svm-drip.ts"
diff --git a/src/pages/api/ccip/v1/drips/[chainName]/index.ts b/src/pages/api/ccip/v1/drips/[chainName]/index.ts
index b56a1ce31ce..323a6466fad 100644
--- a/src/pages/api/ccip/v1/drips/[chainName]/index.ts
+++ b/src/pages/api/ccip/v1/drips/[chainName]/index.ts
@@ -1,5 +1,6 @@
import type { APIRoute } from "astro"
-import { APIErrorType, createErrorResponse, commonHeaders, CCIPError } from "~/lib/ccip/utils.ts"
+import { APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { commonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import { FaucetService } from "~/lib/ccip/services/faucet-service.ts"
diff --git a/src/pages/api/ccip/v1/lanes.ts b/src/pages/api/ccip/v1/lanes.ts
index aab2b95d7c3..64788866101 100644
--- a/src/pages/api/ccip/v1/lanes.ts
+++ b/src/pages/api/ccip/v1/lanes.ts
@@ -3,12 +3,11 @@ import {
validateEnvironment,
validateOutputKey,
handleApiError,
- successHeaders,
- commonHeaders,
APIErrorType,
createErrorResponse,
CCIPError,
} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import type { LaneFilterType, LaneApiResponse, LaneMetadata } from "~/lib/ccip/types/index.ts"
@@ -39,12 +38,12 @@ export const GET: APIRoute = async ({ request }) => {
// Get filters for lanes
const filters: LaneFilterType = {
- sourceChainId: params.get("sourceChainId") || undefined,
- destinationChainId: params.get("destinationChainId") || undefined,
- sourceSelector: params.get("sourceSelector") || undefined,
- destinationSelector: params.get("destinationSelector") || undefined,
- sourceInternalId: params.get("sourceInternalId") || undefined,
- destinationInternalId: params.get("destinationInternalId") || undefined,
+ sourceChainId: params.get("source_chain_id") || undefined,
+ destinationChainId: params.get("destination_chain_id") || undefined,
+ sourceSelector: params.get("source_selector") || undefined,
+ destinationSelector: params.get("destination_selector") || undefined,
+ sourceInternalId: params.get("source_internal_id") || undefined,
+ destinationInternalId: params.get("destination_internal_id") || undefined,
version: params.get("version") || undefined,
}
@@ -55,7 +54,7 @@ export const GET: APIRoute = async ({ request }) => {
})
// Validate output key
- const outputKey = validateOutputKey(params.get("outputKey") || undefined)
+ const outputKey = validateOutputKey(params.get("output_key") || undefined)
logger.debug({
message: "Output key validated",
requestId,
@@ -117,7 +116,7 @@ export const GET: APIRoute = async ({ request }) => {
})
return new Response(JSON.stringify(response), {
- headers: { ...commonHeaders, ...successHeaders },
+ headers: jsonHeaders,
})
} catch (error) {
logger.error({
diff --git a/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/index.ts b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/index.ts
new file mode 100644
index 00000000000..afbdf413edd
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/index.ts
@@ -0,0 +1,111 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { LaneDetailApiResponse, LaneDetailMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP lane detail request (by-chain-id)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source chain ID is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination chain ID is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getLaneDetails(environment, source, destination, "chain_id")
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from chain '${source}' to chain '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Lane detail data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ })
+
+ // Create lane detail metadata
+ const metadata: LaneDetailMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ }
+
+ const response: LaneDetailApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing lane detail request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process lane detail request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/supported-tokens.ts b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/supported-tokens.ts
new file mode 100644
index 00000000000..555dec2a5db
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/supported-tokens.ts
@@ -0,0 +1,111 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { SupportedTokensApiResponse, SupportedTokensMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP supported tokens request (by-chain-id)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source chain ID is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination chain ID is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getSupportedTokensWithRateLimits(environment, source, destination, "chain_id")
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from chain '${source}' to chain '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Supported tokens data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ tokenCount: result.tokenCount,
+ })
+
+ // Create metadata
+ const metadata: SupportedTokensMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ tokenCount: result.tokenCount,
+ }
+
+ const response: SupportedTokensApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing supported tokens request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process supported tokens request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/index.ts b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/index.ts
new file mode 100644
index 00000000000..9d0a9ca98ff
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/index.ts
@@ -0,0 +1,111 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { LaneDetailApiResponse, LaneDetailMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP lane detail request (by-internal-id)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source internal ID is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination internal ID is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getLaneDetails(environment, source, destination, "internal_id")
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from '${source}' to '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Lane detail data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ })
+
+ // Create lane detail metadata
+ const metadata: LaneDetailMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ }
+
+ const response: LaneDetailApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing lane detail request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process lane detail request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/supported-tokens.ts b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/supported-tokens.ts
new file mode 100644
index 00000000000..93fc939158e
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/supported-tokens.ts
@@ -0,0 +1,116 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { SupportedTokensApiResponse, SupportedTokensMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP supported tokens request (by-internal-id)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source internal ID is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination internal ID is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getSupportedTokensWithRateLimits(
+ environment,
+ source,
+ destination,
+ "internal_id"
+ )
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from '${source}' to '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Supported tokens data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ tokenCount: result.tokenCount,
+ })
+
+ // Create metadata
+ const metadata: SupportedTokensMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ tokenCount: result.tokenCount,
+ }
+
+ const response: SupportedTokensApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing supported tokens request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process supported tokens request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/index.ts b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/index.ts
new file mode 100644
index 00000000000..2a39109fd82
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/index.ts
@@ -0,0 +1,111 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { LaneDetailApiResponse, LaneDetailMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP lane detail request (by-selector)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source selector is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination selector is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getLaneDetails(environment, source, destination, "selector")
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from selector '${source}' to selector '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Lane detail data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ })
+
+ // Create lane detail metadata
+ const metadata: LaneDetailMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ }
+
+ const response: LaneDetailApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing lane detail request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process lane detail request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/supported-tokens.ts b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/supported-tokens.ts
new file mode 100644
index 00000000000..8b5ab782a39
--- /dev/null
+++ b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/supported-tokens.ts
@@ -0,0 +1,111 @@
+import type { APIRoute } from "astro"
+import { validateEnvironment, handleApiError, APIErrorType, createErrorResponse, CCIPError } from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { SupportedTokensApiResponse, SupportedTokensMetadata } from "~/lib/ccip/types/index.ts"
+import { LaneDataService } from "~/lib/ccip/services/lane-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { source, destination } = params
+
+ logger.info({
+ message: "Processing CCIP supported tokens request (by-selector)",
+ requestId,
+ url: request.url,
+ source,
+ destination,
+ })
+
+ // Validate path parameters
+ if (!source) {
+ throw new CCIPError(400, "source selector is required in path")
+ }
+ if (!destination) {
+ throw new CCIPError(400, "destination selector is required in path")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ const laneDataService = new LaneDataService()
+ const result = await laneDataService.getSupportedTokensWithRateLimits(environment, source, destination, "selector")
+
+ if (!result.data) {
+ throw new CCIPError(404, `Lane from selector '${source}' to selector '${destination}' not found`)
+ }
+
+ logger.info({
+ message: "Supported tokens data retrieved successfully",
+ requestId,
+ source,
+ destination,
+ tokenCount: result.tokenCount,
+ })
+
+ // Create metadata
+ const metadata: SupportedTokensMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ sourceChain: source,
+ destinationChain: destination,
+ tokenCount: result.tokenCount,
+ }
+
+ const response: SupportedTokensApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing supported tokens request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process supported tokens request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/rate-limits.ts b/src/pages/api/ccip/v1/rate-limits.ts
new file mode 100644
index 00000000000..57644869eb8
--- /dev/null
+++ b/src/pages/api/ccip/v1/rate-limits.ts
@@ -0,0 +1,114 @@
+import type { APIRoute } from "astro"
+import {
+ validateEnvironment,
+ validateRateLimitsFilters,
+ createRateLimitsMetadata,
+ handleApiError,
+ APIErrorType,
+ createErrorResponse,
+ CCIPError,
+} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { RateLimitsApiResponse } from "~/lib/ccip/types/index.ts"
+import { RateLimitsDataService } from "~/lib/ccip/services/rate-limits-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ logger.info({
+ message: "Processing CCIP rate-limits request",
+ requestId,
+ url: request.url,
+ })
+
+ const url = new URL(request.url)
+ const params = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(params.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ // Validate and parse rate limits filters
+ const filters = validateRateLimitsFilters({
+ sourceInternalId: params.get("source_internal_id") || undefined,
+ destinationInternalId: params.get("destination_internal_id") || undefined,
+ tokens: params.get("tokens") || undefined,
+ direction: params.get("direction") || undefined,
+ rateType: params.get("rate_type") || undefined,
+ })
+
+ logger.debug({
+ message: "Filter parameters validated",
+ requestId,
+ filters,
+ })
+
+ const rateLimitsService = new RateLimitsDataService()
+ const { data, metadata: serviceMetadata } = await rateLimitsService.getFilteredRateLimits(environment, filters)
+
+ logger.info({
+ message: "Rate limits data retrieved successfully",
+ requestId,
+ tokenCount: serviceMetadata.tokenCount,
+ sourceChain: filters.sourceInternalId,
+ destinationChain: filters.destinationInternalId,
+ })
+
+ // Create rate-limits-specific metadata
+ const metadata = createRateLimitsMetadata(
+ environment,
+ filters.sourceInternalId,
+ filters.destinationInternalId,
+ serviceMetadata.tokenCount
+ )
+
+ const response: RateLimitsApiResponse = {
+ metadata,
+ data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing rate-limits request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process rate-limits request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/tokens.ts b/src/pages/api/ccip/v1/tokens.ts
index 7a3fb65de0a..ad40a3a149c 100644
--- a/src/pages/api/ccip/v1/tokens.ts
+++ b/src/pages/api/ccip/v1/tokens.ts
@@ -4,13 +4,12 @@ import {
validateOutputKey,
createTokenMetadata,
handleApiError,
- successHeaders,
- commonHeaders,
APIErrorType,
createErrorResponse,
CCIPError,
loadChainConfiguration,
} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
import { logger } from "@lib/logging/index.js"
import type { TokenFilterType, TokenApiResponse } from "~/lib/ccip/types/index.ts"
@@ -52,7 +51,7 @@ export const GET: APIRoute = async ({ request }) => {
})
// Validate output key - we'll still use this for formatting display options
- const outputKey = validateOutputKey(params.get("outputKey") || undefined)
+ const outputKey = validateOutputKey(params.get("output_key") || undefined)
logger.debug({
message: "Output key validated",
requestId,
@@ -100,7 +99,7 @@ export const GET: APIRoute = async ({ request }) => {
})
return new Response(JSON.stringify(response), {
- headers: { ...commonHeaders, ...successHeaders },
+ headers: jsonHeaders,
})
} catch (error) {
logger.error({
diff --git a/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol].ts b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol].ts
new file mode 100644
index 00000000000..630c2ab3419
--- /dev/null
+++ b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol].ts
@@ -0,0 +1,122 @@
+import type { APIRoute } from "astro"
+import {
+ validateEnvironment,
+ validateOutputKey,
+ handleApiError,
+ APIErrorType,
+ createErrorResponse,
+ CCIPError,
+} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { TokenDetailApiResponse, TokenDetailMetadata } from "~/lib/ccip/types/index.ts"
+import { TokenDataService } from "~/lib/ccip/services/token-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { tokenCanonicalSymbol } = params
+
+ logger.info({
+ message: "Processing CCIP token detail request",
+ requestId,
+ url: request.url,
+ tokenCanonicalSymbol,
+ })
+
+ // Validate token symbol is provided
+ if (!tokenCanonicalSymbol) {
+ throw new CCIPError(400, "tokenCanonicalSymbol parameter is required")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ // Validate output key for chain representation
+ const outputKey = validateOutputKey(queryParams.get("output_key") || undefined)
+ logger.debug({
+ message: "Output key validated",
+ requestId,
+ outputKey,
+ })
+
+ const tokenDataService = new TokenDataService()
+ const result = await tokenDataService.getTokenWithFinality(environment, tokenCanonicalSymbol, outputKey)
+
+ if (!result) {
+ throw new CCIPError(404, `Token '${tokenCanonicalSymbol}' not found`)
+ }
+
+ logger.info({
+ message: "Token detail data retrieved successfully",
+ requestId,
+ tokenCanonicalSymbol,
+ chainCount: result.metadata.chainCount,
+ })
+
+ // Create token detail metadata
+ const metadata: TokenDetailMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ tokenSymbol: tokenCanonicalSymbol,
+ chainCount: result.metadata.chainCount,
+ }
+
+ const response: TokenDetailApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing token detail request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process token detail request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/finality.ts b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/finality.ts
new file mode 100644
index 00000000000..236414283cd
--- /dev/null
+++ b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/finality.ts
@@ -0,0 +1,122 @@
+import type { APIRoute } from "astro"
+import {
+ validateEnvironment,
+ validateOutputKey,
+ handleApiError,
+ APIErrorType,
+ createErrorResponse,
+ CCIPError,
+} from "~/lib/ccip/utils.ts"
+import { jsonHeaders } from "@lib/api/cacheHeaders.ts"
+import { logger } from "@lib/logging/index.js"
+
+import type { TokenFinalityApiResponse, TokenDetailMetadata } from "~/lib/ccip/types/index.ts"
+import { TokenDataService } from "~/lib/ccip/services/token-data.ts"
+
+export const prerender = false
+
+export const GET: APIRoute = async ({ params, request }) => {
+ const requestId = crypto.randomUUID()
+
+ try {
+ const { tokenCanonicalSymbol } = params
+
+ logger.info({
+ message: "Processing CCIP token finality request",
+ requestId,
+ url: request.url,
+ tokenCanonicalSymbol,
+ })
+
+ // Validate token symbol is provided
+ if (!tokenCanonicalSymbol) {
+ throw new CCIPError(400, "tokenCanonicalSymbol parameter is required")
+ }
+
+ const url = new URL(request.url)
+ const queryParams = url.searchParams
+
+ // Validate environment
+ const environment = validateEnvironment(queryParams.get("environment") || undefined)
+ logger.debug({
+ message: "Environment validated",
+ requestId,
+ environment,
+ })
+
+ // Validate output key for chain representation
+ const outputKey = validateOutputKey(queryParams.get("output_key") || undefined)
+ logger.debug({
+ message: "Output key validated",
+ requestId,
+ outputKey,
+ })
+
+ const tokenDataService = new TokenDataService()
+ const result = await tokenDataService.getTokenFinality(environment, tokenCanonicalSymbol, outputKey)
+
+ if (!result) {
+ throw new CCIPError(404, `Token '${tokenCanonicalSymbol}' not found`)
+ }
+
+ logger.info({
+ message: "Token finality data retrieved successfully",
+ requestId,
+ tokenCanonicalSymbol,
+ chainCount: result.metadata.chainCount,
+ })
+
+ // Create token finality metadata
+ const metadata: TokenDetailMetadata = {
+ environment,
+ timestamp: new Date().toISOString(),
+ requestId,
+ tokenSymbol: tokenCanonicalSymbol,
+ chainCount: result.metadata.chainCount,
+ }
+
+ const response: TokenFinalityApiResponse = {
+ metadata,
+ data: result.data,
+ }
+
+ logger.info({
+ message: "Sending successful response",
+ requestId,
+ metadata,
+ })
+
+ return new Response(JSON.stringify(response), {
+ headers: jsonHeaders,
+ })
+ } catch (error) {
+ logger.error({
+ message: "Error processing token finality request",
+ requestId,
+ error: error instanceof Error ? error.message : "Unknown error",
+ stack: error instanceof Error ? error.stack : undefined,
+ })
+
+ // Handle CCIPError specifically, preserving its status code
+ if (error instanceof CCIPError) {
+ return createErrorResponse(
+ error.statusCode === 400
+ ? APIErrorType.VALIDATION_ERROR
+ : error.statusCode === 404
+ ? APIErrorType.NOT_FOUND
+ : APIErrorType.SERVER_ERROR,
+ error.message,
+ error.statusCode,
+ {}
+ )
+ }
+
+ // Handle other errors
+ if (error instanceof Error) {
+ return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process token finality request", 500, {
+ message: error.message,
+ })
+ }
+ return handleApiError(error)
+ }
+}
diff --git a/src/scripts/ccip/detect-new-tokens.ts b/src/scripts/ccip/detect-new-tokens.ts
index 85ea71ccb04..a0178595853 100644
--- a/src/scripts/ccip/detect-new-tokens.ts
+++ b/src/scripts/ccip/detect-new-tokens.ts
@@ -1189,13 +1189,15 @@ function buildTokenSupportMap(tokensData: TokensConfig, lanesData: LanesConfig):
Object.keys(lanesData).forEach((sourceChain) => {
Object.keys(lanesData[sourceChain]).forEach((destChain) => {
const lane = `${sourceChain}-to-${destChain}`
- const supportedTokens = lanesData[sourceChain][destChain].supportedTokens || {}
+ const supportedTokens = lanesData[sourceChain][destChain].supportedTokens || []
- Object.keys(supportedTokens).forEach((tokenSymbol) => {
- if (tokenSupport[tokenSymbol]) {
- tokenSupport[tokenSymbol].lanes.push(lane)
- }
- })
+ if (Array.isArray(supportedTokens)) {
+ supportedTokens.forEach((tokenSymbol) => {
+ if (tokenSupport[tokenSymbol]) {
+ tokenSupport[tokenSymbol].lanes.push(lane)
+ }
+ })
+ }
})
})
diff --git a/src/scripts/ccip/generate-token-report.ts b/src/scripts/ccip/generate-token-report.ts
index 471cf5b35d1..6072f03d42d 100644
--- a/src/scripts/ccip/generate-token-report.ts
+++ b/src/scripts/ccip/generate-token-report.ts
@@ -87,12 +87,14 @@ function buildTokenSupportMap(tokensData: TokensConfig, lanesData: LanesConfig):
Object.keys(lanesData).forEach((sourceChain) => {
Object.keys(lanesData[sourceChain]).forEach((destChain) => {
const lane = `${sourceChain}-to-${destChain}`
- const supportedTokens = lanesData[sourceChain][destChain].supportedTokens || {}
- Object.keys(supportedTokens).forEach((tokenSymbol) => {
- if (tokenSupport[tokenSymbol]) {
- tokenSupport[tokenSymbol].lanes.push(lane)
- }
- })
+ const supportedTokens = lanesData[sourceChain][destChain].supportedTokens || []
+ if (Array.isArray(supportedTokens)) {
+ supportedTokens.forEach((tokenSymbol) => {
+ if (tokenSupport[tokenSymbol]) {
+ tokenSupport[tokenSymbol].lanes.push(lane)
+ }
+ })
+ }
})
})
diff --git a/src/scripts/data/detect-new-data.ts b/src/scripts/data/detect-new-data.ts
index d1b0549c3ec..c6110c0b5ad 100644
--- a/src/scripts/data/detect-new-data.ts
+++ b/src/scripts/data/detect-new-data.ts
@@ -12,6 +12,7 @@ import fs from "fs"
import path from "path"
import fetch from "node-fetch"
import prettier from "prettier"
+import { TOKEN_ICONS_PATH } from "../../config/cdn.js"
// Network endpoints mapping for different blockchain networks
// Each endpoint provides a JSON file containing feed definitions for that network
@@ -79,7 +80,7 @@ interface DataItem {
* @returns URL to the asset's icon image
*/
function buildIconUrl(baseAsset: string): string {
- return `https://d2f70xi62kby8n.cloudfront.net/tokens/${baseAsset.toLowerCase()}.webp`
+ return `${TOKEN_ICONS_PATH}/${baseAsset.toLowerCase()}.webp`
}
/**
diff --git a/src/workers/data-worker.ts b/src/workers/data-worker.ts
index 0d1ce44e2f9..ac75689d4ba 100644
--- a/src/workers/data-worker.ts
+++ b/src/workers/data-worker.ts
@@ -69,7 +69,7 @@ self.onmessage = (event: MessageEvent) => {
lane.sourceNetwork.name.toLowerCase().includes(searchLower) ||
lane.destinationNetwork.name.toLowerCase().includes(searchLower)
- const hasTokens = lane.lane.supportedTokens ? Object.keys(lane.lane.supportedTokens).length > 0 : false
+ const hasTokens = lane.lane.supportedTokens ? lane.lane.supportedTokens.length > 0 : false
return matchesNetwork && hasTokens
})