diff --git a/docs/CCIP-API-TOKEN-DIRECTORY.md b/docs/CCIP-API-TOKEN-DIRECTORY.md new file mode 100644 index 00000000000..7b6829121e2 --- /dev/null +++ b/docs/CCIP-API-TOKEN-DIRECTORY.md @@ -0,0 +1,683 @@ +# CCIP Token Directory API + +## Overview + +The CCIP API provides endpoints to retrieve detailed token information including pool configurations, rate limits, custom finality settings, and cross-chain verifier (CCV) configurations. + +## Endpoints + +### 1. Token Directory (Single Chain) + +Retrieves detailed token information for a specific token on a specific chain, including outbound/inbound lanes with rate limits and verifiers. + +``` +GET /api/ccip/v1/tokens/{symbol}/chains/{chain}?environment={env}&outputKey=internalId&internalIdFormat=directory +``` + +**Parameters:** +| Parameter | Required | Description | +|-----------|----------|-------------| +| `symbol` | Yes | Token canonical symbol (e.g., `BETS`, `LINK`, `GHO`) | +| `chain` | Yes | Chain identifier (e.g., `mainnet`, `avalanche-mainnet`) | +| `environment` | Yes | `mainnet` or `testnet` | +| `outputKey` | No | Output key format: `chainId`, `selector`, or `internalId` (default: `chainId`) | +| `internalIdFormat` | No | Format for internalId values: `directory` or `selector` (default: `selector`). External callers should keep the default; `directory` is for the CCIP Directory docs website. | + +**Example Request:** + +``` +GET /api/ccip/v1/tokens/BETS/chains/mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory +``` + +**Example Response:** + +```json +{ + "metadata": { + "environment": "mainnet", + "timestamp": "2026-02-22T18:00:00.000Z", + "requestId": "550e8400-e29b-41d4-a716-446655440000", + "symbol": "BETS", + "sourceChain": "mainnet" + }, + "data": { + "internalId": "mainnet", + "chainId": 1, + "selector": "5009297550715157269", + "token": { + "address": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "decimals": 18 + }, + "pool": { + "address": "0x8315Bbe2b2828559CEeCCCBCB4550A466227336E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "2.0.0", + "advancedPoolHooks": null, + "supportsV2Features": true + }, + "ccvConfig": { + "thresholdAmount": "50000000000000000000000000" + }, + "customFinality": { + "hasCustomFinality": false, + "minBlockConfirmation": 0 + }, + "outboundLanes": { + "ethereum-mainnet-base-1": { + "internalId": "ethereum-mainnet-base-1", + "chainId": 8453, + "selector": "15971525489660198786", + "rateLimits": { + "standard": { + "in": { "capacity": "0", "isEnabled": false, "rate": "0" }, + "out": { "capacity": "0", "isEnabled": false, "rate": "0" } + }, + "custom": { + "in": { "capacity": "1000000000000000000000", "isEnabled": true, "rate": "1000000000000000000" }, + "out": { "capacity": "1000000000000000000000", "isEnabled": true, "rate": "1000000000000000000" } + } + }, + "fees": null, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } + } + }, + "inboundLanes": { + "avalanche-mainnet": { + "internalId": "avalanche-mainnet", + "chainId": 43114, + "selector": "6433500567565415381", + "rateLimits": { + "standard": { + "in": { "capacity": "30000000000000000000000000", "isEnabled": true, "rate": "50000000000000000000000" }, + "out": { "capacity": "30000000000000000000000000", "isEnabled": true, "rate": "50000000000000000000000" } + }, + "custom": { + "in": { "capacity": "18810000000000000000000000", "isEnabled": true, "rate": "31350000000000000000000" }, + "out": { "capacity": "13020000000000000000000000", "isEnabled": true, "rate": "21700000000000000000000" } + } + }, + "fees": null, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"] + } + } + } + } +} +``` + +### 2. Lane Supported Tokens + +Retrieves all supported tokens for a specific lane with their rate limits. + +``` +GET /api/ccip/v1/lanes/by-internal-id/{source}/{destination}/supported-tokens?environment={env}&internalIdFormat=directory +``` + +**Parameters:** +| Parameter | Required | Description | +|-----------|----------|-------------| +| `source` | Yes | Source chain identifier (e.g., `mainnet`) | +| `destination` | Yes | Destination chain identifier (e.g., `bsc-mainnet`) | +| `environment` | Yes | `mainnet` or `testnet` | +| `internalIdFormat` | No | Format for internalId values: `directory` or `selector` (default: `selector`). External callers should keep the default; `directory` is for the CCIP Directory docs website. | + +**Example Request:** + +```bash +curl "http://localhost:4321/api/ccip/v1/lanes/by-internal-id/mainnet/bsc-mainnet/supported-tokens?environment=mainnet&internalIdFormat=directory" +``` + +**Example Response:** + +```json +{ + "metadata": { + "environment": "mainnet", + "timestamp": "2026-02-22T20:56:52.870Z", + "requestId": "9dd7f5a7-d27d-41f4-82aa-d46335fe9496", + "sourceChain": "mainnet", + "destinationChain": "bsc-mainnet", + "tokenCount": 62 + }, + "data": { + "$PAAL": { + "rateLimits": { + "standard": { + "in": { "capacity": "0", "isEnabled": false, "rate": "0" }, + "out": { "capacity": "0", "isEnabled": false, "rate": "0" } + }, + "custom": { + "in": { "capacity": "1000000000000", "isEnabled": true, "rate": "1000000000" }, + "out": { "capacity": "1000000000000", "isEnabled": true, "rate": "1000000000" } + } + }, + "fees": null + }, + "BETS": { + "rateLimits": { + "standard": { + "in": { "capacity": "0", "isEnabled": false, "rate": "0" }, + "out": { "capacity": "0", "isEnabled": false, "rate": "0" } + }, + "custom": { + "in": { "capacity": "1000000000000000000000", "isEnabled": true, "rate": "1000000000000000000" }, + "out": { "capacity": "1000000000000000000000", "isEnabled": true, "rate": "1000000000000000000" } + } + }, + "fees": null + } + } +} +``` + +**Note:** `data` is keyed by token symbol. Each token has `rateLimits` (standard + custom, each with `in`/`out` directions) and `fees` (null when not available). When `rateLimits.standard` or `rateLimits.custom` is `null`, display "Unavailable" per the Lane Details UI. + +--- + +## Understanding Pool Versions (v1.x vs v2.x) + +The API distinguishes between v1.x and v2.x pools using the `pool.supportsV2Features` boolean flag. When `supportsV2Features` is `true`, `pool.version` is `2.0.0` or higher (consistent with v2 features). When `false`, `pool.version` reflects the actual pool contract version (e.g., `1.6.0`). + +### v2 Features + +The following features are **only available for v2.x pools** (`supportsV2Features: true`): + +- `ccvConfig` - Cross-Chain Verifier configuration with threshold amounts +- `customFinality` - Custom block confirmation settings +- `verifiers` - Lane-specific verifier addresses with threshold-based sets + +--- + +## Recommendation: Handling Null Values + +**Always check `data.pool.supportsV2Features` first** before interpreting null values. This flag is at the pool level and applies to all lanes: + +1. **Pool level:** `data.pool.supportsV2Features` - use for `ccvConfig`, `customFinality`, and `verifiers` in all lanes + +### Fields That Require `pool.supportsV2Features` Check + +| Field | Location | When `pool.supportsV2Features=false` | When `pool.supportsV2Features=true` | +| ---------------- | ---------- | ------------------------------------ | ------------------------------------------------------- | +| `ccvConfig` | Pool level | `null` (not supported) | Object with `thresholdAmount` | +| `customFinality` | Pool level | `null` (not supported) | Object with `hasCustomFinality`, `minBlockConfirmation` | +| `verifiers` | Each lane | `null` (not supported) | Object with `belowThreshold`, `aboveThreshold` arrays | + +### Interpreting Values by Field + +#### ccvConfig (Pool Level) + +| `pool.supportsV2Features` | Value | Meaning | +| ------------------------- | ------------------------- | ------------------------------- | +| `false` | `null` | **Not supported** (v1.x pool) | +| `true` | `{thresholdAmount: "0"}` | **Not configured** | +| `true` | `{thresholdAmount: "N"}` | **Configured** with threshold N | +| `true` | `{thresholdAmount: null}` | **Downstream API error** | + +#### customFinality (Pool Level) + +| `pool.supportsV2Features` | Value | Meaning | +| ------------------------- | ------------------------------------------------------- | ----------------------------------- | +| `false` | `null` | **Not supported** (v1.x pool) | +| `true` | `{hasCustomFinality: false, minBlockConfirmation: 0}` | **Not configured** | +| `true` | `{hasCustomFinality: true, minBlockConfirmation: N}` | **Configured** with N confirmations | +| `true` | `{hasCustomFinality: null, minBlockConfirmation: null}` | **Downstream API error** | + +#### verifiers (Per Lane, interpreted via Pool Level) + +| `pool.supportsV2Features` | Value | Meaning | +| ------------------------- | ----------------------------------------------- | ----------------------------------------- | +| `false` | `null` | **Not supported** (v1.x pool) | +| `true` | `{belowThreshold: [], aboveThreshold: []}` | **Not configured** for this lane | +| `true` | `{belowThreshold: [A], aboveThreshold: [A]}` | **Configured** - same verifiers | +| `true` | `{belowThreshold: [A], aboveThreshold: [A, B]}` | **Configured** - with threshold verifiers | +| `true` | `{belowThreshold: null, aboveThreshold: null}` | **Downstream API error** | + +### Code Example + +```typescript +// Check pool-level features +if (data.pool.supportsV2Features) { + // v2.x pool - ccvConfig and customFinality are objects + if (data.ccvConfig?.thresholdAmount === null) { + // Downstream API error fetching CCV config + } else if (data.ccvConfig?.thresholdAmount === "0") { + // CCV not configured + } else { + // CCV configured with threshold + } +} else { + // v1.x pool - ccvConfig and customFinality are null (not supported) +} + +// Check lane verifiers (use pool-level supportsV2Features for interpretation) +for (const [key, lane] of Object.entries(data.outboundLanes)) { + if (data.pool.supportsV2Features) { + if (lane.verifiers?.belowThreshold === null) { + // Downstream API error fetching verifiers + } else if (lane.verifiers?.belowThreshold?.length === 0) { + // No verifiers configured for this lane + } else { + // Verifiers configured + } + } else { + // v1.x pool - verifiers is null (not supported) + } +} +``` + +--- + +## Null Value Interpretation Table (Quick Reference) + +| `pool.supportsV2Features` | `ccvConfig` | `customFinality` | Meaning | +| ------------------------- | ------------------------- | ------------------------------------------------------- | ------------------------------------- | +| `false` | `null` | `null` | **Feature not supported** (v1.x pool) | +| `true` | `{thresholdAmount: "0"}` | `{hasCustomFinality: false, minBlockConfirmation: 0}` | **Not configured** (v2.x pool) | +| `true` | `{thresholdAmount: null}` | `{hasCustomFinality: null, minBlockConfirmation: null}` | **Downstream API error** | +| `true` | `{thresholdAmount: "N"}` | `{hasCustomFinality: true, minBlockConfirmation: N}` | **Configured** (v2.x pool) | + +### Examples + +**v1.x Pool (GHO):** + +```json +{ + "pool": { + "version": "1.6.0", + "supportsV2Features": false + }, + "ccvConfig": null, + "customFinality": null +} +``` + +**v2.x Pool - Configured (BETS on ethereum-mainnet-base-1):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/BETS/chains/ethereum-mainnet-base-1?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +```json +{ + "pool": { + "version": "2.0.0", + "supportsV2Features": true + }, + "ccvConfig": { + "thresholdAmount": "25000000000000000000000000" + }, + "customFinality": { + "hasCustomFinality": true, + "minBlockConfirmation": 3 + } +} +``` + +**v2.x Pool - Not Configured (BETS on matic-mainnet):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/BETS/chains/matic-mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +```json +{ + "pool": { + "version": "2.0.0", + "supportsV2Features": true + }, + "ccvConfig": { + "thresholdAmount": "0" + }, + "customFinality": { + "hasCustomFinality": true, + "minBlockConfirmation": 5 + } +} +``` + +**v2.x Pool - Downstream API Error (BETS on bsc-mainnet):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/BETS/chains/bsc-mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +```json +{ + "pool": { + "version": "2.0.0", + "supportsV2Features": true + }, + "ccvConfig": { + "thresholdAmount": "0" + }, + "customFinality": { + "hasCustomFinality": null, + "minBlockConfirmation": null + } +} +``` + +--- + +## Lane Verifiers (Outbound & Inbound) + +The `verifiers` field in each lane shows which verifier addresses are required for message validation. The verifiers vary based on: + +- Pool version (v1.x vs v2.x) +- Whether CCV (Cross-Chain Verifier) is configured +- Whether threshold-based additional verifiers are set +- Lane direction (outbound vs inbound) + +### Testing Verifier Scenarios + +Each scenario below can be verified using the dev server. Start the server with `npm run dev` and use these curl commands: + +**Scenario 1 - v1.x Pool (GHO):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/GHO/chains/mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +**Scenarios 2, 3, 4 - v2.x Pool (LBTC):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/LBTC/chains/mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +Then check: + +- Scenario 2: `outboundLanes["avalanche-mainnet"]` - empty verifier arrays +- Scenario 3: `inboundLanes["ethereum-mainnet-base-1"]` - same verifiers in both arrays +- Scenario 4: `outboundLanes["ethereum-mainnet-base-1"]` - different verifiers (threshold) + +**Scenario 5 - v2.x Pool Downstream Error (BETS on bsc-mainnet):** + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/BETS/chains/bsc-mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +Then check: `outboundLanes["mainnet"]` - null verifier arrays (downstream error) + +### Verifier Scenarios + +#### Scenario 1: v1.x Pool (No Verifiers) + +**Test:** `curl "http://localhost:4321/api/ccip/v1/tokens/GHO/chains/mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory"` + +For v1.x pools (`pool.supportsV2Features: false`), verifiers are not supported: + +```json +{ + "internalId": "avalanche-mainnet", + "chainId": 43114, + "selector": "6433500567565415381", + "rateLimits": { "standard": null, "custom": null }, + "fees": null, + "verifiers": null +} +``` + +**Key point:** `pool.supportsV2Features: false` + `verifiers: null` means v1.x pool, feature not supported. + +--- + +#### Scenario 2: v2.x Pool - No Verifiers Configured + +**Test:** From LBTC response, check `outboundLanes["avalanche-mainnet"]` + +For v2.x pools where CCV verifiers are not configured for a specific lane: + +```json +{ + "internalId": "avalanche-mainnet", + "chainId": 43114, + "selector": "6433500567565415381", + "rateLimits": { "standard": null, "custom": null }, + "fees": null, + "verifiers": { + "belowThreshold": [], + "aboveThreshold": [] + } +} +``` + +**Key point:** `pool.supportsV2Features: true` + `verifiers: { belowThreshold: [], aboveThreshold: [] }` means v2.x pool but no verifiers configured for this lane. + +--- + +#### Scenario 3: v2.x Pool - Verifiers WITHOUT Threshold + +**Test:** From LBTC response, check `inboundLanes["ethereum-mainnet-base-1"]` + +For v2.x pools with base verifiers but no additional threshold verifiers: + +```json +{ + "internalId": "ethereum-mainnet-base-1", + "chainId": 8453, + "selector": "15971525489660198786", + "rateLimits": { "standard": null, "custom": null }, + "fees": null, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"] + } +} +``` + +**Key point:** `pool.supportsV2Features: true` + `belowThreshold` equals `aboveThreshold` - same verifiers used regardless of transfer amount. Check `ccvConfig.thresholdAmount` to distinguish: `"0"` = threshold disabled pool-wide; `"N"` (N > 0) = no additional verifiers configured for this lane. + +--- + +#### Scenario 4: v2.x Pool - Verifiers WITH Threshold + +**Test:** From LBTC response, check `outboundLanes["ethereum-mainnet-base-1"]` + +For v2.x pools with base verifiers AND additional threshold verifiers: + +```json +{ + "internalId": "ethereum-mainnet-base-1", + "chainId": 8453, + "selector": "15971525489660198786", + "rateLimits": { + "standard": { + "in": { "capacity": "5000000000", "isEnabled": true, "rate": "462963" }, + "out": { "capacity": "5000000000", "isEnabled": true, "rate": "462963" } + }, + "custom": { + "in": { "capacity": "2820000000", "isEnabled": true, "rate": "261111" }, + "out": { "capacity": "3490000000", "isEnabled": true, "rate": "323148" } + } + }, + "fees": null, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } +} +``` + +**Key point:** `pool.supportsV2Features: true` + `aboveThreshold` contains additional verifiers beyond `belowThreshold`. When transfer amount >= `ccvConfig.thresholdAmount`, use `aboveThreshold` verifiers. Note how `custom` rate limits show different `in` vs `out` values, reflecting independently configured directional limits. + +--- + +#### Scenario 5: v2.x Pool - Downstream API Error + +**Test:** From BETS response on bsc-mainnet, check `outboundLanes["mainnet"]` + +```bash +curl "http://localhost:4321/api/ccip/v1/tokens/BETS/chains/bsc-mainnet?environment=mainnet&outputKey=internalId&internalIdFormat=directory" +``` + +For v2.x pools where the verifier data could not be fetched due to a downstream API error: + +```json +{ + "internalId": "mainnet", + "chainId": 1, + "selector": "5009297550715157269", + "rateLimits": { "standard": { "in": null, "out": null }, "custom": null }, + "fees": null, + "verifiers": { + "belowThreshold": null, + "aboveThreshold": null + } +} +``` + +**Key point:** `pool.supportsV2Features: true` + `verifiers: { belowThreshold: null, aboveThreshold: null }` indicates a downstream API error when fetching verifiers for a v2.x pool. This is distinct from empty arrays which mean "no verifiers configured." + +--- + +### Verifiers Summary Table + +| `pool.supportsV2Features` | `verifiers` Value | Meaning | +| ------------------------- | ------------------------------------------------- | ------------------------------------------------- | +| `false` | `null` | v1.x pool - feature not supported | +| `true` | `{ belowThreshold: [], aboveThreshold: [] }` | v2.x pool - no verifiers configured for this lane | +| `true` | `{ belowThreshold: [A], aboveThreshold: [A] }` | v2.x pool - base verifiers only (no threshold) | +| `true` | `{ belowThreshold: [A], aboveThreshold: [A, B] }` | v2.x pool - base + threshold verifiers | +| `true` | `{ belowThreshold: null, aboveThreshold: null }` | v2.x pool - downstream API error | +| v2.x | `{ belowThreshold: [A], aboveThreshold: [A] }` | Base verifiers only (no threshold) | +| v2.x | `{ belowThreshold: [A], aboveThreshold: [A, B] }` | Base + threshold verifiers | +| v2.x | `{ belowThreshold: null, aboveThreshold: null }` | Downstream API error | + +### Interpreting belowThreshold === aboveThreshold + +When `belowThreshold` equals `aboveThreshold`, the same verifiers are required regardless of transfer amount. This can happen for two distinct reasons—check `ccvConfig.thresholdAmount` to distinguish: + +| `ccvConfig.thresholdAmount` | belowThreshold vs aboveThreshold | Meaning | +| --------------------------- | -------------------------------- | ------------------------------------------------------------------------- | +| `"0"` | Same | Threshold feature disabled pool-wide (contract never adds threshold CCVs) | +| `"N"` (N > 0) | Same | No additional verifiers configured for this lane (other lanes may differ) | +| `"N"` (N > 0) | Different | Additional verifiers kick in when transfer amount >= threshold | + +**Example:** A pool with `thresholdAmount = "100000000000"` can have Lane A with `aboveThreshold: [A, B]` (extra verifier) and Lane B with `aboveThreshold: [A]` (same as below—pool owner chose not to require extra verifiers for that lane). + +### Using Verifiers with Threshold + +1. Get `ccvConfig.thresholdAmount` from the pool data +2. Compare transfer amount to threshold: + - If `amount < thresholdAmount` → use `belowThreshold` verifiers + - If `amount >= thresholdAmount` → use `aboveThreshold` verifiers + +--- + +## Field Reference + +### Pool Object + +| Field | Type | Description | +| -------------------- | ---------------- | ----------------------------------------------------------------------- | +| `address` | `string` | Pool contract address | +| `rawType` | `string` | Raw pool type (e.g., `BurnMint`, `LockRelease`) | +| `type` | `string` | Normalized pool type: `burnMint`, `lockRelease`, `usdc`, `feeTokenOnly` | +| `version` | `string` | Pool contract version (e.g., `1.6.0`, `2.0.0`) | +| `advancedPoolHooks` | `string \| null` | Address of advanced pool hooks contract, or null if not configured | +| `supportsV2Features` | `boolean` | Whether this pool supports v2 features (ccvConfig, customFinality) | + +### CCVConfig Object + +| Field | Type | Description | +| ----------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------- | +| `thresholdAmount` | `string \| null` | Threshold amount in token's smallest unit. `"0"` = not configured, `null` = downstream error, `"N"` = configured | + +### CustomFinality Object + +| Field | Type | Description | +| ---------------------- | ----------------- | ------------------------------------------------------------------------------- | +| `hasCustomFinality` | `boolean \| null` | Whether custom finality is enabled. `null` = downstream error | +| `minBlockConfirmation` | `number \| null` | Minimum block confirmations required. `0` = not used, `null` = downstream error | + +### Lane Object (outboundLanes/inboundLanes) + +| Field | Type | Description | +| ------------ | ----------------------- | --------------------------------------------------------------------------------------------------- | +| `internalId` | `string` | Internal identifier of the remote chain (destination for outbound lanes, source for inbound lanes) | +| `chainId` | `number \| string` | Chain ID of the remote chain | +| `selector` | `string` | CCIP chain selector of the remote chain | +| `rateLimits` | `TokenRateLimits` | Rate limits for standard and custom transfers, each with `in`/`out` directions | +| `fees` | `TokenFees \| null` | Transfer fees in basis points. `null` = fees not available for this lane | +| `verifiers` | `LaneVerifiers \| null` | Verifier configuration. Use `pool.supportsV2Features` to interpret (see interpretation table above) | + +### TokenRateLimits Object + +| Field | Type | Description | +| ---------- | ------------------------------- | ------------------------------------------------------- | +| `standard` | `DirectionalRateLimits \| null` | Standard transfer rate limits with in/out directions | +| `custom` | `DirectionalRateLimits \| null` | Custom (custom block confirmation) transfer rate limits | + +### DirectionalRateLimits Object + +| Field | Type | Description | +| ----- | ------------------------- | ----------------------------------------------- | +| `in` | `RateLimitConfig \| null` | Inbound rate limit (receiving chain constraint) | +| `out` | `RateLimitConfig \| null` | Outbound rate limit (sending chain constraint) | + +### RateLimitConfig Object + +| Field | Type | Description | +| ----------- | --------- | -------------------------------- | +| `capacity` | `string` | Maximum bucket capacity | +| `rate` | `string` | Refill rate per second | +| `isEnabled` | `boolean` | Whether rate limiting is enabled | + +### Fees Interpretation + +| `fees` Value | Meaning | +| -------------------------------------------------------- | --------------------------------------------------------- | +| `null` | Fees not available for this lane | +| `{ standardTransferFeeBps: N, customTransferFeeBps: M }` | Transfer fees configured (in basis points, 1 bps = 0.01%) | + +### Verifiers Object + +| Field | Type | Description | +| ---------------- | ------------------ | ----------------------------------------------------------------------------------------------------------- | +| `belowThreshold` | `string[] \| null` | Verifier addresses used when transfer amount < threshold. `[]` = not configured, `null` = downstream error | +| `aboveThreshold` | `string[] \| null` | Verifier addresses used when transfer amount >= threshold. `[]` = not configured, `null` = downstream error | + +--- + +## Query Parameters Reference + +| Parameter | Values | Description | +| ------------------ | ----------------------------------- | ---------------------------------------------- | +| `environment` | `mainnet`, `testnet` | Network environment | +| `outputKey` | `chainId`, `selector`, `internalId` | Format for output keys in response | +| `internalIdFormat` | `directory`, `selector` | Format for internalId values (see table below) | + +### internalIdFormat + +- **Default (`selector`):** Use for external API integrations. Returns selector names (e.g., `ethereum-mainnet`, `binance_smart_chain-mainnet`). +- **`directory`:** Used by the CCIP Directory docs website for display. Returns chains.json keys (e.g., `mainnet`, `bsc-mainnet`). + +### internalIdFormat Examples + +| Chain | `directory` format | `selector` format | +| ---------------- | ------------------- | ----------------------------- | +| Ethereum Mainnet | `mainnet` | `ethereum-mainnet` | +| BNB Smart Chain | `bsc-mainnet` | `binance_smart_chain-mainnet` | +| Polygon | `matic-mainnet` | `polygon-mainnet` | +| Avalanche | `avalanche-mainnet` | `avalanche-mainnet` | + +--- + +## Error Responses + +| HTTP Status | Condition | Response | +| ----------- | ------------------------------------------ | ------------------------------------------------- | +| **404** | Chain not found (invalid chain identifier) | `"Chain '{chain}' not found"` | +| **404** | Token not listed on the specified chain | `"Token '{symbol}' not found on chain '{chain}'"` | + +--- + +## Implementation Notes + +- **Lane key format:** The API uses `sourceSelector-to-destSelector` for internal lane resolution (e.g., `ethereum-mainnet-to-base-mainnet`). This format scales to any chain without hardcoded mappings. diff --git a/jest.config.cjs b/jest.config.cjs index 74c6196488c..61c8e57e8cc 100644 --- a/jest.config.cjs +++ b/jest.config.cjs @@ -35,5 +35,9 @@ module.exports = { "\\.ya?ml$": "/src/__mocks__/yamlMock.ts", }, transformIgnorePatterns: ["/node_modules/(?!.*\\.mjs$)"], - testPathIgnorePatterns: ["/node_modules/", "src/tests/chain-api.test.ts"], + testPathIgnorePatterns: [ + "/node_modules/", + "src/tests/chain-api.test.ts", + "src/tests/chain-identifier-service.test.ts", + ], } diff --git a/public/api/ccip/v1/openapi.json b/public/api/ccip/v1/openapi.json index 4d3ec401d27..cebc63ad870 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.6.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.16.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": { @@ -120,6 +120,16 @@ "enum": ["evm", "solana", "aptos", "sui", "tron", "canton", "ton", "stellar", "starknet"] }, "description": "Filter results by chain family. Only effective when using the search parameter." + }, + { + "name": "internalIdFormat", + "in": "query", + "schema": { + "type": "string", + "enum": ["directory", "selector"], + "default": "selector" + }, + "description": "Format for internal IDs in the response. 'selector' uses canonical selector names (e.g., 'ethereum-mainnet'), 'directory' uses chains.json keys (e.g., 'mainnet'). Only applies when outputKey=internalId." } ], "responses": { @@ -344,6 +354,16 @@ "default": "chainId" }, "description": "Key to use for organizing the response data" + }, + { + "name": "internalIdFormat", + "in": "query", + "schema": { + "type": "string", + "enum": ["directory", "selector"], + "default": "selector" + }, + "description": "Format for internal IDs in the response. 'selector' uses canonical selector names (e.g., 'ethereum-mainnet'), 'directory' uses chains.json keys (e.g., 'mainnet'). Only applies when outputKey=internalId." } ], "responses": { @@ -427,6 +447,474 @@ } } }, + "/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": "outputKey", + "in": "query", + "schema": { + "type": "string", + "enum": ["chainId", "selector", "internalId"], + "default": "chainId" + }, + "description": "Key to use for organizing the response data by chain" + }, + { + "name": "internalIdFormat", + "in": "query", + "schema": { + "type": "string", + "enum": ["directory", "selector"], + "default": "selector" + }, + "description": "Format for internal IDs in the response. 'selector' uses canonical selector names (e.g., 'ethereum-mainnet'), 'directory' uses chains.json keys (e.g., 'mainnet'). Only applies when outputKey=internalId." + } + ], + "responses": { + "200": { + "description": "Successful response with token detail data", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TokenDetailApiResponse" + }, + "examples": { + "v2Pool": { + "summary": "v2.0 pool (BETS) with CCV features enabled", + "description": "For v2.0+ pools (supportsV2Features=true), ccvConfig contains thresholdAmount and customFinality shows block confirmation settings. Different chains may show different scenarios: customFinality enabled (minBlockConfirmation > 0), disabled (minBlockConfirmation = 0), or downstream API error (both null).", + "value": { + "metadata": { + "environment": "mainnet", + "timestamp": "2025-12-10T12:00:00Z", + "requestId": "123e4567-e89b-12d3-a456-426614174000", + "tokenSymbol": "BETS", + "chainCount": 3 + }, + "data": { + "1": { + "chainId": 1, + "chainName": "Ethereum", + "decimals": 18, + "destinations": ["56", "137"], + "name": "BetSwirl Token", + "poolAddress": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932", + "poolType": "lockRelease", + "symbol": "BETS", + "tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "customFinality": { + "hasCustomFinality": false, + "minBlockConfirmation": 0 + }, + "ccvConfig": { + "thresholdAmount": "10000000000000000000000" + }, + "pool": { + "address": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "2.0.0", + "advancedPoolHooks": null, + "supportsV2Features": true + } + }, + "137": { + "chainId": 137, + "chainName": "Polygon", + "decimals": 18, + "destinations": ["1"], + "name": "BetSwirl Token", + "poolAddress": "0x5678...9ABC", + "poolType": "burnMint", + "symbol": "BETS", + "tokenAddress": "0xDEF0...1234", + "customFinality": { + "hasCustomFinality": true, + "minBlockConfirmation": 5 + }, + "ccvConfig": { + "thresholdAmount": "5000000000000000000000" + }, + "pool": { + "address": "0x5678...9ABC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "2.0.0", + "advancedPoolHooks": null, + "supportsV2Features": true + } + }, + "56": { + "chainId": 56, + "chainName": "BNB Smart Chain", + "decimals": 18, + "destinations": ["1"], + "name": "BetSwirl Token", + "poolAddress": "0xABCD...1234", + "poolType": "burnMint", + "symbol": "BETS", + "tokenAddress": "0x9876...FEDC", + "customFinality": { + "hasCustomFinality": null, + "minBlockConfirmation": null + }, + "ccvConfig": { + "thresholdAmount": null + }, + "pool": { + "address": "0xABCD...1234", + "rawType": "BurnMint", + "type": "burnMint", + "version": "2.0.0", + "advancedPoolHooks": null, + "supportsV2Features": true + } + } + } + } + }, + "v1Pool": { + "summary": "v1.x pool (GHO) with CCV features not supported", + "description": "For v1.x pools (supportsV2Features=false), both ccvConfig and customFinality are null because these features are not supported by v1.x pools.", + "value": { + "metadata": { + "environment": "mainnet", + "timestamp": "2025-12-10T12:00:00Z", + "requestId": "456e7890-e89b-12d3-a456-426614174000", + "tokenSymbol": "GHO", + "chainCount": 1 + }, + "data": { + "1": { + "chainId": 1, + "chainName": "Ethereum", + "decimals": 18, + "destinations": ["42161"], + "name": "Gho Token", + "poolAddress": "0xGHO1...5678", + "poolType": "lockRelease", + "symbol": "GHO", + "tokenAddress": "0x40D1...2C2f", + "customFinality": null, + "ccvConfig": null, + "pool": { + "address": "0xGHO1...5678", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0", + "advancedPoolHooks": null, + "supportsV2Features": false + } + } + } + } + } + } + } + } + }, + "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}/chains/{chain}": { + "get": { + "tags": ["tokens"], + "summary": "Retrieve token directory data for a specific chain", + "description": "Returns detailed token configuration for a specific chain, including pool information, CCV (Cross-Chain Verifier) configuration, and lane-specific verifiers and rate limits. This endpoint provides the data needed for cross-chain token transfer interfaces.", + "operationId": "getTokenDirectory", + "parameters": [ + { + "name": "tokenCanonicalSymbol", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The canonical symbol for the token (e.g., LINK, USDC, LBTC)", + "example": "LBTC" + }, + { + "name": "chain", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The source chain identifier (e.g., mainnet, ethereum-testnet-sepolia)", + "example": "mainnet" + }, + { + "name": "environment", + "in": "query", + "required": true, + "schema": { + "type": "string", + "enum": ["mainnet", "testnet"] + }, + "description": "The network environment to query" + }, + { + "name": "outputKey", + "in": "query", + "schema": { + "type": "string", + "enum": ["chainId", "selector", "internalId"], + "default": "chainId" + }, + "description": "Key format to use for lane keys in the response" + }, + { + "name": "internalIdFormat", + "in": "query", + "schema": { + "type": "string", + "enum": ["directory", "selector"], + "default": "selector" + }, + "description": "Format for internalId values in the response. 'selector' uses canonical selector names (e.g., 'ethereum-mainnet'), 'directory' uses chains.json keys (e.g., 'mainnet')." + } + ], + "responses": { + "200": { + "description": "Successful response with token directory data", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/TokenDirectoryApiResponse" + }, + "examples": { + "v2Pool": { + "summary": "v2.0 pool (LBTC) with CCV features enabled", + "description": "For v2.0+ pools (supportsV2Features=true), ccvConfig contains thresholdAmount and verifiers include additional threshold verifiers in aboveThreshold array. customFinality shows block confirmation settings.", + "value": { + "metadata": { + "environment": "mainnet", + "timestamp": "2025-12-10T12:00:00Z", + "requestId": "123e4567-e89b-12d3-a456-426614174000", + "symbol": "LBTC", + "sourceChain": "ethereum-mainnet" + }, + "data": { + "internalId": "ethereum-mainnet", + "chainId": 1, + "selector": "5009297550715157269", + "token": { + "address": "0x8236a87084f8B84306f72007F36F2618A5634494", + "decimals": 8 + }, + "pool": { + "address": "0x88E18636EfFC3b3cd520FC72B710eb99C0017BC7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "2.0.0", + "advancedPoolHooks": null, + "supportsV2Features": true + }, + "ccvConfig": { + "thresholdAmount": "100000000000" + }, + "customFinality": { + "hasCustomFinality": true, + "minBlockConfirmation": 5 + }, + "outboundLanes": { + "8453": { + "internalId": "ethereum-mainnet-base-1", + "chainId": 8453, + "selector": "15971525489660198786", + "rateLimits": { + "standard": { + "capacity": "3490000000", + "rate": "323148", + "isEnabled": true + }, + "custom": { + "capacity": "6980000000", + "rate": "646296", + "isEnabled": true + } + }, + "fees": { + "standardTransferFeeBps": 10, + "customTransferFeeBps": 25 + }, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": [ + "0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", + "0xF4c7E640EdA248ef95972845a62bdC74237805dB" + ] + } + } + }, + "inboundLanes": { + "8453": { + "internalId": "ethereum-mainnet-base-1", + "chainId": 8453, + "selector": "15971525489660198786", + "rateLimits": { + "standard": null, + "custom": null + }, + "fees": null, + "verifiers": { + "belowThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "aboveThreshold": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"] + } + } + } + } + } + }, + "v1Pool": { + "summary": "v1.x pool (GHO) with CCV features not supported", + "description": "For v1.x pools (supportsV2Features=false), both ccvConfig and customFinality are null because these features are not supported. Verifiers in lanes are also null.", + "value": { + "metadata": { + "environment": "mainnet", + "timestamp": "2025-12-10T12:00:00Z", + "requestId": "456e7890-e89b-12d3-a456-426614174000", + "symbol": "GHO", + "sourceChain": "ethereum-mainnet" + }, + "data": { + "internalId": "ethereum-mainnet", + "chainId": 1, + "selector": "5009297550715157269", + "token": { + "address": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "decimals": 18 + }, + "pool": { + "address": "0xGhoPool123...", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0", + "advancedPoolHooks": null, + "supportsV2Features": false + }, + "ccvConfig": null, + "customFinality": null, + "outboundLanes": { + "42161": { + "internalId": "arbitrum-mainnet", + "chainId": 42161, + "selector": "4949039107694359620", + "rateLimits": { + "standard": { + "capacity": "5000000000000000000000", + "rate": "1670000000000000000", + "isEnabled": true + }, + "custom": null + }, + "fees": null, + "verifiers": null + } + }, + "inboundLanes": {} + } + } + } + } + } + } + }, + "400": { + "description": "Invalid request parameters", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + } + } + } + }, + "404": { + "description": "Token or chain not found", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + }, + "example": { + "error": "NOT_FOUND", + "message": "Token 'INVALID' not found on chain 'mainnet'" + } + } + } + }, + "500": { + "description": "Internal server error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ErrorResponse" + } + } + } + } + } + } + }, "/lanes": { "get": { "tags": ["lanes"], @@ -516,6 +1004,16 @@ "default": "chainId" }, "description": "Key format to use for organizing the lane keys in the response" + }, + { + "name": "internalIdFormat", + "in": "query", + "schema": { + "type": "string", + "enum": ["directory", "selector"], + "default": "selector" + }, + "description": "Format for internal IDs in the response. 'selector' uses canonical selector names (e.g., 'ethereum-mainnet'), 'directory' uses chains.json keys (e.g., 'mainnet'). Only applies when outputKey=internalId." } ], "responses": { @@ -1172,6 +1670,108 @@ } } }, + "TokenDetailChainData": { + "type": "object", + "description": "Extended token chain data with custom finality and CCV information", + "allOf": [ + { + "$ref": "#/components/schemas/TokenChainData" + }, + { + "type": "object", + "properties": { + "customFinality": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/CustomFinalityConfig" }], + "description": "Custom finality configuration for v2.0+ pools. Null for v1.x pools (check pool.supportsV2Features). When present with hasCustomFinality=null and minBlockConfirmation=null, indicates downstream API error." + }, + "ccvConfig": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/CCVConfig" }], + "description": "CCV configuration for v2.0+ pools. Null for v1.x pools (check pool.supportsV2Features). When present with thresholdAmount=null, indicates downstream API error." + }, + "pool": { + "nullable": true, + "type": "object", + "properties": { + "address": { + "type": "string", + "description": "Pool contract address" + }, + "rawType": { + "type": "string", + "description": "Raw pool type from configuration (e.g., 'LockRelease', 'BurnMint')" + }, + "type": { + "type": "string", + "enum": ["lockRelease", "burnMint", "usdc", "feeTokenOnly"], + "description": "Normalized pool type" + }, + "version": { + "type": "string", + "description": "Pool contract version" + }, + "advancedPoolHooks": { + "type": "string", + "nullable": true, + "description": "Address of advanced pool hooks contract, or null if not configured" + }, + "supportsV2Features": { + "type": "boolean", + "description": "Whether this pool supports v2 features (customFinality, ccvConfig). When true and these fields have null values inside, it indicates a downstream API error rather than feature not supported." + } + }, + "description": "Pool information including version, hooks, and v2 feature support flag" + } + } + } + ] + }, + "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" + } + } + }, "TokenDetails": { "type": "object", "required": ["symbol", "lanes", "chains"], @@ -1246,6 +1846,304 @@ "description": "List of tokens that were ignored due to configuration issues" } } + }, + "TokenDirectoryMetadata": { + "type": "object", + "required": ["environment", "timestamp", "requestId", "symbol", "sourceChain"], + "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" + }, + "symbol": { + "type": "string", + "description": "Canonical symbol of the requested token" + }, + "sourceChain": { + "type": "string", + "description": "Source chain identifier" + } + } + }, + "LaneVerifiers": { + "type": "object", + "description": "Pre-computed verifier sets for different transfer amounts. Only present for v2.0+ pools (supportsV2Features=true). For v1.x pools, the entire verifiers field is null. Values: empty array [] = no verifiers configured, [addr1, ...] = verifiers configured, null = downstream API error.", + "required": ["belowThreshold", "aboveThreshold"], + "properties": { + "belowThreshold": { + "nullable": true, + "type": "array", + "items": { + "type": "string" + }, + "description": "Verifier addresses used when transfer amount is below the threshold. Empty array [] if no verifiers configured, null if downstream API error." + }, + "aboveThreshold": { + "nullable": true, + "type": "array", + "items": { + "type": "string" + }, + "description": "Verifier addresses used when transfer amount is at or above the threshold (includes all belowThreshold verifiers plus additional threshold verifiers). Empty array [] if no verifiers configured, null if downstream API error." + } + } + }, + "RateLimiterConfig": { + "type": "object", + "description": "Rate limit configuration for a single direction (in or out)", + "required": ["capacity", "rate", "isEnabled"], + "properties": { + "capacity": { + "type": "string", + "description": "Maximum capacity of the rate limiter bucket (in token's smallest unit)" + }, + "rate": { + "type": "string", + "description": "Rate at which the bucket refills (tokens per second in smallest unit)" + }, + "isEnabled": { + "type": "boolean", + "description": "Whether rate limiting is enabled" + } + } + }, + "DirectionalRateLimits": { + "type": "object", + "description": "Rate limits for both directions (in and out) on a lane", + "properties": { + "in": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/RateLimiterConfig" }], + "description": "Inbound rate limit configuration" + }, + "out": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/RateLimiterConfig" }], + "description": "Outbound rate limit configuration" + } + } + }, + "TokenRateLimits": { + "type": "object", + "description": "Rate limits for both standard and custom transfers, each with in/out directions", + "required": ["standard", "custom"], + "properties": { + "standard": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/DirectionalRateLimits" }], + "description": "Standard transfer rate limit configuration" + }, + "custom": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/DirectionalRateLimits" }], + "description": "Custom (custom block confirmation) transfer rate limit configuration" + } + } + }, + "LaneFees": { + "type": "object", + "description": "Transfer fees for a lane in basis points (1 bps = 0.01%)", + "required": ["standardTransferFeeBps", "customTransferFeeBps"], + "properties": { + "standardTransferFeeBps": { + "type": "integer", + "description": "Standard transfer fee in basis points" + }, + "customTransferFeeBps": { + "type": "integer", + "description": "custom (custom block confirmation) transfer fee in basis points" + } + } + }, + "TokenDirectoryLane": { + "type": "object", + "description": "Lane configuration for outbound or inbound transfers. Use pool.supportsV2Features to interpret verifiers: false + null = v1.x pool (not supported), true + {null, null} = downstream error, true + {[], []} = not configured, true + {[...], [...]} = configured.", + "required": ["internalId", "chainId", "selector", "rateLimits", "fees", "verifiers"], + "properties": { + "internalId": { + "type": "string", + "description": "Internal identifier of the remote chain (destination for outbound, source for inbound)" + }, + "chainId": { + "oneOf": [{ "type": "integer" }, { "type": "string" }], + "description": "Chain ID of the remote chain" + }, + "selector": { + "type": "string", + "description": "CCIP chain selector of the remote chain" + }, + "rateLimits": { + "$ref": "#/components/schemas/TokenRateLimits", + "description": "Rate limits for both standard and custom transfers, with in/out directions" + }, + "fees": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/LaneFees" }], + "description": "Transfer fees in basis points, or null if not configured" + }, + "verifiers": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/LaneVerifiers" }], + "description": "Verifier configuration. For v1.x pools (pool.supportsV2Features=false): null. For v2.x pools: object with arrays or null values." + } + } + }, + "CCVConfig": { + "type": "object", + "description": "Cross-Chain Verifier (CCV) configuration for a pool. Only present for v2.0+ pools (check pool.supportsV2Features). For v1.x pools, the entire ccvConfig field is null.", + "required": ["thresholdAmount"], + "properties": { + "thresholdAmount": { + "type": "string", + "nullable": true, + "description": "Amount threshold (in token's smallest unit) above which additional threshold verifiers are required. Values: '0' = CCV not configured for this pool, 'N' (positive number) = CCV configured with threshold N, null = downstream API error fetching CCV config." + } + } + }, + "TokenDirectoryTokenInfo": { + "type": "object", + "required": ["address", "decimals"], + "properties": { + "address": { + "type": "string", + "description": "Token contract address" + }, + "decimals": { + "type": "integer", + "description": "Token decimals" + } + } + }, + "TokenDirectoryPoolInfo": { + "type": "object", + "required": ["address", "rawType", "type", "version", "advancedPoolHooks", "supportsV2Features"], + "properties": { + "address": { + "type": "string", + "description": "Pool contract address" + }, + "rawType": { + "type": "string", + "description": "Raw pool type from configuration (e.g., 'LockRelease', 'BurnMint')" + }, + "type": { + "type": "string", + "enum": ["lockRelease", "burnMint", "usdc", "feeTokenOnly"], + "description": "Normalized pool type" + }, + "version": { + "type": "string", + "description": "Pool contract version" + }, + "advancedPoolHooks": { + "type": "string", + "nullable": true, + "description": "Address of advanced pool hooks contract, or null if not configured" + }, + "supportsV2Features": { + "type": "boolean", + "description": "Whether this pool supports v2 features (customFinality, ccvConfig). When true and these fields have null values inside, it indicates a downstream API error rather than feature not supported." + } + } + }, + "CustomFinalityConfig": { + "type": "object", + "description": "Custom finality configuration for the token on this chain. Only present for v2.0+ pools (check pool.supportsV2Features). For v1.x pools, the entire customFinality field is null. When both hasCustomFinality and minBlockConfirmation are null inside the object, it indicates a downstream API error for a v2.x pool.", + "required": ["hasCustomFinality", "minBlockConfirmation"], + "properties": { + "hasCustomFinality": { + "type": "boolean", + "nullable": true, + "description": "Whether custom finality is enabled (derived from minBlockConfirmation > 0). Null indicates downstream API error." + }, + "minBlockConfirmation": { + "type": "integer", + "nullable": true, + "description": "Minimum block confirmations required. Null indicates downstream API error." + } + } + }, + "TokenDirectoryData": { + "type": "object", + "description": "Token directory data for a specific chain", + "required": [ + "internalId", + "chainId", + "selector", + "token", + "pool", + "ccvConfig", + "customFinality", + "outboundLanes", + "inboundLanes" + ], + "properties": { + "internalId": { + "type": "string", + "description": "Internal chain identifier" + }, + "chainId": { + "oneOf": [{ "type": "integer" }, { "type": "string" }], + "description": "Chain ID" + }, + "selector": { + "type": "string", + "description": "CCIP chain selector" + }, + "token": { + "$ref": "#/components/schemas/TokenDirectoryTokenInfo" + }, + "pool": { + "$ref": "#/components/schemas/TokenDirectoryPoolInfo" + }, + "ccvConfig": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/CCVConfig" }], + "description": "CCV configuration for v2.0+ pools. Null for v1.x pools (check pool.supportsV2Features). When present with thresholdAmount=null, indicates downstream API error." + }, + "customFinality": { + "nullable": true, + "allOf": [{ "$ref": "#/components/schemas/CustomFinalityConfig" }], + "description": "Custom finality configuration for v2.0+ pools. Null for v1.x pools (check pool.supportsV2Features). When present with hasCustomFinality=null and minBlockConfirmation=null, indicates downstream API error." + }, + "outboundLanes": { + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TokenDirectoryLane" + }, + "description": "Outbound lanes indexed by destination chain ID" + }, + "inboundLanes": { + "type": "object", + "additionalProperties": { + "$ref": "#/components/schemas/TokenDirectoryLane" + }, + "description": "Inbound lanes indexed by source chain ID" + } + } + }, + "TokenDirectoryApiResponse": { + "type": "object", + "required": ["metadata", "data"], + "properties": { + "metadata": { + "$ref": "#/components/schemas/TokenDirectoryMetadata" + }, + "data": { + "$ref": "#/components/schemas/TokenDirectoryData" + } + } } } } diff --git a/src/__mocks__/ccv-config-mainnet.json b/src/__mocks__/ccv-config-mainnet.json new file mode 100644 index 00000000000..e57b9aef15a --- /dev/null +++ b/src/__mocks__/ccv-config-mainnet.json @@ -0,0 +1,333 @@ +{ + "LBTC": { + "mainnet": { + "thresholdAmount": "100000000000", + "outboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + }, + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + }, + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + }, + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + } + } + }, + "ethereum-mainnet-arbitrum-1": { + "thresholdAmount": "50000000000", + "outboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191"], + "threshold": ["0xBF38331E34ef7f248020611bB31Be0576D06413D"] + }, + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet-base-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191"], + "threshold": ["0xBF38331E34ef7f248020611bB31Be0576D06413D"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191"], + "threshold": [] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet-arbitrum-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191"], + "threshold": [] + } + } + }, + "ethereum-mainnet-base-1": { + "thresholdAmount": "50000000000", + "outboundCCVs": { + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755"], + "threshold": [] + }, + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet-base-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755"], + "threshold": [] + } + } + } + }, + "USDC": { + "mainnet": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + }, + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + }, + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x2edAc8B8928c4e1Ed559e619b6A8a4aaCe9Ef18A"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + }, + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + }, + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x2edAc8B8928c4e1Ed559e619b6A8a4aaCe9Ef18A"], + "threshold": [] + } + } + }, + "ethereum-mainnet-base-1": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0x09521B0B5BB2d4406124c0207Cf551829B45f84d"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0x09521B0B5BB2d4406124c0207Cf551829B45f84d"], + "threshold": [] + } + } + }, + "ethereum-mainnet-arbitrum-1": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0x768a1a3B321126A8B214d7376D48465C7f6Fa061"], + "threshold": [] + } + } + }, + "ethereum-mainnet-optimism-1": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x2edAc8B8928c4e1Ed559e619b6A8a4aaCe9Ef18A"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0x2edAc8B8928c4e1Ed559e619b6A8a4aaCe9Ef18A"], + "threshold": [] + } + } + } + }, + "LINK": { + "mainnet": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + }, + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0x76Aa17dCda9E8529149E76e9ffaE4aD1C4AD701B"] + }, + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + }, + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + } + } + }, + "ethereum-mainnet-arbitrum-1": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0xBF38331E34ef7f248020611bB31Be0576D06413D"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + }, + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet-base-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0xBF38331E34ef7f248020611bB31Be0576D06413D"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0xBF38331E34ef7f248020611bB31Be0576D06413D"], + "threshold": [] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet-arbitrum-1": { + "base": ["0xe9c6945281028cb6530d43F998eE539dFE2a9191", "0xBF38331E34ef7f248020611bB31Be0576D06413D"], + "threshold": [] + } + } + }, + "ethereum-mainnet-base-1": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + }, + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet-base-1": { + "base": ["0x0aA145a62153190B8f0D3cA00c441e451529f755", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + } + } + }, + "ethereum-mainnet-optimism-1": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": ["0x76Aa17dCda9E8529149E76e9ffaE4aD1C4AD701B"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + "threshold": [] + } + } + } + }, + "wstETH": { + "mainnet": { + "thresholdAmount": "500000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-arbitrum-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc"] + }, + "ethereum-mainnet-to-ethereum-mainnet-optimism-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0x76Aa17dCda9E8529149E76e9ffaE4aD1C4AD701B"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-arbitrum-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + }, + "ethereum-mainnet-optimism-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + } + } + } + }, + "BETS": { + "mainnet": { + "thresholdAmount": "50000000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-to-avalanche-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + }, + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } + }, + "inboundCCVs": { + "avalanche-mainnet-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + }, + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + } + } + }, + "ethereum-mainnet-base-1": { + "thresholdAmount": "25000000000000000000000000", + "outboundCCVs": { + "ethereum-mainnet-base-1-to-ethereum-mainnet": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": ["0xF4c7E640EdA248ef95972845a62bdC74237805dB"] + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-ethereum-mainnet-base-1": { + "base": ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + "threshold": [] + } + } + }, + "bsc-mainnet": { + "thresholdAmount": "0", + "outboundCCVs": { + "binance_smart_chain-mainnet-to-ethereum-mainnet": { + "base": null, + "threshold": null + } + }, + "inboundCCVs": { + "ethereum-mainnet-to-binance_smart_chain-mainnet": { + "base": null, + "threshold": null + } + } + } + } +} diff --git a/src/__mocks__/ccv-config-testnet.json b/src/__mocks__/ccv-config-testnet.json new file mode 100644 index 00000000000..572c2b35afa --- /dev/null +++ b/src/__mocks__/ccv-config-testnet.json @@ -0,0 +1,207 @@ +{ + "CCIP-BnM": { + "ethereum-testnet-sepolia": { + "thresholdAmount": "1000000000000000000000", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": ["0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": ["0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": ["0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29"], + "threshold": [] + } + } + } + }, + "USDC": { + "ethereum-testnet-sepolia": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x0B8B717f8D65DeC5c9e440A9eD51f48887E83c1b"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x0B8B717f8D65DeC5c9e440A9eD51f48887E83c1b"], + "threshold": [] + } + } + }, + "base-sepolia": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0xD3ED6fC9fd22412764ac2Ef64fB664b9393dF9F2"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0xD3ED6fC9fd22412764ac2Ef64fB664b9393dF9F2"], + "threshold": [] + } + } + }, + "arbitrum-sepolia": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0x051665f2455116e929b9972c36d23070F5054Ce0"], + "threshold": [] + } + } + }, + "optimism-sepolia": { + "thresholdAmount": "0", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x0B8B717f8D65DeC5c9e440A9eD51f48887E83c1b"], + "threshold": [] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x0B8B717f8D65DeC5c9e440A9eD51f48887E83c1b"], + "threshold": [] + } + } + } + }, + "LINK": { + "ethereum-testnet-sepolia": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + } + } + }, + "base-sepolia": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + }, + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0x7EEdf2DBC74924Cb1f23fC8845CD35bF18b697de", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + } + } + }, + "arbitrum-sepolia": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0xb0B4b5847E35033766d5B49CD9C0fF40F459321F"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0xb0B4b5847E35033766d5B49CD9C0fF40F459321F"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-arbitrum-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0xb0B4b5847E35033766d5B49CD9C0fF40F459321F"], + "threshold": [] + }, + "ethereum-testnet-sepolia-to-base-sepolia": { + "base": ["0xa132F089492CcE5f1D79483a9e4552f37266ed01", "0xb0B4b5847E35033766d5B49CD9C0fF40F459321F"], + "threshold": [] + } + } + }, + "optimism-sepolia": { + "thresholdAmount": "10000000000000000000000", + "outboundCCVs": { + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": ["0x34E63B2B9491570FCc01CC0b288569851EF47B27"] + } + }, + "inboundCCVs": { + "ethereum-testnet-sepolia-to-optimism-sepolia": { + "base": ["0x91339eb99C4c2Be9A071203DD99E014A3189FD29", "0x56c4b06A0F59AcFAAb58FEA0d7Ca4090695F683f"], + "threshold": [] + } + } + } + } +} diff --git a/src/__mocks__/pool-version-overrides-mainnet.json b/src/__mocks__/pool-version-overrides-mainnet.json new file mode 100644 index 00000000000..e907c7c48f3 --- /dev/null +++ b/src/__mocks__/pool-version-overrides-mainnet.json @@ -0,0 +1,38 @@ +{ + "LBTC": { + "mainnet": "2.0.0", + "arbitrum-mainnet": "2.0.0", + "base-mainnet": "2.0.0", + "ethereum-mainnet-arbitrum-1": "2.0.0", + "ethereum-mainnet-base-1": "2.0.0" + }, + "wstETH": { + "mainnet": "2.0.0" + }, + "USDC": { + "mainnet": "2.0.0", + "base-mainnet": "2.0.0", + "arbitrum-mainnet": "2.0.0", + "optimism-mainnet": "2.0.0", + "ethereum-mainnet-arbitrum-1": "2.0.0", + "ethereum-mainnet-base-1": "2.0.0", + "ethereum-mainnet-optimism-1": "2.0.0" + }, + "LINK": { + "mainnet": "2.0.0", + "arbitrum-mainnet": "2.0.0", + "base-mainnet": "2.0.0", + "optimism-mainnet": "2.0.0", + "ethereum-mainnet-arbitrum-1": "2.0.0", + "ethereum-mainnet-base-1": "2.0.0", + "ethereum-mainnet-optimism-1": "2.0.0" + }, + "BETS": { + "mainnet": "2.0.0", + "avalanche-mainnet": "2.0.0", + "matic-mainnet": "2.0.0", + "bsc-mainnet": "2.0.0", + "ethereum-mainnet-arbitrum-1": "2.0.0", + "ethereum-mainnet-base-1": "2.0.0" + } +} diff --git a/src/__mocks__/pool-version-overrides-testnet.json b/src/__mocks__/pool-version-overrides-testnet.json new file mode 100644 index 00000000000..e79f0fd793c --- /dev/null +++ b/src/__mocks__/pool-version-overrides-testnet.json @@ -0,0 +1,17 @@ +{ + "CCIP-BnM": { + "ethereum-testnet-sepolia": "2.0.0" + }, + "USDC": { + "ethereum-testnet-sepolia": "2.0.0", + "base-sepolia": "2.0.0", + "arbitrum-sepolia": "2.0.0", + "optimism-sepolia": "2.0.0" + }, + "LINK": { + "ethereum-testnet-sepolia": "2.0.0", + "base-sepolia": "2.0.0", + "arbitrum-sepolia": "2.0.0", + "optimism-sepolia": "2.0.0" + } +} diff --git a/src/__mocks__/rate-limits-mainnet.json b/src/__mocks__/rate-limits-mainnet.json new file mode 100644 index 00000000000..43f3ce8d293 --- /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": 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": "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": null, + "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": null, + "out": null + } + }, + "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": 0, + "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": 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" + } + } + }, + "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": 0, + "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": 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" + } + } + }, + "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" + } + }, + "fees": { + "standardTransferFeeBps": 10, + "customTransferFeeBps": 25 + } + }, + "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" + } + }, + "fees": { + "standardTransferFeeBps": 10, + "customTransferFeeBps": 25 + } + }, + "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..5b0e531d252 --- /dev/null +++ b/src/__mocks__/rate-limits-testnet.json @@ -0,0 +1,7469 @@ +{ + "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" + } + }, + "fees": { + "standardTransferFeeBps": 10, + "customTransferFeeBps": 25 + } + } + } + }, + "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 217883b1230..506e5349315 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..a8f87ff2b48 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,20 @@ 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 + advancedPoolHooks?: string +} + type PoolInfo = { tokenAddress: string allowListEnabled: boolean - poolAddress?: string - poolType: PoolType + pool: Pool name?: string symbol: string decimals: number @@ -232,3 +241,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/chains.json b/src/config/data/ccip/v1_2_0/mainnet/chains.json index ecb43780c32..cd3655737c0 100644 --- a/src/config/data/ccip/v1_2_0/mainnet/chains.json +++ b/src/config/data/ccip/v1_2_0/mainnet/chains.json @@ -624,7 +624,7 @@ "version": "1.0.0" }, "chainSelector": "1556008542357238666", - "feeTokens": ["GHO", "LINK", "WMNT"], + "feeTokens": ["LINK", "WMNT"], "registryModule": { "address": "0xf49f81b3d2F2a79b706621FA2D5934136352140c", "version": "1.6.0" @@ -1330,26 +1330,6 @@ "version": "1.5.0" } }, - "pharos-mainnet": { - "armProxy": { - "address": "0xF4486d70EBED800204898Ec99C812661551471dC", - "version": "1.0.0" - }, - "chainSelector": "7801139999541420232", - "feeTokens": ["LINK", "WPROS"], - "registryModule": { - "address": "0xE27dd9BF01B55ce6803c0d81386A04212c718b95", - "version": "1.6.0" - }, - "router": { - "address": "0x4e52dD94e9BCfeFE3C78153bDfB0AB1d30687297", - "version": "1.2.0" - }, - "tokenAdminRegistry": { - "address": "0xB79791184973589c38e114D43Eb8E4588C283A18", - "version": "1.5.0" - } - }, "plasma-mainnet": { "armProxy": { "address": "0xAEf7A922931848d2e731D5914f428b4E851d1Ad5", @@ -1610,7 +1590,7 @@ "version": "1.0.0" }, "chainSelector": "16978377838628290997", - "feeTokens": ["LINK", "WUSDT0"], + "feeTokens": ["LINK", "WgUSDT"], "registryModule": { "address": "0x7CcFb2Fa43637b4858Cb1269CF0d64a99e8C668a", "version": "1.6.0" @@ -1751,5 +1731,25 @@ "address": "0x791BA3010A5BFeA773d2cfD6Ea4D0Ce9627856eB", "version": "1.5.0" } + }, + "pharos-mainnet": { + "armProxy": { + "address": "0xF4486d70EBED800204898Ec99C812661551471dC", + "version": "1.0.0" + }, + "chainSelector": "7801139999541420232", + "feeTokens": ["LINK", "WPROS"], + "registryModule": { + "address": "0xE27dd9BF01B55ce6803c0d81386A04212c718b95", + "version": "1.6.0" + }, + "router": { + "address": "0x4e52dD94e9BCfeFE3C78153bDfB0AB1d30687297", + "version": "1.2.0" + }, + "tokenAdminRegistry": { + "address": "0xB79791184973589c38e114D43Eb8E4588C283A18", + "version": "1.5.0" + } } } 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 fee0d692abb..30d84143f83 100644 --- a/src/config/data/ccip/v1_2_0/mainnet/lanes.json +++ b/src/config/data/ccip/v1_2_0/mainnet/lanes.json @@ -10,22 +10,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-arbitrum-1": { "offRamp": { @@ -37,22 +22,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": { @@ -64,22 +34,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": { @@ -102,78 +57,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": { @@ -185,22 +69,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"] }, "solana-mainnet": { "offRamp": { @@ -212,22 +81,7 @@ "enforceOutOfOrder": true, "version": "1.6.0" }, - "supportedTokens": { - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["W0G"] } }, "ab-mainnet": { @@ -241,36 +95,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": { @@ -284,22 +109,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - }, - "out": { - "capacity": "300000000000000000000", - "isEnabled": true, - "rate": "3472000000000000" - } - } - } - } + "supportedTokens": ["wstETH"] } }, "apechain-mainnet": { @@ -381,50 +191,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": ["brBTC", "uniBTC", "USD1"] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -447,22 +214,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": { @@ -529,64 +281,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": ["brBTC", "LINK", "uniBTC", "USD1"] }, "plasma-mainnet": { "offRamp": { @@ -609,22 +304,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": { @@ -660,22 +340,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["savUSD"] }, "bitcoin-mainnet-bitlayer-1": { "offRamp": { @@ -687,22 +352,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": { @@ -714,36 +364,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": { @@ -755,120 +376,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" - } - } - }, - "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", "savBTC", "SHIB", "SolvBTC", "xSolvBTC", "YBTC.B"] }, "core-mainnet": { "offRamp": { @@ -902,218 +410,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" - } - } - }, - "LEND": { - "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" - } - } - }, - "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", + "LEND", + "savUSD", + "SDY", + "SHIB", + "SILO", + "SolvBTC", + "USDC", + "USDM", + "VRTX", + "wstLINK", + "xSILO", + "xSolvBTC" + ] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -1125,232 +438,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" - } - } - }, - "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" - } - } - }, - "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", + "LBTC", + "LEND", + "Memento", + "MYST", + "ORNG", + "SHIB", + "SolvBTC", + "USDC", + "USDM", + "VRTX", + "wstLINK", + "xSolvBTC" + ] }, "ethereum-mainnet-ink-1": { "offRamp": { @@ -1362,50 +467,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": { @@ -1417,162 +479,19 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "avBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "avBTCx": { - "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": [ + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "savBTC", + "savETH", + "savUSD", + "SolvBTC", + "xSolvBTC" + ] }, "ethereum-mainnet-mantle-1": { "offRamp": { @@ -1584,36 +503,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "ethereum-mainnet-optimism-1": { "offRamp": { @@ -1625,64 +515,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": { @@ -1694,36 +527,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": { @@ -1746,22 +550,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"] }, "etherlink-mainnet": { "offRamp": { @@ -1795,512 +584,44 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "avBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "avBTCx": { - "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" - } - } - }, - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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" - } - } - }, - "FUSD": { - "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": [ + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "BETS", + "BOLD", + "BONE", + "BTC.b", + "BYTES", + "EmCH", + "FUSD", + "GHO", + "LBTC", + "LEASH", + "LEND", + "Memento", + "MYST", + "oXAUT", + "savBTC", + "savETH", + "savUSD", + "SDY", + "SHIB", + "SILO", + "SolvBTC", + "tETH", + "TREE", + "USDC", + "USDM", + "wstLINK", + "wstPOL", + "xSILO", + "xSolvBTC", + "YBTC.B" + ] }, "matic-mainnet": { "offRamp": { @@ -2312,134 +633,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"] }, "megaeth-mainnet": { "offRamp": { @@ -2451,36 +645,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "monad-mainnet": { "offRamp": { @@ -2492,50 +657,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "NXPC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "NXPC"] }, "nexon-mainnet-henesys": { "offRamp": { @@ -2558,36 +680,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": { @@ -2599,50 +692,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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": ["BTC.b", "LBTC", "savUSD"] }, "sei-mainnet": { "offRamp": { @@ -2654,36 +704,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": { @@ -2706,22 +727,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": { @@ -2733,92 +739,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BOLD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "FUSD": { - "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", "FUSD", "LBTC", "SILO", "VRTX", "xSILO"] }, "stable-mainnet": { "offRamp": { @@ -2830,36 +751,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "tac-mainnet": { "offRamp": { @@ -2882,22 +774,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": { @@ -2909,22 +786,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": { @@ -2949,22 +811,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["savUSD"] }, "bitcoin-mainnet-bob-1": { "offRamp": { @@ -2976,50 +823,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": { @@ -3031,92 +835,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" - } - } - }, - "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" - } - } - }, - "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": ["beraBTC", "BR", "savUSD", "SolvBTC", "SolvBTC.BERA", "xSolvBTC"] }, "corn-mainnet": { "offRamp": { @@ -3139,64 +858,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" - } - } - }, - "savUSD": { - "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", "savUSD", "sDOLA"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -3208,50 +870,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": { @@ -3296,176 +915,20 @@ "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" - } - } - }, - "savUSD": { - "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", + "brBTC", + "DOLO", + "LBTC", + "pufETH", + "savUSD", + "sDOLA", + "SolvBTC", + "SolvBTC.BERA", + "uniBTC", + "xSolvBTC" + ] }, "matic-mainnet": { "offRamp": { @@ -3567,22 +1030,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": { @@ -3607,22 +1055,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": { @@ -3634,36 +1067,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": { @@ -3675,106 +1079,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", "uniBTC", "USDC", "USDT", "WETH", "wstETH", "YBTC.B"] }, "plasma-mainnet": { "offRamp": { @@ -3786,22 +1091,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": { @@ -3813,22 +1103,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": { @@ -3840,22 +1115,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": { @@ -3869,36 +1129,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": { @@ -3910,50 +1141,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": { @@ -3965,78 +1153,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": { @@ -4059,36 +1176,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": { @@ -4100,50 +1188,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": { @@ -4155,36 +1200,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": { @@ -4196,36 +1212,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": { @@ -4237,36 +1224,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": { @@ -4278,106 +1236,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", "uniBTC", "USDC", "USDT", "xSolvBTC"] }, "matic-mainnet": { "offRamp": { @@ -4389,36 +1248,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": { @@ -4430,36 +1260,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": { @@ -4471,50 +1272,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": { @@ -4526,22 +1284,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": { @@ -4555,22 +1298,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": { @@ -4584,22 +1312,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": { @@ -4611,22 +1324,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": { @@ -4699,22 +1397,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"] }, "aptos-mainnet": { "offRamp": { @@ -4726,50 +1409,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": ["brBTC", "uniBTC", "USD1"] }, "avalanche-mainnet": { "offRamp": { @@ -4781,120 +1421,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" - } - } - }, - "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", "savBTC", "SHIB", "SolvBTC", "xSolvBTC", "YBTC.B"] }, "berachain-mainnet": { "offRamp": { @@ -4906,92 +1433,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" - } - } - }, - "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" - } - } - }, - "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": ["beraBTC", "BR", "savUSD", "SolvBTC", "SolvBTC.BERA", "xSolvBTC"] }, "binance-smart-chain-mainnet-opbnb-1": { "offRamp": { @@ -5003,22 +1445,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": { @@ -5030,36 +1457,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": { @@ -5071,78 +1469,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": { @@ -5154,22 +1481,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": { @@ -5203,316 +1515,30 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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", + "FLUID", + "IXT", + "LAND", + "LEND", + "mBTC", + "RDP", + "savUSD", + "SDT", + "SolvBTC", + "STABLE", + "STBU", + "USDFI", + "VSN", + "W0G", + "WECO", + "WMTX", + "WSDM", + "wUSDx", + "xSolvBTC" + ] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -5524,372 +1550,34 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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", + "FLUID", + "IXT", + "LBTC", + "LEND", + "RAIN", + "RIZE", + "SAS", + "SKYA", + "SNOW", + "SolvBTC", + "TRADE", + "UNIO", + "USDO", + "W0G", + "WHY", + "WMTX", + "wUSDx", + "xGold", + "xSolvBTC" + ] }, "ethereum-mainnet-blast-1": { "offRamp": { @@ -5912,22 +1600,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": { @@ -5939,36 +1612,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": { @@ -5980,119 +1624,19 @@ "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", "savBTC", "savUSD", "SolvBTC", "TURTLE", "xSolvBTC"] }, "ethereum-mainnet-mantle-1": { "offRamp": { - "address": "0xA27056438FfA1f286AB197488808692F0db93F8B", - "version": "1.6.0" + "address": "0xd19C02763E1C67086fe6B74B7ced9ab9Da30c6A2", + "version": "1.5.0" }, "onRamp": { - "address": "0xf09AFe78d3c7d359b334d7cB88995751F7eC5E13", + "address": "0x94Cbb3011f87f0A14D19caaEc155D5985E58E259", "enforceOutOfOrder": false, - "version": "1.6.0" + "version": "1.5.0" }, - "supportedTokens": { - "VOOI": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["VOOI"] }, "ethereum-mainnet-mode-1": { "offRamp": { @@ -6104,22 +1648,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": { @@ -6131,36 +1660,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": { @@ -6172,22 +1672,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": { @@ -6232,50 +1717,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": { @@ -6298,876 +1740,70 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "POWER": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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" - } - } - }, - "syrupUSDT": { - "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" - } - } - }, - "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" - } - } - }, - "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", + "brBTC", + "BTR", + "CHEX", + "DOBO", + "EDEN", + "FF", + "FHE", + "FLUID", + "IXT", + "JCT", + "LBTC", + "LEASH", + "LEND", + "mBTC", + "mwBETH", + "POWER", + "RAIN", + "RIZE", + "SAS", + "savBTC", + "savUSD", + "SDT", + "SHIB", + "SKYA", + "SolvBTC", + "SolvBTC.BERA", + "STABLE", + "sUSD1+", + "syrupUSDT", + "TRADE", + "TREE", + "TURBO", + "TURTLE", + "uniBTC", + "UNIO", + "USD0", + "USD1", + "USDf", + "USDFI", + "USDO", + "USUAL", + "VOOI", + "VSN", + "W0G", + "WECO", + "WHY", + "WLFI", + "WMTX", + "WSDM", + "wUSDx", + "xGold", + "xSolvBTC" + ] }, "matic-mainnet": { "offRamp": { @@ -7179,232 +1815,24 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "SolvBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "2500000000000000000", - "isEnabled": true, - "rate": "115740000000000" - }, - "out": { - "capacity": "2500000000000000000", - "isEnabled": true, - "rate": "115740000000000" - } - } - }, - "SWCH": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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", + "RAIN", + "RIZE", + "SolvBTC", + "SWCH", + "THE", + "TRADE", + "WECO", + "WSDM", + "xGold", + "xSolvBTC" + ] }, "megaeth-mainnet": { "offRamp": { @@ -7416,22 +1844,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"] }, "mind-mainnet": { "offRamp": { @@ -7443,22 +1856,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": { @@ -7470,63 +1868,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } - }, - "plasma-mainnet": { - "offRamp": { - "address": "0xA27056438FfA1f286AB197488808692F0db93F8B", - "version": "1.6.0" - }, - "onRamp": { - "address": "0xf09AFe78d3c7d359b334d7cB88995751F7eC5E13", - "enforceOutOfOrder": false, - "version": "1.6.0" - }, - "supportedTokens": { - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - }, - "out": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - } - } - } - } + "supportedTokens": ["LBTC", "W0G"] }, "plume-mainnet": { "offRamp": { @@ -7538,22 +1880,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "sUSD1+": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["sUSD1+"] }, "polygon-mainnet-katana": { "offRamp": { @@ -7565,36 +1892,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": { @@ -7606,36 +1904,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": { @@ -7647,218 +1916,23 @@ "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" - } - } - }, - "USD1": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "USELESS": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "W0G": { - "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", + "elizaOS", + "FHE", + "ILMT", + "KNET", + "MEW", + "SolvBTC", + "SolvBTC.JUP", + "USD1", + "USELESS", + "W0G", + "WLFI", + "WMTX", + "XLAB", + "xSolvBTC" + ] }, "soneium-mainnet": { "offRamp": { @@ -7870,36 +1944,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": { @@ -7911,50 +1956,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": { @@ -7966,22 +1968,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": { @@ -8004,22 +1991,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": { @@ -8055,22 +2027,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": { @@ -8104,22 +2061,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": { @@ -8175,78 +2117,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": { @@ -8416,36 +2287,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": { @@ -8529,64 +2371,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-arbitrum-1": { @@ -8600,22 +2385,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": { @@ -8649,218 +2419,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" - } - } - }, - "LEND": { - "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" - } - } - }, - "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", + "LEND", + "savUSD", + "SDY", + "SHIB", + "SILO", + "SolvBTC", + "USDC", + "USDM", + "VRTX", + "wstLINK", + "xSILO", + "xSolvBTC" + ] }, "berachain-mainnet": { "offRamp": { @@ -8872,64 +2447,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" - } - } - }, - "savUSD": { - "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", "savUSD", "sDOLA"] }, "bitcoin-mainnet-bob-1": { "offRamp": { @@ -8941,36 +2459,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": { @@ -8982,316 +2471,30 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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", + "FLUID", + "IXT", + "LAND", + "LEND", + "mBTC", + "RDP", + "savUSD", + "SDT", + "SolvBTC", + "STABLE", + "STBU", + "USDFI", + "VSN", + "W0G", + "WECO", + "WMTX", + "WSDM", + "wUSDx", + "xSolvBTC" + ] }, "celo-mainnet": { "offRamp": { @@ -9336,596 +2539,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" - } - } - }, - "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" - } - } - }, - "SDL": { - "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", + "clBTC", + "DOBO", + "DPI", + "dsETH", + "EARNM", + "FLUID", + "GHO", + "hyETH", + "IBTC", + "IXT", + "LDY", + "LEND", + "MVI", + "NUON", + "OVER", + "SDL", + "sDOLA", + "sINV", + "SolvBTC", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "USD+", + "USDC", + "USDM", + "VRTX", + "W0G", + "WETH", + "WHSK", + "WMTX", + "wOETH", + "WOLF", + "wstLINK", + "wUSDx", + "xSolvBTC", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-blast-1": { "offRamp": { @@ -9937,22 +2594,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": { @@ -9964,22 +2606,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": { @@ -9991,50 +2618,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": { @@ -10046,78 +2630,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "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" - } - } - }, - "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": ["savUSD", "SolvBTC", "xrETH", "xRPL", "xSolvBTC"] }, "ethereum-mainnet-mantle-1": { "offRamp": { @@ -10129,36 +2642,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000000000000000000", - "isEnabled": true, - "rate": "57870000000000000000" - }, - "out": { - "capacity": "5000000000000000000000000", - "isEnabled": true, - "rate": "57870000000000000000" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "ethereum-mainnet-mode-1": { "offRamp": { @@ -10170,22 +2654,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": { @@ -10197,232 +2666,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", + "clBTC", + "IBTC", + "MILO", + "OVER", + "SD", + "sDOLA", + "stTAO", + "USDC", + "USDM", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-unichain-1": { "offRamp": { @@ -10434,36 +2695,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": { @@ -10486,22 +2718,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": { @@ -10513,22 +2730,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": { @@ -10562,1030 +2764,81 @@ "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" - } - } - }, - "savUSD": { - "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", + "clBTC", + "DFX", + "DOBO", + "DOLO", + "DPI", + "dsETH", + "EARNM", + "egETH", + "ETHx", + "FHE", + "FLUID", + "GHO", + "hyETH", + "IBTC", + "IXT", + "LDY", + "LEASH", + "LEND", + "mBTC", + "mDLP", + "mmETH", + "mstETH", + "mswETH", + "MVI", + "NPC", + "NUON", + "OVER", + "pufETH", + "savUSD", + "SD", + "SDL", + "sDOLA", + "SDT", + "SDY", + "SHIB", + "SILO", + "sINV", + "SolvBTC", + "STABLE", + "STBU", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "syrupUSDC", + "tETH", + "uniBTC", + "USD+", + "USDC", + "USDFI", + "USDM", + "VSN", + "W0G", + "WECO", + "WETH", + "WFRAGSOL", + "WMTX", + "wOETH", + "WOLF", + "WSDM", + "wstLINK", + "wUSDx", + "xrETH", + "xRPL", + "xSILO", + "xSolvBTC", + "ZUN", + "zunETH", + "zunUSD" + ] }, "matic-mainnet": { "offRamp": { @@ -11597,218 +2850,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", + "SolvBTC", + "STBU", + "USDC", + "USDM", + "WECO", + "WSDM", + "wstLINK", + "xSolvBTC" + ] }, "mind-mainnet": { "offRamp": { @@ -11831,22 +2889,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"] }, "plasma-mainnet": { "offRamp": { @@ -11858,64 +2901,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" - } - } - }, - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BOLD", "FLUID", "GHO", "savUSD"] }, "sei-mainnet": { "offRamp": { @@ -11927,22 +2913,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": { @@ -11965,78 +2936,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" - } - } - }, - "W0G": { - "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", "W0G", "WFRAGSOL", "WMTX"] }, "soneium-mainnet": { "offRamp": { @@ -12059,92 +2959,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", "mBTC", "SILO", "VRTX", "wUSDx", "xSILO"] }, "stable-mainnet": { "offRamp": { @@ -12167,22 +2982,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": { @@ -12194,22 +2994,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": { @@ -12223,22 +3008,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": { @@ -12261,22 +3031,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": { @@ -12288,232 +3043,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" - } - } - }, - "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" - } - } - }, - "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", + "LBTC", + "LEND", + "Memento", + "MYST", + "ORNG", + "SHIB", + "SolvBTC", + "USDC", + "USDM", + "VRTX", + "wstLINK", + "xSolvBTC" + ] }, "berachain-mainnet": { "offRamp": { @@ -12525,50 +3072,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": { @@ -12580,50 +3084,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": { @@ -12646,372 +3107,34 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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", + "FLUID", + "IXT", + "LBTC", + "LEND", + "RAIN", + "RIZE", + "SAS", + "SKYA", + "SNOW", + "SolvBTC", + "TRADE", + "UNIO", + "USDO", + "W0G", + "WHY", + "WMTX", + "wUSDx", + "xGold", + "xSolvBTC" + ] }, "celo-mainnet": { "offRamp": { @@ -13023,22 +3146,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": { @@ -13072,596 +3180,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" - } - } - }, - "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" - } - } - }, - "SDL": { - "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", + "clBTC", + "DOBO", + "DPI", + "dsETH", + "EARNM", + "FLUID", + "GHO", + "hyETH", + "IBTC", + "IXT", + "LDY", + "LEND", + "MVI", + "NUON", + "OVER", + "SDL", + "sDOLA", + "sINV", + "SolvBTC", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "USD+", + "USDC", + "USDM", + "VRTX", + "W0G", + "WETH", + "WHSK", + "WMTX", + "wOETH", + "WOLF", + "wstLINK", + "wUSDx", + "xSolvBTC", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-blast-1": { "offRamp": { @@ -13673,36 +3235,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": { @@ -13714,36 +3247,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": { @@ -13755,50 +3259,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": { @@ -13810,64 +3271,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-mantle-1": { "offRamp": { @@ -13879,36 +3283,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "ethereum-mainnet-mode-1": { "offRamp": { @@ -13920,50 +3295,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": { @@ -13975,246 +3307,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", + "clBTC", + "CRTV", + "IBTC", + "OVER", + "sDOLA", + "sINV", + "stTAO", + "USDC", + "USDM", + "USDT", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-scroll-1": { "offRamp": { @@ -14237,36 +3348,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": { @@ -14289,22 +3371,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"] }, "etherlink-mainnet": { "offRamp": { @@ -14360,1156 +3427,89 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "SDL": { - "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" - } - } - }, - "USDf": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "USDi": { - "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", + "brBTC", + "BYTES", + "CHEX", + "clBTC", + "DIP", + "DOBO", + "DPI", + "dsETH", + "EARNM", + "FLUID", + "GEN", + "GHO", + "hyETH", + "IBTC", + "IXT", + "JASMY", + "LBTC", + "LDY", + "LEASH", + "LEND", + "LINK", + "LsETH", + "MEEM", + "Memento", + "MVI", + "MYST", + "NEIRO", + "NUON", + "OVER", + "oXAUT", + "RAIN", + "RIZE", + "SAS", + "SDL", + "sDOLA", + "SHIB", + "sINV", + "SKYA", + "SolvBTC", + "STABUL", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "SXT", + "syrupUSDC", + "tETH", + "TRADE", + "uniBTC", + "UNIO", + "USD+", + "USD0", + "USDC", + "USDf", + "USDM", + "USDO", + "USDT", + "USUAL", + "W0G", + "WETH", + "WMTX", + "wOETH", + "WOLF", + "wstLINK", + "wUSDx", + "xGold", + "xSolvBTC", + "XSWAP", + "zBTC", + "ZeUSD", + "ZUN", + "zunETH", + "zunUSD" + ] }, "matic-mainnet": { "offRamp": { @@ -15521,302 +3521,29 @@ "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" - } - } - }, - "QUICK": { - "rateLimiterConfig": { - "in": { - "capacity": "510000000000000000000000", - "isEnabled": true, - "rate": "305555555555555555554" - }, - "out": { - "capacity": "500000000000000000000000", - "isEnabled": true, - "rate": "277777777777777777777" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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", + "QUICK", + "RAIN", + "RIZE", + "SolvBTC", + "STABUL", + "TRADE", + "USDC", + "USDM", + "wstLINK", + "xGold", + "xSolvBTC", + "XTFBRICK1", + "XTFCLOBOND" + ] }, "megaeth-mainnet": { "offRamp": { @@ -15828,22 +3555,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"] }, "memento-mainnet": { "offRamp": { @@ -15855,36 +3567,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": { @@ -15896,36 +3579,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["LBTC", "W0G"] }, "plasma-mainnet": { "offRamp": { @@ -15937,50 +3591,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": { @@ -15992,22 +3603,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": { @@ -16019,22 +3615,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": { @@ -16046,22 +3627,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": { @@ -16073,162 +3639,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": { @@ -16240,162 +3651,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" - } - } - }, - "W0G": { - "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": ["elizaOS", "FLUID", "LINK", "MEW", "MICHI", "pippin", "USDC", "W0G", "WMTX", "YNE", "zBTC"] }, "soneium-mainnet": { "offRamp": { @@ -16407,22 +3663,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": { @@ -16434,106 +3675,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": { @@ -16545,22 +3687,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": { @@ -16594,22 +3721,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": { @@ -16645,22 +3757,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": { @@ -16672,36 +3769,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": { @@ -16713,64 +3781,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": { @@ -16784,22 +3795,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": { @@ -16811,22 +3807,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": { @@ -16838,36 +3819,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": { @@ -16879,22 +3831,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": { @@ -16906,22 +3843,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": { @@ -16946,50 +3868,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": { @@ -17001,36 +3880,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": { @@ -17042,36 +3892,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": { @@ -17094,50 +3915,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": { @@ -17149,50 +3927,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": { @@ -17204,36 +3939,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-mantle-1": { "offRamp": { @@ -17245,22 +3951,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"] }, "ethereum-mainnet-xlayer-1": { "offRamp": { @@ -17283,36 +3974,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": { @@ -17324,134 +3986,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" - } - } - }, - "syrupUSDC": { - "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": "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": ["brBTC", "GHO", "SolvBTC", "uniBTC", "wstETH", "xSolvBTC", "YBTC.B"] }, "matic-mainnet": { "offRamp": { @@ -17463,36 +3998,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": { @@ -17526,36 +4032,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": { @@ -17567,36 +4044,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": { @@ -17619,22 +4067,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": { @@ -17659,162 +4092,19 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "avBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "avBTCx": { - "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": [ + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "savBTC", + "savETH", + "savUSD", + "SolvBTC", + "xSolvBTC" + ] }, "bitcoin-mainnet-bob-1": { "offRamp": { @@ -17826,36 +4116,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": { @@ -17867,92 +4128,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", "savBTC", "savUSD", "SolvBTC", "TURTLE", "xSolvBTC"] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -17964,78 +4140,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "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" - } - } - }, - "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": ["savUSD", "SolvBTC", "xrETH", "xRPL", "xSolvBTC"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -18047,64 +4152,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": { @@ -18116,36 +4164,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": { @@ -18157,22 +4176,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": { @@ -18206,22 +4210,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": { @@ -18233,302 +4222,29 @@ "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" - } - } - }, - "avBTCx": { - "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", + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "BONE", + "LEASH", + "LsETH", + "rsETH", + "savBTC", + "savETH", + "savUSD", + "SHIB", + "SolvBTC", + "TURTLE", + "WETH", + "xrETH", + "xRPL", + "xSolvBTC" + ] }, "matic-mainnet": { "offRamp": { @@ -18540,36 +4256,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": { @@ -18627,63 +4314,19 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "bsc-mainnet": { "offRamp": { - "address": "0x010771998A1F4736BD844939d0bf01ac5cA0f8fa", - "version": "1.6.0" + "address": "0x7dA0421bedd25eb7CbA7eFdB6108Bfc2916De79e", + "version": "1.5.0" }, "onRamp": { - "address": "0x4e2C866885b65F67E7A2b8382ECF0164BB19Aa00", + "address": "0xB608c110c35f2871c0e1ED30DA1848603bC18694", "enforceOutOfOrder": false, - "version": "1.6.0" + "version": "1.5.0" }, - "supportedTokens": { - "VOOI": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["VOOI"] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -18695,36 +4338,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -18736,36 +4350,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "GHO": { - "rateLimiterConfig": { - "in": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - }, - "out": { - "capacity": "1500000000000000000000000", - "isEnabled": true, - "rate": "300000000000000000000" - } - } - }, - "VRTX": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["GHO", "VRTX"] }, "ethereum-mainnet-ink-1": { "offRamp": { @@ -18777,22 +4362,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"] }, "ethereum-mainnet-xlayer-1": { "offRamp": { @@ -18815,120 +4385,7 @@ "enforceOutOfOrder": false, "version": "1.6.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" - } - } - }, - "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" - } - } - }, - "VOOI": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BONE", "GHO", "LEASH", "SHIB", "syrupUSDT", "uniBTC", "USD1", "VOOI"] }, "plasma-mainnet": { "offRamp": { @@ -18940,22 +4397,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"] }, "xdai-mainnet": { "offRamp": { @@ -18967,22 +4409,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"] } }, "ethereum-mainnet-mode-1": { @@ -18996,22 +4423,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": { @@ -19034,22 +4446,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": { @@ -19061,50 +4458,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": { @@ -19116,22 +4470,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": { @@ -19143,106 +4482,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" - } - } - }, - "uniBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000", - "isEnabled": true, - "rate": "2315" - }, - "out": { - "capacity": "5000000", - "isEnabled": true, - "rate": "2315" - } - } - }, - "wUSDx": { - "rateLimiterConfig": { - "in": { - "capacity": "490000000000", - "isEnabled": true, - "rate": "136111000" - }, - "out": { - "capacity": "490000000000", - "isEnabled": true, - "rate": "136111000" - } - } - } - } + "supportedTokens": ["BONE", "LEASH", "LINK", "sDAI", "SHIB", "uniBTC", "wUSDx"] }, "sonic-mainnet": { "offRamp": { @@ -19254,36 +4494,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": { @@ -19308,64 +4519,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": { @@ -19377,36 +4531,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": { @@ -19418,22 +4543,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": { @@ -19456,232 +4566,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", + "clBTC", + "IBTC", + "MILO", + "OVER", + "SD", + "sDOLA", + "stTAO", + "USDC", + "USDM", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -19693,246 +4595,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", + "clBTC", + "CRTV", + "IBTC", + "OVER", + "sDOLA", + "sINV", + "stTAO", + "USDC", + "USDM", + "USDT", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-hashkey-1": { "offRamp": { @@ -19944,22 +4625,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": { @@ -19971,22 +4637,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": { @@ -19998,22 +4649,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": { @@ -20025,36 +4661,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": { @@ -20066,22 +4673,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": { @@ -20093,22 +4685,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": { @@ -20120,330 +4697,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", + "clBTC", + "ETHx", + "IBTC", + "LEASH", + "OVER", + "rsETH", + "SD", + "sDOLA", + "SHIB", + "sINV", + "stTAO", + "uniBTC", + "USDC", + "USDM", + "USDT", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "matic-mainnet": { "offRamp": { @@ -20455,64 +4733,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": { @@ -20557,22 +4778,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": { @@ -20584,50 +4790,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": { @@ -20639,22 +4802,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": { @@ -20714,78 +4862,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": { @@ -20799,36 +4876,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": { @@ -20842,36 +4890,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": { @@ -20883,22 +4902,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": { @@ -20921,36 +4925,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": { @@ -20962,36 +4937,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": { @@ -21003,36 +4949,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": { @@ -21044,50 +4961,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", "uniBTC", "USDC"] }, "matic-mainnet": { "offRamp": { @@ -21099,36 +4973,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": { @@ -21140,22 +4985,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": { @@ -21213,36 +5043,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": ["oXAUT", "WLD"] }, "solana-mainnet": { "offRamp": { @@ -21355,50 +5156,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" - } - } - }, - "USD1": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["brBTC", "uniBTC", "USD1"] }, "plasma-mainnet": { "offRamp": { @@ -21434,22 +5192,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": { @@ -21461,22 +5204,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": { @@ -21488,22 +5216,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": { @@ -21515,78 +5228,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", "mBTC", "rsETH", "SHIB"] } }, "ethereum-mainnet-zksync-1": { @@ -21600,22 +5242,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": { @@ -21627,36 +5254,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": { @@ -21690,22 +5288,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": { @@ -21717,22 +5300,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": { @@ -21744,36 +5312,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": { @@ -21785,22 +5324,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": { @@ -21823,106 +5347,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": { @@ -21934,50 +5359,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": { @@ -22046,22 +5428,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"] }, "monad-mainnet": { "offRamp": { @@ -22211,36 +5578,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "LINK": { - "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" - } - } - } - } + "supportedTokens": ["LINK", "xGold"] } }, "hemi-mainnet": { @@ -22289,50 +5627,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": { @@ -22366,134 +5661,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", "brBTC", "kHYPE", "SolvBTC", "syrupUSDC", "uniBTC", "VSN", "xGold", "xSolvBTC"] }, "solana-mainnet": { "offRamp": { @@ -22505,22 +5673,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": { @@ -22534,36 +5687,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LINK": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - }, - "out": { - "capacity": "300000000000000000000", - "isEnabled": true, - "rate": "3472000000000000" - } - } - } - } + "supportedTokens": ["LINK", "wstETH"] }, "matic-mainnet": { "offRamp": { @@ -22654,22 +5778,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": { @@ -22709,78 +5818,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": { @@ -22792,36 +5830,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": { @@ -22833,22 +5842,7 @@ "enforceOutOfOrder": true, "version": "1.5.0" }, - "supportedTokens": { - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "300000000000000000000", - "isEnabled": true, - "rate": "3472000000000000" - }, - "out": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - } - } - } - } + "supportedTokens": ["wstETH"] }, "apechain-mainnet": { "offRamp": { @@ -22871,64 +5865,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": ["brBTC", "LINK", "uniBTC", "USD1"] }, "avalanche-mainnet": { "offRamp": { @@ -22940,512 +5877,44 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "avBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "avBTCx": { - "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" - } - } - }, - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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" - } - } - }, - "FUSD": { - "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": [ + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "BETS", + "BOLD", + "BONE", + "BTC.b", + "BYTES", + "EmCH", + "FUSD", + "GHO", + "LBTC", + "LEASH", + "LEND", + "Memento", + "MYST", + "oXAUT", + "savBTC", + "savETH", + "savUSD", + "SDY", + "SHIB", + "SILO", + "SolvBTC", + "tETH", + "TREE", + "USDC", + "USDM", + "wstLINK", + "wstPOL", + "xSILO", + "xSolvBTC", + "YBTC.B" + ] }, "berachain-mainnet": { "offRamp": { @@ -23457,176 +5926,20 @@ "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" - } - } - }, - "savUSD": { - "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", + "brBTC", + "DOLO", + "LBTC", + "pufETH", + "savUSD", + "sDOLA", + "SolvBTC", + "SolvBTC.BERA", + "uniBTC", + "xSolvBTC" + ] }, "binance-smart-chain-mainnet-opbnb-1": { "offRamp": { @@ -23649,106 +5962,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", "uniBTC", "USDC", "USDT", "WETH", "wstETH", "YBTC.B"] }, "bitcoin-mainnet-bob-1": { "offRamp": { @@ -23760,106 +5974,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": "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" - } - } - }, - "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", "uniBTC", "USDC", "USDT", "xSolvBTC"] }, "bitcoin-mainnet-botanix": { "offRamp": { @@ -23871,22 +5986,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": { @@ -23898,22 +5998,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": { @@ -23947,876 +6032,70 @@ "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" - } - } - }, - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148148148148" - } - } - }, - "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" - } - } - }, - "POWER": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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" - } - } - }, - "syrupUSDT": { - "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" - } - } - }, - "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" - } - } - }, - "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", + "brBTC", + "BTR", + "CHEX", + "DOBO", + "EDEN", + "FF", + "FHE", + "FLUID", + "IXT", + "JCT", + "LBTC", + "LEASH", + "LEND", + "mBTC", + "mwBETH", + "POWER", + "RAIN", + "RIZE", + "SAS", + "savBTC", + "savUSD", + "SDT", + "SHIB", + "SKYA", + "SolvBTC", + "SolvBTC.BERA", + "STABLE", + "sUSD1+", + "syrupUSDT", + "TRADE", + "TREE", + "TURBO", + "TURTLE", + "uniBTC", + "UNIO", + "USD0", + "USD1", + "USDf", + "USDFI", + "USDO", + "USUAL", + "VOOI", + "VSN", + "W0G", + "WECO", + "WHY", + "WLFI", + "WMTX", + "WSDM", + "wUSDx", + "xGold", + "xSolvBTC" + ] }, "celo-mainnet": { "offRamp": { @@ -24828,78 +6107,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": { @@ -24922,36 +6130,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": { @@ -24985,64 +6164,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-arbitrum-1": { "offRamp": { @@ -25054,1030 +6176,81 @@ "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" - } - } - }, - "savUSD": { - "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", + "clBTC", + "DFX", + "DOBO", + "DOLO", + "DPI", + "dsETH", + "EARNM", + "egETH", + "ETHx", + "FHE", + "FLUID", + "GHO", + "hyETH", + "IBTC", + "IXT", + "LDY", + "LEASH", + "LEND", + "mBTC", + "mDLP", + "mmETH", + "mstETH", + "mswETH", + "MVI", + "NPC", + "NUON", + "OVER", + "pufETH", + "savUSD", + "SD", + "SDL", + "sDOLA", + "SDT", + "SDY", + "SHIB", + "SILO", + "sINV", + "SolvBTC", + "STABLE", + "STBU", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "syrupUSDC", + "tETH", + "uniBTC", + "USD+", + "USDC", + "USDFI", + "USDM", + "VSN", + "W0G", + "WECO", + "WETH", + "WFRAGSOL", + "WMTX", + "wOETH", + "WOLF", + "WSDM", + "wstLINK", + "wUSDx", + "xrETH", + "xRPL", + "xSILO", + "xSolvBTC", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -26089,1156 +6262,89 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "SDL": { - "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" - } - } - }, - "USDf": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "USDi": { - "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", + "brBTC", + "BYTES", + "CHEX", + "clBTC", + "DIP", + "DOBO", + "DPI", + "dsETH", + "EARNM", + "FLUID", + "GEN", + "GHO", + "hyETH", + "IBTC", + "IXT", + "JASMY", + "LBTC", + "LDY", + "LEASH", + "LEND", + "LINK", + "LsETH", + "MEEM", + "Memento", + "MVI", + "MYST", + "NEIRO", + "NUON", + "OVER", + "oXAUT", + "RAIN", + "RIZE", + "SAS", + "SDL", + "sDOLA", + "SHIB", + "sINV", + "SKYA", + "SolvBTC", + "STABUL", + "stTAO", + "suBTC", + "suETH", + "suUSD", + "SXT", + "syrupUSDC", + "tETH", + "TRADE", + "uniBTC", + "UNIO", + "USD+", + "USD0", + "USDC", + "USDf", + "USDM", + "USDO", + "USDT", + "USUAL", + "W0G", + "WETH", + "WMTX", + "wOETH", + "WOLF", + "wstLINK", + "wUSDx", + "xGold", + "xSolvBTC", + "XSWAP", + "zBTC", + "ZeUSD", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-blast-1": { "offRamp": { @@ -27250,64 +6356,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": { @@ -27319,22 +6368,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": { @@ -27346,134 +6380,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" - } - } - }, - "syrupUSDC": { - "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": "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": ["brBTC", "GHO", "SolvBTC", "uniBTC", "wstETH", "xSolvBTC", "YBTC.B"] }, "ethereum-mainnet-linea-1": { "offRamp": { @@ -27485,302 +6392,29 @@ "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" - } - } - }, - "avBTCx": { - "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": "2", - "isEnabled": true, - "rate": "1" - } - } - }, - "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", + "avBTC", + "avBTCx", + "avETH", + "avETHx", + "avUSD", + "avUSDx", + "BONE", + "LEASH", + "LsETH", + "rsETH", + "savBTC", + "savETH", + "savUSD", + "SHIB", + "SolvBTC", + "TURTLE", + "WETH", + "xrETH", + "xRPL", + "xSolvBTC" + ] }, "ethereum-mainnet-mantle-1": { "offRamp": { @@ -27792,120 +6426,7 @@ "enforceOutOfOrder": false, "version": "1.6.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" - } - } - }, - "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" - } - } - }, - "VOOI": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BONE", "GHO", "LEASH", "SHIB", "syrupUSDT", "uniBTC", "USD1", "VOOI"] }, "ethereum-mainnet-mode-1": { "offRamp": { @@ -27917,106 +6438,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" - } - } - }, - "uniBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000", - "isEnabled": true, - "rate": "2315" - }, - "out": { - "capacity": "5000000", - "isEnabled": true, - "rate": "2315" - } - } - }, - "wUSDx": { - "rateLimiterConfig": { - "in": { - "capacity": "490000000000", - "isEnabled": true, - "rate": "136111000" - }, - "out": { - "capacity": "490000000000", - "isEnabled": true, - "rate": "136111000" - } - } - } - } + "supportedTokens": ["BONE", "LEASH", "LINK", "sDAI", "SHIB", "uniBTC", "wUSDx"] }, "ethereum-mainnet-optimism-1": { "offRamp": { @@ -28028,330 +6450,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", + "clBTC", + "ETHx", + "IBTC", + "LEASH", + "OVER", + "rsETH", + "SD", + "sDOLA", + "SHIB", + "sINV", + "stTAO", + "uniBTC", + "USDC", + "USDM", + "USDT", + "WETH", + "wUSDx", + "ZUN", + "zunETH", + "zunUSD" + ] }, "ethereum-mainnet-polygon-zkevm-1": { "offRamp": { @@ -28374,78 +6497,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": { @@ -28457,36 +6509,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": { @@ -28498,50 +6521,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", "uniBTC", "USDC"] }, "ethereum-mainnet-worldchain-1": { "offRamp": { @@ -28553,36 +6533,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": ["oXAUT", "WLD"] }, "ethereum-mainnet-xlayer-1": { "offRamp": { @@ -28594,50 +6545,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" - } - } - }, - "USD1": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["brBTC", "uniBTC", "USD1"] }, "ethereum-mainnet-zircuit-1": { "offRamp": { @@ -28649,78 +6557,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", "mBTC", "rsETH", "SHIB"] }, "ethereum-mainnet-zksync-1": { "offRamp": { @@ -28732,106 +6569,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": { @@ -28843,22 +6581,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": { @@ -28892,36 +6615,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "LINK": { - "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" - } - } - } - } + "supportedTokens": ["LINK", "xGold"] }, "hemi-mainnet": { "offRamp": { @@ -28944,134 +6638,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", "brBTC", "kHYPE", "SolvBTC", "syrupUSDC", "uniBTC", "VSN", "xGold", "xSolvBTC"] }, "jovay-mainnet": { "offRamp": { @@ -29083,36 +6650,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LINK": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "300000000000000000000", - "isEnabled": true, - "rate": "3472000000000000" - }, - "out": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - } - } - } - } + "supportedTokens": ["LINK", "wstETH"] }, "kaia-mainnet": { "offRamp": { @@ -29124,22 +6662,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": { @@ -29173,372 +6696,34 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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", + "RAIN", + "REG", + "RIZE", + "SHIB", + "SOIL", + "SolvBTC", + "STABUL", + "TRADE", + "USDC", + "USDM", + "WECO", + "WSDM", + "wstLINK", + "wstPOL", + "xGold", + "xSolvBTC" + ] }, "megaeth-mainnet": { "offRamp": { @@ -29550,50 +6735,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148140000000" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148140000000" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "wstETH"] }, "memento-mainnet": { "offRamp": { @@ -29627,22 +6769,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": { @@ -29665,120 +6792,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "aprMON": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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" - } - } - }, - "W0G": { - "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": ["aprMON", "BTC.b", "LBTC", "SolvBTC", "USD1", "W0G", "wstETH", "xSolvBTC"] }, "morph-mainnet": { "offRamp": { @@ -29790,50 +6804,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BGB": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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": ["BGB", "LINK", "USD1"] }, "nexon-mainnet-henesys": { "offRamp": { @@ -29846,33 +6817,6 @@ "version": "1.6.0" } }, - "pharos-mainnet": { - "offRamp": { - "address": "0x26d3681DfC9E4c8C79cfbf461adec8A21d5d73C5", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x913814782144864e523C3FdB78E3ca25D2c2aeCa", - "enforceOutOfOrder": false, - "version": "1.6.0" - }, - "supportedTokens": { - "LINK": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } - }, "plasma-mainnet": { "offRamp": { "address": "0x26d3681DfC9E4c8C79cfbf461adec8A21d5d73C5", @@ -29883,134 +6827,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", "savUSD", "syrupUSDT", "wstETH", "YBTC.B"] }, "plume-mainnet": { "offRamp": { @@ -30022,36 +6839,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "sUSD1+": { - "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": ["sUSD1+", "USD1"] }, "polkadot-mainnet-astar": { "offRamp": { @@ -30063,78 +6851,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": { @@ -30146,50 +6863,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "20000000000", - "isEnabled": true, - "rate": "1851582" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "savUSD"] }, "ronin-mainnet": { "offRamp": { @@ -30201,246 +6875,25 @@ "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": "30000000000000000570425344", - "isEnabled": true, - "rate": "347222200000000032768" - }, - "out": { - "capacity": "27000000000000000083886080", - "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" - } - } - }, - "POWER": { - "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" - } - } - }, - "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", + "POWER", + "RETH", + "USDC", + "WBTC", + "WETH", + "YGG", + "ZENT" + ] }, "rootstock-mainnet": { "offRamp": { @@ -30463,36 +6916,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": { @@ -30504,36 +6928,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": { @@ -30545,316 +6940,30 @@ "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" - } - } - }, - "PTjrUSDe": { - "rateLimiterConfig": { - "in": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - }, - "out": { - "capacity": "14000000000000000000000000", - "isEnabled": true, - "rate": "162037000000000000000" - } - } - }, - "PTsrUSDe": { - "rateLimiterConfig": { - "in": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - }, - "out": { - "capacity": "14000000000000000000000000", - "isEnabled": true, - "rate": "162037000000000000000" - } - } - }, - "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" - } - } - }, - "W0G": { - "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": [ + "brBTC", + "elizaOS", + "FHE", + "FLUID", + "LINK", + "MEW", + "OHM", + "PEPE", + "PTjrUSDe", + "PTsrUSDe", + "PTsUSDE", + "SolvBTC", + "syrupUSDC", + "uniBTC", + "USD1", + "USDC", + "W0G", + "WFRAGSOL", + "WLFI", + "WMTX", + "xSolvBTC", + "zBTC" + ] }, "soneium-mainnet": { "offRamp": { @@ -30866,106 +6975,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", "pufETH", "SKYA", "SolvBTC", "WASTR", "xSolvBTC"] }, "sonic-mainnet": { "offRamp": { @@ -30977,218 +6987,23 @@ "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" - } - } - }, - "FUSD": { - "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" - } - } - }, - "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", + "egETH", + "FUSD", + "LBTC", + "LINK", + "mBTC", + "mstETH", + "SILO", + "SolvBTC", + "uniBTC", + "USDT", + "wUSDx", + "xSILO", + "xSolvBTC", + "zBTC" + ] }, "stable-mainnet": { "offRamp": { @@ -31200,50 +7015,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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": ["BTC.b", "LBTC", "LINK"] }, "superseed-mainnet": { "offRamp": { @@ -31266,78 +7038,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": { @@ -31349,106 +7050,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", "una.USDC", "una.WEMIX", "USDC"] }, "xdai-mainnet": { "offRamp": { @@ -31460,78 +7062,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": { @@ -31543,36 +7074,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": { @@ -31584,6 +7086,18 @@ "enforceOutOfOrder": false, "version": "1.5.0" } + }, + "pharos-mainnet": { + "offRamp": { + "address": "0x26d3681DfC9E4c8C79cfbf461adec8A21d5d73C5", + "version": "1.6.0" + }, + "onRamp": { + "address": "0x913814782144864e523C3FdB78E3ca25D2c2aeCa", + "enforceOutOfOrder": false, + "version": "1.6.0" + }, + "supportedTokens": ["LINK"] } }, "matic-mainnet": { @@ -31608,134 +7122,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": { @@ -31758,36 +7145,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": { @@ -31799,232 +7157,24 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "SolvBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "2500000000000000000", - "isEnabled": true, - "rate": "115740000000000" - }, - "out": { - "capacity": "2500000000000000000", - "isEnabled": true, - "rate": "115740000000000" - } - } - }, - "SWCH": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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", + "RAIN", + "RIZE", + "SolvBTC", + "SWCH", + "THE", + "TRADE", + "WECO", + "WSDM", + "xGold", + "xSolvBTC" + ] }, "celo-mainnet": { "offRamp": { @@ -32058,218 +7208,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", + "SolvBTC", + "STBU", + "USDC", + "USDM", + "WECO", + "WSDM", + "wstLINK", + "xSolvBTC" + ] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -32281,302 +7236,29 @@ "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" - } - } - }, - "QUICK": { - "rateLimiterConfig": { - "in": { - "capacity": "510000000000000000000000", - "isEnabled": true, - "rate": "305555555555555555554" - }, - "out": { - "capacity": "500000000000000000000000", - "isEnabled": true, - "rate": "277777777777777777777" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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", + "QUICK", + "RAIN", + "RIZE", + "SolvBTC", + "STABUL", + "TRADE", + "USDC", + "USDM", + "wstLINK", + "xGold", + "xSolvBTC", + "XTFBRICK1", + "XTFCLOBOND" + ] }, "ethereum-mainnet-ink-1": { "offRamp": { @@ -32588,36 +7270,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": { @@ -32629,36 +7282,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": { @@ -32670,64 +7294,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": { @@ -32739,36 +7306,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": { @@ -32780,50 +7318,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": { @@ -32846,372 +7341,34 @@ "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" - } - } - }, - "RAIN": { - "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" - } - } - }, - "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", + "RAIN", + "REG", + "RIZE", + "SHIB", + "SOIL", + "SolvBTC", + "STABUL", + "TRADE", + "USDC", + "USDM", + "WECO", + "WSDM", + "wstLINK", + "wstPOL", + "xGold", + "xSolvBTC" + ] }, "memento-mainnet": { "offRamp": { @@ -33223,47 +7380,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" - } - } - } - } - }, - "pharos-mainnet": { - "offRamp": { - "address": "0x77FDbd20ED582794b1d9F1a8a94e4a60494D677e", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x530Ae314EC3fA038bd9A215095E37295ec76162a", - "enforceOutOfOrder": false, - "version": "1.6.0" - } + "supportedTokens": ["XTFBRICK1", "XTFCLOBOND"] }, "plume-mainnet": { "offRamp": { @@ -33286,36 +7403,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": { @@ -33327,22 +7415,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": { @@ -33354,36 +7427,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": { @@ -33406,22 +7450,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": { @@ -33433,21 +7462,17 @@ "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"] + }, + "pharos-mainnet": { + "offRamp": { + "address": "0x77FDbd20ED582794b1d9F1a8a94e4a60494D677e", + "version": "1.6.0" + }, + "onRamp": { + "address": "0x530Ae314EC3fA038bd9A215095E37295ec76162a", + "enforceOutOfOrder": false, + "version": "1.6.0" } } }, @@ -33462,36 +7487,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "bsc-mainnet": { "offRamp": { @@ -33503,22 +7499,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-base-1": { "offRamp": { @@ -33530,22 +7511,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": { @@ -33557,50 +7523,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "wstETH": { - "rateLimiterConfig": { - "in": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148140000000" - }, - "out": { - "capacity": "2000000000000000000000", - "isEnabled": true, - "rate": "23148148140000000" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "wstETH"] }, "polygon-mainnet-katana": { "offRamp": { @@ -33612,36 +7535,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "sonic-mainnet": { "offRamp": { @@ -33653,22 +7547,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"] } }, "memento-mainnet": { @@ -33682,36 +7561,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": { @@ -33734,36 +7584,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": { @@ -33801,22 +7622,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": { @@ -33839,22 +7645,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": { @@ -33881,22 +7672,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"] }, "avalanche-mainnet": { "offRamp": { @@ -33908,50 +7684,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "NXPC": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "NXPC"] }, "berachain-mainnet": { "offRamp": { @@ -33974,36 +7707,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["LBTC", "W0G"] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -34015,22 +7719,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": { @@ -34042,36 +7731,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["LBTC", "W0G"] }, "ethereum-mainnet-ink-1": { "offRamp": { @@ -34116,120 +7776,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "aprMON": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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" - } - } - }, - "W0G": { - "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": ["aprMON", "BTC.b", "LBTC", "SolvBTC", "USD1", "W0G", "wstETH", "xSolvBTC"] }, "plasma-mainnet": { "offRamp": { @@ -34252,36 +7799,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "solana-mainnet": { "offRamp": { @@ -34293,22 +7811,7 @@ "enforceOutOfOrder": true, "version": "1.6.0" }, - "supportedTokens": { - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["W0G"] }, "sonic-mainnet": { "offRamp": { @@ -34320,22 +7823,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"] }, "stable-mainnet": { "offRamp": { @@ -34371,50 +7859,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BGB": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "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": ["BGB", "LINK", "USD1"] } }, "nexon-mainnet-henesys": { @@ -34441,57 +7886,6 @@ } } }, - "pharos-mainnet": { - "jovay-mainnet": { - "offRamp": { - "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", - "enforceOutOfOrder": false, - "version": "1.6.0" - } - }, - "mainnet": { - "offRamp": { - "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", - "enforceOutOfOrder": false, - "version": "1.6.0" - }, - "supportedTokens": { - "LINK": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } - }, - "matic-mainnet": { - "offRamp": { - "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", - "enforceOutOfOrder": false, - "version": "1.6.0" - } - } - }, "plasma-mainnet": { "aptos-mainnet": { "offRamp": { @@ -34514,36 +7908,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": { @@ -34555,49 +7920,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" - } - } - } - } - }, - "bsc-mainnet": { - "offRamp": { - "address": "0xc2BE2F77562A6676098e8D363B9d8A33Ea009D4e", - "version": "1.6.0" - }, - "onRamp": { - "address": "0x8FE3B17E6B0863aeEA3D38DF063AEa39D4Ab1602", - "enforceOutOfOrder": false, - "version": "1.6.0" - }, - "supportedTokens": { - "FLUID": { - "rateLimiterConfig": { - "in": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - }, - "out": { - "capacity": "500000000000000000000", - "isEnabled": true, - "rate": "5787000000000000" - } - } - } - } + "supportedTokens": ["YBTC.B"] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -34609,64 +7932,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" - } - } - }, - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BOLD", "FLUID", "GHO", "savUSD"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -34678,50 +7944,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": { @@ -34755,22 +7978,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"] }, "ethereum-mainnet-xlayer-1": { "offRamp": { @@ -34793,134 +8001,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", "savUSD", "syrupUSDT", "wstETH", "YBTC.B"] }, "monad-mainnet": { "offRamp": { @@ -34943,50 +8024,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": ["eUSX", "FLUID", "USX"] }, "xdai-mainnet": { "offRamp": { @@ -34998,22 +8036,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": { @@ -35027,22 +8050,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": { @@ -35054,22 +8062,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "sUSD1+": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["sUSD1+"] }, "mainnet": { "offRamp": { @@ -35081,36 +8074,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "sUSD1+": { - "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": ["sUSD1+", "USD1"] }, "matic-mainnet": { "offRamp": { @@ -35135,78 +8099,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": { @@ -35218,36 +8111,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": { @@ -35261,50 +8125,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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": ["BTC.b", "LBTC", "savUSD"] }, "berachain-mainnet": { "offRamp": { @@ -35327,36 +8148,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"] }, "corn-mainnet": { "offRamp": { @@ -35379,22 +8171,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"] }, "etherlink-mainnet": { "offRamp": { @@ -35417,50 +8194,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "20000000000", - "isEnabled": true, - "rate": "1851582" - } - } - }, - "savUSD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC", "savUSD"] }, "megaeth-mainnet": { "offRamp": { @@ -35472,36 +8206,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "monad-mainnet": { "offRamp": { @@ -35513,36 +8218,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "solana-mainnet": { "offRamp": { @@ -35565,22 +8241,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": { @@ -35592,36 +8253,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "tac-mainnet": { "offRamp": { @@ -35646,22 +8278,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": { @@ -35673,246 +8290,25 @@ "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": "30000000000000000570425344", - "isEnabled": true, - "rate": "347222200000000032768" - }, - "out": { - "capacity": "27000000000000000083886080", - "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" - } - } - }, - "POWER": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "50000000000000000000000", - "isEnabled": true, - "rate": "580000000000000000" - } - } - }, - "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", + "POWER", + "RETH", + "USDC", + "WBTC", + "WETH", + "YGG", + "ZENT" + ] } }, "rootstock-mainnet": { @@ -35939,36 +8335,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": { @@ -35991,36 +8358,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": { @@ -36032,36 +8370,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": { @@ -36073,22 +8382,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": { @@ -36100,22 +8394,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": { @@ -36127,36 +8406,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": { @@ -36179,36 +8429,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": { @@ -36220,36 +8441,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": { @@ -36296,162 +8488,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": { @@ -36474,36 +8511,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": { @@ -36528,22 +8536,7 @@ "enforceOutOfOrder": true, "version": "1.6.0" }, - "supportedTokens": { - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["W0G"] }, "avalanche-mainnet": { "offRamp": { @@ -36555,22 +8548,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": { @@ -36593,22 +8571,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": { @@ -36620,218 +8583,23 @@ "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" - } - } - }, - "USD1": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "USELESS": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "W0G": { - "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", + "elizaOS", + "FHE", + "ILMT", + "KNET", + "MEW", + "SolvBTC", + "SolvBTC.JUP", + "USD1", + "USELESS", + "W0G", + "WLFI", + "WMTX", + "XLAB", + "xSolvBTC" + ] }, "ethereum-mainnet-arbitrum-1": { "offRamp": { @@ -36843,78 +8611,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" - } - } - }, - "W0G": { - "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", "W0G", "WFRAGSOL", "WMTX"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -36926,162 +8623,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" - } - } - }, - "W0G": { - "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": ["elizaOS", "FLUID", "LINK", "MEW", "MICHI", "pippin", "USDC", "W0G", "WMTX", "YNE", "zBTC"] }, "ethereum-mainnet-optimism-1": { "offRamp": { @@ -37093,22 +8635,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": { @@ -37120,22 +8647,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": { @@ -37169,22 +8681,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": { @@ -37196,316 +8693,30 @@ "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" - } - } - }, - "PTjrUSDe": { - "rateLimiterConfig": { - "in": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - }, - "out": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - } - } - }, - "PTsrUSDe": { - "rateLimiterConfig": { - "in": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - }, - "out": { - "capacity": "14000000000000000", - "isEnabled": true, - "rate": "162037000000" - } - } - }, - "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" - } - } - }, - "W0G": { - "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": [ + "brBTC", + "elizaOS", + "FHE", + "FLUID", + "LINK", + "MEW", + "OHM", + "PEPE", + "PTjrUSDe", + "PTsrUSDe", + "PTsUSDE", + "SolvBTC", + "syrupUSDC", + "uniBTC", + "USD1", + "USDC", + "W0G", + "WFRAGSOL", + "WLFI", + "WMTX", + "xSolvBTC", + "zBTC" + ] }, "matic-mainnet": { "offRamp": { @@ -37517,22 +8728,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": { @@ -37555,22 +8751,7 @@ "enforceOutOfOrder": true, "version": "1.6.0" }, - "supportedTokens": { - "W0G": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - } - } + "supportedTokens": ["W0G"] }, "plasma-mainnet": { "offRamp": { @@ -37582,50 +8763,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": ["eUSX", "FLUID", "USX"] }, "polygon-mainnet-katana": { "offRamp": { @@ -37670,50 +8808,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": { @@ -37727,50 +8822,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": { @@ -37793,36 +8845,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": { @@ -37856,22 +8879,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": { @@ -37883,36 +8891,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": { @@ -37924,106 +8903,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", "pufETH", "SKYA", "SolvBTC", "WASTR", "xSolvBTC"] }, "matic-mainnet": { "offRamp": { @@ -38035,36 +8915,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": { @@ -38076,36 +8927,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": { @@ -38119,22 +8941,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": { @@ -38146,92 +8953,7 @@ "enforceOutOfOrder": false, "version": "1.5.0" }, - "supportedTokens": { - "BOLD": { - "rateLimiterConfig": { - "in": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - }, - "out": { - "capacity": "0", - "isEnabled": false, - "rate": "0" - } - } - }, - "FUSD": { - "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", "FUSD", "LBTC", "SILO", "VRTX", "xSILO"] }, "berachain-mainnet": { "offRamp": { @@ -38254,22 +8976,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": { @@ -38281,50 +8988,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": { @@ -38358,92 +9022,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", "mBTC", "SILO", "VRTX", "wUSDx", "xSILO"] }, "ethereum-mainnet-base-1": { "offRamp": { @@ -38455,106 +9034,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": { @@ -38588,36 +9068,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": { @@ -38629,50 +9080,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": { @@ -38706,218 +9114,23 @@ "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" - } - } - }, - "FUSD": { - "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" - } - } - }, - "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", + "egETH", + "FUSD", + "LBTC", + "LINK", + "mBTC", + "mstETH", + "SILO", + "SolvBTC", + "uniBTC", + "USDT", + "wUSDx", + "xSILO", + "xSolvBTC", + "zBTC" + ] }, "matic-mainnet": { "offRamp": { @@ -38940,22 +9153,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"] }, "monad-mainnet": { "offRamp": { @@ -38967,22 +9165,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": { @@ -38994,22 +9177,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": { @@ -39021,50 +9189,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": { @@ -39076,22 +9201,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": { @@ -39127,36 +9237,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "berachain-mainnet": { "offRamp": { @@ -39179,22 +9260,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": { @@ -39217,22 +9283,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"] }, "etherlink-mainnet": { "offRamp": { @@ -39255,50 +9306,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "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": ["BTC.b", "LBTC", "LINK"] }, "monad-mainnet": { "offRamp": { @@ -39321,36 +9329,7 @@ "enforceOutOfOrder": false, "version": "1.6.0" }, - "supportedTokens": { - "BTC.b": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - }, - "LBTC": { - "rateLimiterConfig": { - "in": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - }, - "out": { - "capacity": "5000000000", - "isEnabled": true, - "rate": "462963" - } - } - } - } + "supportedTokens": ["BTC.b", "LBTC"] }, "sonic-mainnet": { "offRamp": { @@ -39362,22 +9341,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": { @@ -39481,78 +9445,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"] }, "monad-mainnet": { "offRamp": { @@ -39610,22 +9503,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": { @@ -39637,22 +9515,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": { @@ -39664,22 +9527,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": { @@ -39702,22 +9550,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": { @@ -39729,106 +9562,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", "una.USDC", "una.WEMIX", "USDC"] }, "matic-mainnet": { "offRamp": { @@ -39840,22 +9574,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": { @@ -39880,22 +9599,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": { @@ -39918,22 +9622,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": { @@ -39945,22 +9634,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": { @@ -39972,22 +9646,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": { @@ -40010,22 +9669,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"] }, "ethereum-mainnet-optimism-1": { "offRamp": { @@ -40059,78 +9703,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": { @@ -40142,22 +9715,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": { @@ -40169,22 +9727,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": { @@ -40220,36 +9763,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": { @@ -40264,5 +9778,41 @@ "version": "1.5.0" } } + }, + "pharos-mainnet": { + "jovay-mainnet": { + "offRamp": { + "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", + "version": "1.6.0" + }, + "onRamp": { + "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", + "enforceOutOfOrder": false, + "version": "1.6.0" + } + }, + "mainnet": { + "offRamp": { + "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", + "version": "1.6.0" + }, + "onRamp": { + "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", + "enforceOutOfOrder": false, + "version": "1.6.0" + }, + "supportedTokens": ["LINK"] + }, + "matic-mainnet": { + "offRamp": { + "address": "0x40858070814a57FdF33a613ae84fE0a8b4a874f7", + "version": "1.6.0" + }, + "onRamp": { + "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", + "enforceOutOfOrder": false, + "version": "1.6.0" + } + } } } 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 d863bcbced2..7b0b998260e 100644 --- a/src/config/data/ccip/v1_2_0/mainnet/tokens.json +++ b/src/config/data/ccip/v1_2_0/mainnet/tokens.json @@ -4,28 +4,40 @@ "allowListEnabled": false, "decimals": 18, "name": "PAAL AI", - "poolAddress": "0xE4De5151eD60Aa2086172c4caec29f058d16E46e", - "poolType": "burnMint", "symbol": "$PAAL", - "tokenAddress": "0xbb1B031c591235408755ff4E0739cb88C5cF2507" + "tokenAddress": "0xbb1B031c591235408755ff4E0739cb88C5cF2507", + "pool": { + "address": "0xE4De5151eD60Aa2086172c4caec29f058d16E46e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "PAAL AI", - "poolAddress": "0x5192Bd10f28A0206211CcBB66671118f85c2E539", - "poolType": "burnMint", "symbol": "$PAAL", - "tokenAddress": "0xd52333441c0553fACb259600FA833a69186893A5" + "tokenAddress": "0xd52333441c0553fACb259600FA833a69186893A5", + "pool": { + "address": "0x5192Bd10f28A0206211CcBB66671118f85c2E539", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "PAAL AI", - "poolAddress": "0x1A4B0621E90Bdc61d341D89158863458CA745dA2", - "poolType": "lockRelease", "symbol": "$PAAL", - "tokenAddress": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16" + "tokenAddress": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16", + "pool": { + "address": "0x1A4B0621E90Bdc61d341D89158863458CA745dA2", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "1XMM": { @@ -33,28 +45,40 @@ "allowListEnabled": false, "decimals": 18, "name": "One-XMM Token", - "poolAddress": "0xFdcB1fB6675b7d7c33933Ef56BD031c7B084Af29", - "poolType": "burnMint", "symbol": "1XMM", - "tokenAddress": "0x504C024fcDc01C30ee6379e3381144Df24Bc01B9" + "tokenAddress": "0x504C024fcDc01C30ee6379e3381144Df24Bc01B9", + "pool": { + "address": "0xFdcB1fB6675b7d7c33933Ef56BD031c7B084Af29", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "One-XMM Token", - "poolAddress": "0xF56dcA7a981a53ec2EbeF2040800F04206021583", - "poolType": "burnMint", "symbol": "1XMM", - "tokenAddress": "0x958d200A49F4765f771C61d2649965e26277fB64" + "tokenAddress": "0x958d200A49F4765f771C61d2649965e26277fB64", + "pool": { + "address": "0xF56dcA7a981a53ec2EbeF2040800F04206021583", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "One-XMM Token", - "poolAddress": "0x955c82760CAec660Bc823726ee3a90ef53C24577", - "poolType": "burnMint", "symbol": "1XMM", - "tokenAddress": "0xfDC362324740B3CA225ee0E54063746EecB2BFd9" + "tokenAddress": "0xfDC362324740B3CA225ee0E54063746EecB2BFd9", + "pool": { + "address": "0x955c82760CAec660Bc823726ee3a90ef53C24577", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "AISTR": { @@ -62,37 +86,53 @@ "allowListEnabled": false, "decimals": 18, "name": "AicroStrategy", - "poolAddress": "0xafa0f7EEDd310168Ba84BddDA550BA9c93F1083d", - "poolType": "burnMint", "symbol": "AISTR", - "tokenAddress": "0xFFd2087838d18225DE3428DFAEeFa4432E7D227F" + "tokenAddress": "0xFFd2087838d18225DE3428DFAEeFa4432E7D227F", + "pool": { + "address": "0xafa0f7EEDd310168Ba84BddDA550BA9c93F1083d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "AicroStrategy", - "poolAddress": "0xF4fD65FE6E60822C22B3580ee43FA6E955adb3Ab", - "poolType": "lockRelease", "symbol": "AISTR", - "tokenAddress": "0x323ac72a3a6267D97427944989b896fB411fdCbb" + "tokenAddress": "0x323ac72a3a6267D97427944989b896fB411fdCbb", + "pool": { + "address": "0xF4fD65FE6E60822C22B3580ee43FA6E955adb3Ab", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "AicroStrategy", - "poolAddress": "0xCDc4325995dE9Bd013c606da4D21519A99041673", - "poolType": "burnMint", "symbol": "AISTR", - "tokenAddress": "0xaE1c4c55b0C82C02b0C933d1F890f8fa9D599D3f" + "tokenAddress": "0xaE1c4c55b0C82C02b0C933d1F890f8fa9D599D3f", + "pool": { + "address": "0xCDc4325995dE9Bd013c606da4D21519A99041673", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "AicroStrategy", - "poolAddress": "0xe4a9fa29E3d88660577E4ACD9bf88Ef2DF4F8D7C", - "poolType": "burnMint", "symbol": "AISTR", - "tokenAddress": "0xBD4CaeE14EFDE2888F167130AF84D613D64618Da" + "tokenAddress": "0xBD4CaeE14EFDE2888F167130AF84D613D64618Da", + "pool": { + "address": "0xe4a9fa29E3d88660577E4ACD9bf88Ef2DF4F8D7C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ANIMA": { @@ -100,19 +140,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Anima", - "poolAddress": "0xD4C6184DEC4e10395AB84b9e7a7ab46d0D57329e", - "poolType": "burnMint", "symbol": "ANIMA", - "tokenAddress": "0x153A381D1207862cA003f68600462fAa66A828a7" + "tokenAddress": "0x153A381D1207862cA003f68600462fAa66A828a7", + "pool": { + "address": "0xD4C6184DEC4e10395AB84b9e7a7ab46d0D57329e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Anima", - "poolAddress": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812", - "poolType": "lockRelease", "symbol": "ANIMA", - "tokenAddress": "0xF80132FC0A86ADd011BffCe3AedD60A86E3d704D" + "tokenAddress": "0xF80132FC0A86ADd011BffCe3AedD60A86E3d704D", + "pool": { + "address": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "aprMON": { @@ -120,19 +168,27 @@ "allowListEnabled": false, "decimals": 18, "name": "aPriori LST", - "poolAddress": "0x3a138a2bA7DBA72ACBCdb2DCFBaF02ce311e5d0F", - "poolType": "burnMint", "symbol": "aprMON", - "tokenAddress": "0x93783ccd94763e11B9a57394e63Ddd9CeedaD925" + "tokenAddress": "0x93783ccd94763e11B9a57394e63Ddd9CeedaD925", + "pool": { + "address": "0x3a138a2bA7DBA72ACBCdb2DCFBaF02ce311e5d0F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "aPriori Monad LST", - "poolAddress": "0x3AaFf16d7f8c9163AF6e0f14Ec46CbA5bdc8C6C3", - "poolType": "lockRelease", "symbol": "aprMON", - "tokenAddress": "0x0c65A0BC65a5D819235B71F554D210D3F80E0852" + "tokenAddress": "0x0c65A0BC65a5D819235B71F554D210D3F80E0852", + "pool": { + "address": "0x3AaFf16d7f8c9163AF6e0f14Ec46CbA5bdc8C6C3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "APRS": { @@ -140,19 +196,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Aperios", - "poolAddress": "0x5882D12bbf902ee88d5FCF8793113ae85fFe97b1", - "poolType": "lockRelease", "symbol": "APRS", - "tokenAddress": "0x95b4B8CaD3567B5d7EF7399C2aE1d7070692aB0D" + "tokenAddress": "0x95b4B8CaD3567B5d7EF7399C2aE1d7070692aB0D", + "pool": { + "address": "0x5882D12bbf902ee88d5FCF8793113ae85fFe97b1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Apeiros", - "poolAddress": "0xe2712A0C09DfB8031857Adb8D73Eb04997D271bA", - "poolType": "burnMint", "symbol": "APRS", - "tokenAddress": "0xB1eC71BE31da4fF603970c0d88584eF2aF102F38" + "tokenAddress": "0xB1eC71BE31da4fF603970c0d88584eF2aF102F38", + "pool": { + "address": "0xe2712A0C09DfB8031857Adb8D73Eb04997D271bA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "APT": { @@ -160,9 +224,14 @@ "allowListEnabled": false, "decimals": 8, "name": "Aptos Coin", - "poolType": "feeTokenOnly", "symbol": "APT", - "tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A" + "tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "APU": { @@ -170,28 +239,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Apu Apustaja", - "poolAddress": "0x924982D6616962E7009f5f1fFe6F24ee1e58A2F4", - "poolType": "burnMint", "symbol": "APU", - "tokenAddress": "0x1F53B7aA6f4b36B7DfDEDb4Bc4A14747a19cf7B1" + "tokenAddress": "0x1F53B7aA6f4b36B7DfDEDb4Bc4A14747a19cf7B1", + "pool": { + "address": "0x924982D6616962E7009f5f1fFe6F24ee1e58A2F4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Apu Apustaja", - "poolAddress": "0xdf59f3eA407816FcC9e724fF29c5593a536e7984", - "poolType": "burnMint", "symbol": "APU", - "tokenAddress": "0xB9926b3fBc5873Db0182016D55727D5ae89E5EFd" + "tokenAddress": "0xB9926b3fBc5873Db0182016D55727D5ae89E5EFd", + "pool": { + "address": "0xdf59f3eA407816FcC9e724fF29c5593a536e7984", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Apu Apustaja", - "poolAddress": "0x0577EcCC8FBE54B321d3BC8d4F1d09Deb94d5A55", - "poolType": "lockRelease", "symbol": "APU", - "tokenAddress": "0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa" + "tokenAddress": "0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa", + "pool": { + "address": "0x0577EcCC8FBE54B321d3BC8d4F1d09Deb94d5A55", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "avBTC": { @@ -199,28 +280,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avBTC", - "poolAddress": "0x5684B0455837d41e47260a31bD954bE72C935E32", - "poolType": "lockRelease", "symbol": "avBTC", - "tokenAddress": "0xfd2c2A98009d0cBed715882036e43d26C4289053" + "tokenAddress": "0xfd2c2A98009d0cBed715882036e43d26C4289053", + "pool": { + "address": "0x5684B0455837d41e47260a31bD954bE72C935E32", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avBTC", - "poolAddress": "0xCE7Eb84463675C6dD219A6A8939Cc36F650808c6", - "poolType": "burnMint", "symbol": "avBTC", - "tokenAddress": "0x2D4C0d9742cd0F11b3627f103A3dDd9C8AE341b6" + "tokenAddress": "0x2D4C0d9742cd0F11b3627f103A3dDd9C8AE341b6", + "pool": { + "address": "0xCE7Eb84463675C6dD219A6A8939Cc36F650808c6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avBTC", - "poolAddress": "0x63bd4CC0A4F72cb3a6181604d03633671e5A93d2", - "poolType": "burnMint", "symbol": "avBTC", - "tokenAddress": "0x84d797c33708E5bDbfdB73481530DCf8c03eC17E" + "tokenAddress": "0x84d797c33708E5bDbfdB73481530DCf8c03eC17E", + "pool": { + "address": "0x63bd4CC0A4F72cb3a6181604d03633671e5A93d2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "avBTCx": { @@ -228,28 +321,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avBTC MAX", - "poolAddress": "0xC178A94C9C872C101b6DD3C6fc495C99b79e3db5", - "poolType": "lockRelease", "symbol": "avBTCx", - "tokenAddress": "0xa7C10C510df4B1702E1F36451dd29D7C3EDC760C" + "tokenAddress": "0xa7C10C510df4B1702E1F36451dd29D7C3EDC760C", + "pool": { + "address": "0xC178A94C9C872C101b6DD3C6fc495C99b79e3db5", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avBTC MAX", - "poolAddress": "0x73FA08D6DC478eef89da438004682E37A5ea0D2e", - "poolType": "burnMint", "symbol": "avBTCx", - "tokenAddress": "0x788002EBa02a9301008f03bf59c4B233E2272EB7" + "tokenAddress": "0x788002EBa02a9301008f03bf59c4B233E2272EB7", + "pool": { + "address": "0x73FA08D6DC478eef89da438004682E37A5ea0D2e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avBTC MAX", - "poolAddress": "0x1dD1b7F40B205B6836E87f1ed25A628ad35ba99e", - "poolType": "burnMint", "symbol": "avBTCx", - "tokenAddress": "0x9Bc15d6dCB23EFbdCC235Bf54159B6E8bAd23dca" + "tokenAddress": "0x9Bc15d6dCB23EFbdCC235Bf54159B6E8bAd23dca", + "pool": { + "address": "0x1dD1b7F40B205B6836E87f1ed25A628ad35ba99e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "avETH": { @@ -257,28 +362,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avETH", - "poolAddress": "0xBEC991c38A8D2b04F7A2a6F2d9304078DFD33dB6", - "poolType": "burnMint", "symbol": "avETH", - "tokenAddress": "0x223767286Be11d09Ae778fF608687fe858d3A2b4" + "tokenAddress": "0x223767286Be11d09Ae778fF608687fe858d3A2b4", + "pool": { + "address": "0xBEC991c38A8D2b04F7A2a6F2d9304078DFD33dB6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avETH", - "poolAddress": "0x9b52Ab55cFA7aB0079f84390b24Fdc0e5bF5Ab6F", - "poolType": "burnMint", "symbol": "avETH", - "tokenAddress": "0x3449A9155Afc1Bab56A572FdfE22A3a2B803AaC4" + "tokenAddress": "0x3449A9155Afc1Bab56A572FdfE22A3a2B803AaC4", + "pool": { + "address": "0x9b52Ab55cFA7aB0079f84390b24Fdc0e5bF5Ab6F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avETH", - "poolAddress": "0xbD09E8846B9DbdA54Ef386Bd9eF3bbd15Add50ee", - "poolType": "lockRelease", "symbol": "avETH", - "tokenAddress": "0x9469470C9878bf3d6d0604831d9A3A366156f7EE" + "tokenAddress": "0x9469470C9878bf3d6d0604831d9A3A366156f7EE", + "pool": { + "address": "0xbD09E8846B9DbdA54Ef386Bd9eF3bbd15Add50ee", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "avETHx": { @@ -286,28 +403,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avETH MAX", - "poolAddress": "0xbb8a25Ee9509bDA375699F6977DfaaC04c08BADa", - "poolType": "burnMint", "symbol": "avETHx", - "tokenAddress": "0xDA63630094Aa23B7a49368b713d68dD98F547f98" + "tokenAddress": "0xDA63630094Aa23B7a49368b713d68dD98F547f98", + "pool": { + "address": "0xbb8a25Ee9509bDA375699F6977DfaaC04c08BADa", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avETH MAX", - "poolAddress": "0x37912A5e451DC711D357E2dC6Bf9035235d6771f", - "poolType": "burnMint", "symbol": "avETHx", - "tokenAddress": "0x01C9ABFebCDcb53E72bF017Fc1D17F9DB38F722a" + "tokenAddress": "0x01C9ABFebCDcb53E72bF017Fc1D17F9DB38F722a", + "pool": { + "address": "0x37912A5e451DC711D357E2dC6Bf9035235d6771f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avETH MAX", - "poolAddress": "0x18d3ebcEF1074f30aba5Da3951FF1a87B30B6Ec1", - "poolType": "lockRelease", "symbol": "avETHx", - "tokenAddress": "0x2E8b7190eE84E7AC757Ddff42Ba14d4EAe24B865" + "tokenAddress": "0x2E8b7190eE84E7AC757Ddff42Ba14d4EAe24B865", + "pool": { + "address": "0x18d3ebcEF1074f30aba5Da3951FF1a87B30B6Ec1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "avUSD": { @@ -315,28 +444,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avUSD", - "poolAddress": "0xD4fe4186c4A7b089eb849d57b43C5F6a3d3BcCbe", - "poolType": "lockRelease", "symbol": "avUSD", - "tokenAddress": "0x24dE8771bC5DdB3362Db529Fc3358F2df3A0E346" + "tokenAddress": "0x24dE8771bC5DdB3362Db529Fc3358F2df3A0E346", + "pool": { + "address": "0xD4fe4186c4A7b089eb849d57b43C5F6a3d3BcCbe", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avUSD", - "poolAddress": "0x9F299fbDbB581E55217c15b8439588e16b95018f", - "poolType": "burnMint", "symbol": "avUSD", - "tokenAddress": "0x37c44fc08e403Efc0946C0623CB1164A52CE1576" + "tokenAddress": "0x37c44fc08e403Efc0946C0623CB1164A52CE1576", + "pool": { + "address": "0x9F299fbDbB581E55217c15b8439588e16b95018f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avUSD", - "poolAddress": "0x81B72171642FaB457aa815C0B8412A22B63A6aF8", - "poolType": "burnMint", "symbol": "avUSD", - "tokenAddress": "0xf4c13D631450De6B12a19829E37c8e2826891dC4" + "tokenAddress": "0xf4c13D631450De6B12a19829E37c8e2826891dC4", + "pool": { + "address": "0x81B72171642FaB457aa815C0B8412A22B63A6aF8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "avUSDx": { @@ -344,28 +485,40 @@ "allowListEnabled": false, "decimals": 18, "name": "avUSD MAX", - "poolAddress": "0x89541CE9940DFA3add6D6dc2e20E3F743075DFF5", - "poolType": "lockRelease", "symbol": "avUSDx", - "tokenAddress": "0xDd1cDFA52E7D8474d434cd016fd346701db6B3B9" + "tokenAddress": "0xDd1cDFA52E7D8474d434cd016fd346701db6B3B9", + "pool": { + "address": "0x89541CE9940DFA3add6D6dc2e20E3F743075DFF5", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "avUSD MAX", - "poolAddress": "0x2c12313da5465D6da6E0A3574249A30839Fe8766", - "poolType": "burnMint", "symbol": "avUSDx", - "tokenAddress": "0xC37d32b09B0bB0aa9B2A70372d7Bc1216CB7D903" + "tokenAddress": "0xC37d32b09B0bB0aa9B2A70372d7Bc1216CB7D903", + "pool": { + "address": "0x2c12313da5465D6da6E0A3574249A30839Fe8766", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "avUSD MAX", - "poolAddress": "0xD08f814614Fb21bdcdd3Aa92123e2F954F9864b7", - "poolType": "burnMint", "symbol": "avUSDx", - "tokenAddress": "0xF424a63E4aC41b1faC5074Ccc24c7E5048fcA25D" + "tokenAddress": "0xF424a63E4aC41b1faC5074Ccc24c7E5048fcA25D", + "pool": { + "address": "0xD08f814614Fb21bdcdd3Aa92123e2F954F9864b7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "AXS": { @@ -373,19 +526,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Axie Infinity Shard", - "poolAddress": "0xf33341f2CE329B5DbCa7F9a0986Cff40d050440a", - "poolType": "lockRelease", "symbol": "AXS", - "tokenAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b" + "tokenAddress": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "pool": { + "address": "0xf33341f2CE329B5DbCa7F9a0986Cff40d050440a", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Axie Infinity Shard", - "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", - "poolType": "burnMint", "symbol": "AXS", - "tokenAddress": "0x97a9107C1793BC407d6F527b77e7fff4D812bece" + "tokenAddress": "0x97a9107C1793BC407d6F527b77e7fff4D812bece", + "pool": { + "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BANANA": { @@ -393,19 +554,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Banana", - "poolAddress": "0xB18eE11849a805651aC5D456034FD6352cfF635d", - "poolType": "lockRelease", "symbol": "BANANA", - "tokenAddress": "0x94e496474F1725f1c1824cB5BDb92d7691A4F03a" + "tokenAddress": "0x94e496474F1725f1c1824cB5BDb92d7691A4F03a", + "pool": { + "address": "0xB18eE11849a805651aC5D456034FD6352cfF635d", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Banana", - "poolAddress": "0x93Af6da985fD08dFA839cB2eD189D31E11c0A58f", - "poolType": "burnMint", "symbol": "BANANA", - "tokenAddress": "0x1a89ecd466a23e98f07111b0510a2D6c1cd5E400" + "tokenAddress": "0x1a89ecd466a23e98f07111b0510a2D6c1cd5E400", + "pool": { + "address": "0x93Af6da985fD08dFA839cB2eD189D31E11c0A58f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BANK": { @@ -413,19 +582,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lorenzo Governance Token", - "poolAddress": "0x0f9bf5199815e0244cb79B8c768b6979eC0290d3", - "poolType": "lockRelease", "symbol": "BANK", - "tokenAddress": "0x3AeE7602b612de36088F3ffEd8c8f10E86EbF2bF" + "tokenAddress": "0x3AeE7602b612de36088F3ffEd8c8f10E86EbF2bF", + "pool": { + "address": "0x0f9bf5199815e0244cb79B8c768b6979eC0290d3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lorenzo Governance Token", - "poolAddress": "0xdEC1532Abf3c2329026B5B26eE0Ea6c5c07a6c9b", - "poolType": "burnMint", "symbol": "BANK", - "tokenAddress": "0x0ba12138c55A7828b3fA1F9ef002fABdCB8996ae" + "tokenAddress": "0x0ba12138c55A7828b3fA1F9ef002fABdCB8996ae", + "pool": { + "address": "0xdEC1532Abf3c2329026B5B26eE0Ea6c5c07a6c9b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BARD": { @@ -433,19 +610,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lombard", - "poolAddress": "0xAA1BD1c07cfEAdb8Cc025fFa8781a853Dc88d555", - "poolType": "burnMint", "symbol": "BARD", - "tokenAddress": "0xd23A186A78c0B3B805505E5f8ea4083295ef9f3a" + "tokenAddress": "0xd23A186A78c0B3B805505E5f8ea4083295ef9f3a", + "pool": { + "address": "0xAA1BD1c07cfEAdb8Cc025fFa8781a853Dc88d555", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lombard", - "poolAddress": "0x94A43cC8C4d755271436cfE42793A66a6C9ae25b", - "poolType": "lockRelease", "symbol": "BARD", - "tokenAddress": "0xf0DB65D17e30a966C2ae6A21f6BBA71cea6e9754" + "tokenAddress": "0xf0DB65D17e30a966C2ae6A21f6BBA71cea6e9754", + "pool": { + "address": "0x94A43cC8C4d755271436cfE42793A66a6C9ae25b", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "beraBTC": { @@ -453,19 +638,27 @@ "allowListEnabled": false, "decimals": 8, "name": "Bera Bitcoin", - "poolAddress": "0xE354FA112CD7aA0DE5C4Bedce19965c9f549e689", - "poolType": "lockRelease", "symbol": "beraBTC", - "tokenAddress": "0xE368a6BBb2c285A557800FF676D85Dd7E9C6299B" + "tokenAddress": "0xE368a6BBb2c285A557800FF676D85Dd7E9C6299B", + "pool": { + "address": "0xE354FA112CD7aA0DE5C4Bedce19965c9f549e689", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bera Bitcoin", - "poolAddress": "0x1eCFe2220f18a5e4cDBc08563572d413B46fA8Ea", - "poolType": "burnMint", "symbol": "beraBTC", - "tokenAddress": "0x68C7A170bd9Ea9fb283a50d041531678111FBF31" + "tokenAddress": "0x68C7A170bd9Ea9fb283a50d041531678111FBF31", + "pool": { + "address": "0x1eCFe2220f18a5e4cDBc08563572d413B46fA8Ea", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BETS": { @@ -473,73 +666,105 @@ "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0xEf50b39fE4302D8bF499ce854f19B84098E64da6", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0xEf50b39fE4302D8bF499ce854f19B84098E64da6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0x77BEd59eaBa481F3f5122A1C9953d477d97A900d", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0x77BEd59eaBa481F3f5122A1C9953d477d97A900d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0xCba063b1f328e4d42b05a165CBBB590939BDD70a", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0xCba063b1f328e4d42b05a165CBBB590939BDD70a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0xdfeaa4acb814564Ab8c756A95E8269C620Ed9DEe", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0xdfeaa4acb814564Ab8c756A95E8269C620Ed9DEe", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0x17B54BCEb4dd037d8AFF01EccdAd358De73159dB", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0x17B54BCEb4dd037d8AFF01EccdAd358De73159dB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-unichain-1": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0x463D98c150A664452F68B914c353C4fB99B227AC", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0x463D98c150A664452F68B914c353C4fB99B227AC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0x8315Bbe2b2828559CEeCCCBCB4550A466227336E", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0x8315Bbe2b2828559CEeCCCBCB4550A466227336E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BetSwirl v2", - "poolAddress": "0xe7A4bcEb04a06AabC63BAeffb34F7B75217a83fA", - "poolType": "burnMint", "symbol": "BETS", - "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5" + "tokenAddress": "0x94025780a1aB58868D9B2dBBB775f44b32e8E6e5", + "pool": { + "address": "0xe7A4bcEb04a06AabC63BAeffb34F7B75217a83fA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BGB": { @@ -547,19 +772,27 @@ "allowListEnabled": false, "decimals": 18, "name": "BitgetToken", - "poolAddress": "0x41993c7228221403723B37D9F0B5F162C2902aA8", - "poolType": "lockRelease", "symbol": "BGB", - "tokenAddress": "0x54D2252757e1672EEaD234D27B1270728fF90581" + "tokenAddress": "0x54D2252757e1672EEaD234D27B1270728fF90581", + "pool": { + "address": "0x41993c7228221403723B37D9F0B5F162C2902aA8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "morph-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BitgetToken", - "poolAddress": "0x27d3e7164a9263010D57626Ac37371e3BD91C770", - "poolType": "burnMint", "symbol": "BGB", - "tokenAddress": "0x389C08Bc23A7317000a1FD76c7c5B0cb0b4640b5" + "tokenAddress": "0x389C08Bc23A7317000a1FD76c7c5B0cb0b4640b5", + "pool": { + "address": "0x27d3e7164a9263010D57626Ac37371e3BD91C770", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BKN": { @@ -567,28 +800,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Brickken", - "poolAddress": "0x995d8725bFE4909999B86Bb09cf7Cb9fC199Dd8a", - "poolType": "burnMint", "symbol": "BKN", - "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82" + "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82", + "pool": { + "address": "0x995d8725bFE4909999B86Bb09cf7Cb9fC199Dd8a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Brickken", - "poolAddress": "0xf7A646E5Fc6563B2BB4Cd8c4374CdFCa4185e975", - "poolType": "burnMint", "symbol": "BKN", - "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82" + "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82", + "pool": { + "address": "0xf7A646E5Fc6563B2BB4Cd8c4374CdFCa4185e975", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Brickken", - "poolAddress": "0xFf3633c00CADAac2C881638D59dF3714a9d59E33", - "poolType": "burnMint", "symbol": "BKN", - "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82" + "tokenAddress": "0xFc209EeBA3D744aA741cc5C2A73Ebf9C977B5F82", + "pool": { + "address": "0xFf3633c00CADAac2C881638D59dF3714a9d59E33", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BMX": { @@ -596,28 +841,40 @@ "allowListEnabled": false, "decimals": 18, "name": "BMX", - "poolAddress": "0xc64f6E56a19678190b8263f05beeed9fc5Cbc01f", - "poolType": "lockRelease", "symbol": "BMX", - "tokenAddress": "0x548f93779fBC992010C07467cBaf329DD5F059B7" + "tokenAddress": "0x548f93779fBC992010C07467cBaf329DD5F059B7", + "pool": { + "address": "0xc64f6E56a19678190b8263f05beeed9fc5Cbc01f", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "BMX", - "poolAddress": "0x303D6A634eaeEdD58f2CdbD2eaAD7090d96df15f", - "poolType": "burnMint", "symbol": "BMX", - "tokenAddress": "0x66eEd5FF1701E6ed8470DC391F05e27B1d0657eb" + "tokenAddress": "0x66eEd5FF1701E6ed8470DC391F05e27B1d0657eb", + "pool": { + "address": "0x303D6A634eaeEdD58f2CdbD2eaAD7090d96df15f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BMX", - "poolAddress": "0x0366ac315670Cde909317F6fbf954E2De28CE5c1", - "poolType": "burnMint", "symbol": "BMX", - "tokenAddress": "0xC28f1D82874ccFebFE6afDAB3c685D5E709067E5" + "tokenAddress": "0xC28f1D82874ccFebFE6afDAB3c685D5E709067E5", + "pool": { + "address": "0x0366ac315670Cde909317F6fbf954E2De28CE5c1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BOB": { @@ -625,28 +882,40 @@ "allowListEnabled": false, "decimals": 18, "name": "BOB", - "poolAddress": "0xf924B3Ac2d63145Ad88BcD2621a63Cd7D650673e", - "poolType": "lockRelease", "symbol": "BOB", - "tokenAddress": "0xB0BD54846a92b214C04A63B26AD7Dc5e19A60808" + "tokenAddress": "0xB0BD54846a92b214C04A63B26AD7Dc5e19A60808", + "pool": { + "address": "0xf924B3Ac2d63145Ad88BcD2621a63Cd7D650673e", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOB", - "poolAddress": "0x7E685254A1c696CF8A72a2F05d3eDBf18Ea624Bb", - "poolType": "burnMint", "symbol": "BOB", - "tokenAddress": "0x52B5fB4B0F6572B8C44d0251Cc224513ac5eB7E7" + "tokenAddress": "0x52B5fB4B0F6572B8C44d0251Cc224513ac5eB7E7", + "pool": { + "address": "0x7E685254A1c696CF8A72a2F05d3eDBf18Ea624Bb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOB", - "poolAddress": "0x9Dfaaa0826b8D81Ea7Cf7ED95619574bcb47d6EA", - "poolType": "burnMint", "symbol": "BOB", - "tokenAddress": "0xC9746F73cC33a36c2cD55b8aEFD732586946Cedd" + "tokenAddress": "0xC9746F73cC33a36c2cD55b8aEFD732586946Cedd", + "pool": { + "address": "0x9Dfaaa0826b8D81Ea7Cf7ED95619574bcb47d6EA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BOLD": { @@ -654,91 +923,131 @@ "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D" + "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D", + "pool": { + "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9" + "tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9", + "pool": { + "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D" + "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D", + "pool": { + "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D" + "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D", + "pool": { + "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D" + "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D", + "pool": { + "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D" + "tokenAddress": "0x03569CC076654F82679C4BA2124D64774781B01D", + "pool": { + "address": "0x10A9DE252EB9e11841fa58B18fD09aB43d4B7D92", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0x48Fd11f0F21bAC2D8486E6682fE1E2Cb98f9AAb1", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0x84533b1512A3A23F0c9668D88FDf86FEffdbb11A" + "tokenAddress": "0x84533b1512A3A23F0c9668D88FDf86FEffdbb11A", + "pool": { + "address": "0x48Fd11f0F21bAC2D8486E6682fE1E2Cb98f9AAb1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9", - "poolType": "lockRelease", "symbol": "BOLD", - "tokenAddress": "0x6440f144b7e50D6a8439336510312d2F54beB01D" + "tokenAddress": "0x6440f144b7e50D6a8439336510312d2F54beB01D", + "pool": { + "address": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0xA7D08c8252FCc5D6B4889eD8E80Ecd5BA37498C4", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0xe09B197f8c517ba8EA9440C31a8dDCD049CF7ccC" + "tokenAddress": "0xe09B197f8c517ba8EA9440C31a8dDCD049CF7ccC", + "pool": { + "address": "0xA7D08c8252FCc5D6B4889eD8E80Ecd5BA37498C4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BOLD Stablecoin", - "poolAddress": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", - "poolType": "burnMint", "symbol": "BOLD", - "tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9" + "tokenAddress": "0xf05a207442f14E446b0e32b12D2043bfc68Cb1C9", + "pool": { + "address": "0xCfC5092583C1B2122F221F524C198ABDeCBf3D1b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BONE": { @@ -746,172 +1055,248 @@ "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x932406A77B3cfd3EF845c7f2999Bae933Ae03739", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xec0CA5d2F362A826fa8F53C89A5Ce1C17CD604fa" + "tokenAddress": "0xec0CA5d2F362A826fa8F53C89A5Ce1C17CD604fa", + "pool": { + "address": "0x932406A77B3cfd3EF845c7f2999Bae933Ae03739", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x20Dacf037b437854926CAee12BfbEbAB123e6E69", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xF543915698bf89BD6d429adC79577d75DA2FA1fd" + "tokenAddress": "0xF543915698bf89BD6d429adC79577d75DA2FA1fd", + "pool": { + "address": "0x20Dacf037b437854926CAee12BfbEbAB123e6E69", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "celo-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x6d567695bA1e375e2F994181Aa997328c0bDaE72", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xD301a90cb3C7a9253305af30D92dd2C1FD1e704E" + "tokenAddress": "0xD301a90cb3C7a9253305af30D92dd2C1FD1e704E", + "pool": { + "address": "0x6d567695bA1e375e2F994181Aa997328c0bDaE72", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-andromeda-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x476e0714DE6Fcf0d009Eb4c4E8a8DB325BF2Ba4A", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x32aF448529b5067f9E4aBf9764ecfcE97d53aFD4" + "tokenAddress": "0x32aF448529b5067f9E4aBf9764ecfcE97d53aFD4", + "pool": { + "address": "0x476e0714DE6Fcf0d009Eb4c4E8a8DB325BF2Ba4A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x2d08A8979C9aE629a22dE33A884aF58bC31e2460", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x387090cDEa72d6Ab1598394d45c5B3e05616f15D" + "tokenAddress": "0x387090cDEa72d6Ab1598394d45c5B3e05616f15D", + "pool": { + "address": "0x2d08A8979C9aE629a22dE33A884aF58bC31e2460", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x37Bbd2052751c42Dc0C2A7A02A140FDE6A1F8416", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x88B81FD1753FEF7bbFf3BbC65E4Ba73a28CC9449" + "tokenAddress": "0x88B81FD1753FEF7bbFf3BbC65E4Ba73a28CC9449", + "pool": { + "address": "0x37Bbd2052751c42Dc0C2A7A02A140FDE6A1F8416", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x795411Fe0C1f88B30D18F5061589Afd140e49Ff0", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xe1886337D2ecBdB48A9dE8a68e8dEa2Ba9C5dFd2" + "tokenAddress": "0xe1886337D2ecBdB48A9dE8a68e8dEa2Ba9C5dFd2", + "pool": { + "address": "0x795411Fe0C1f88B30D18F5061589Afd140e49Ff0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0xee83E603b755889ceB652F3D8af3C735a98C486D", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xDd2D32Fea6e166fA53DEe5c1584456c0e8A889f5" + "tokenAddress": "0xDd2D32Fea6e166fA53DEe5c1584456c0e8A889f5", + "pool": { + "address": "0xee83E603b755889ceB652F3D8af3C735a98C486D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x691435ED2282052a064B8748BA2E3C7eeefcA8Fd", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x79a7d4EF9870474F18A88524Bf2349393B0C2e03" + "tokenAddress": "0x79a7d4EF9870474F18A88524Bf2349393B0C2e03", + "pool": { + "address": "0x691435ED2282052a064B8748BA2E3C7eeefcA8Fd", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x2B96db391d0f35f821e53De72508237492247e16", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x2F0B60F0e269dc01132bdCcdD48Bb8CF33021f0a" + "tokenAddress": "0x2F0B60F0e269dc01132bdCcdD48Bb8CF33021f0a", + "pool": { + "address": "0x2B96db391d0f35f821e53De72508237492247e16", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x67Df6368177C950914C0F634d1a003a6caa18aC0", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x4A7961249E49642474f9161f245Fc52D59F14113" + "tokenAddress": "0x4A7961249E49642474f9161f245Fc52D59F14113", + "pool": { + "address": "0x67Df6368177C950914C0F634d1a003a6caa18aC0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x7f399748490c25E32D3b8aaE4f0322c6466082B6", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x010c6F656E06f12BB3b115FCBC9ca282654795D2" + "tokenAddress": "0x010c6F656E06f12BB3b115FCBC9ca282654795D2", + "pool": { + "address": "0x7f399748490c25E32D3b8aaE4f0322c6466082B6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x9ecde69DF43aDd57AA60949e6Db5AC7b6DC11831", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x23535421f6e13F2084684BB052F58d1b33E0dB8e" + "tokenAddress": "0x23535421f6e13F2084684BB052F58d1b33E0dB8e", + "pool": { + "address": "0x9ecde69DF43aDd57AA60949e6Db5AC7b6DC11831", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x37cB2B7A45F8d17936EBaBB4Ed95dE61f5371022", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xeF76346aBA1F8c671BA6F51cCb47e93b4BF72aa0" + "tokenAddress": "0xeF76346aBA1F8c671BA6F51cCb47e93b4BF72aa0", + "pool": { + "address": "0x37cB2B7A45F8d17936EBaBB4Ed95dE61f5371022", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0xc75aCdceF4c679eaCb7a8CF1eF486B9Cf77478f8", - "poolType": "lockRelease", "symbol": "BONE", - "tokenAddress": "0x9813037ee2218799597d83D4a5B6F3b6778218d9" + "tokenAddress": "0x9813037ee2218799597d83D4a5B6F3b6778218d9", + "pool": { + "address": "0xc75aCdceF4c679eaCb7a8CF1eF486B9Cf77478f8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x1cdFc3B0fE64bb943829063D16ff7f835c0Fc28C", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x56357929B7d7720ac19ad55c923E85EdAC4Fc5D3" + "tokenAddress": "0x56357929B7d7720ac19ad55c923E85EdAC4Fc5D3", + "pool": { + "address": "0x1cdFc3B0fE64bb943829063D16ff7f835c0Fc28C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polkadot-mainnet-astar": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0xb88784Ff6fF162D3CD338627eBc171b08B17A1A3", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xe785f763d30f583EE6666Fa0e84f8bc32E9D57B9" + "tokenAddress": "0xe785f763d30f583EE6666Fa0e84f8bc32E9D57B9", + "pool": { + "address": "0xb88784Ff6fF162D3CD338627eBc171b08B17A1A3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0xd17E7239feEF68Ac9fdeC962F8cCbEcb3E130F5D", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0xc4B60B24F644282aaF6739bc7eb1888C69dB2A4F" + "tokenAddress": "0xc4B60B24F644282aaF6739bc7eb1888C69dB2A4F", + "pool": { + "address": "0xd17E7239feEF68Ac9fdeC962F8cCbEcb3E130F5D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BONE SHIBASWAP", - "poolAddress": "0x9342547460E0BE4C9559caE9cfF5E0772371F9Da", - "poolType": "burnMint", "symbol": "BONE", - "tokenAddress": "0x50E23d57309C61eab3D3d1EfE5DC02A36f945027" + "tokenAddress": "0x50E23d57309C61eab3D3d1EfE5DC02A36f945027", + "pool": { + "address": "0x9342547460E0BE4C9559caE9cfF5E0772371F9Da", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BR": { @@ -919,46 +1304,66 @@ "allowListEnabled": false, "decimals": 18, "name": "Bedrock", - "poolAddress": "0xEbaf5275843E4Ea7C9867307BB801D2a829e2a58", - "poolType": "burnMint", "symbol": "BR", - "tokenAddress": "0xd352dc6e5F0c45E2F2b38eb5565EB286A1ea4087" + "tokenAddress": "0xd352dc6e5F0c45E2F2b38eb5565EB286A1ea4087", + "pool": { + "address": "0xEbaf5275843E4Ea7C9867307BB801D2a829e2a58", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Bedrock", - "poolAddress": "0x2E02DF052e7C4a12e1B334DC3D182c39bb754dc3", - "poolType": "lockRelease", "symbol": "BR", - "tokenAddress": "0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41" + "tokenAddress": "0xFf7d6A96ae471BbCD7713aF9CB1fEeB16cf56B41", + "pool": { + "address": "0x2E02DF052e7C4a12e1B334DC3D182c39bb754dc3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Bedrock", - "poolAddress": "0xA67AA68B1fF880dA771f2646a95d789EF929610b", - "poolType": "burnMint", "symbol": "BR", - "tokenAddress": "0xd6122ddADa244913521F3d62006eaF756c157660" + "tokenAddress": "0xd6122ddADa244913521F3d62006eaF756c157660", + "pool": { + "address": "0xA67AA68B1fF880dA771f2646a95d789EF929610b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Bedrock", - "poolAddress": "0x3d430E1380286560899B94E3E9459c4ec300EF9a", - "poolType": "burnMint", "symbol": "BR", - "tokenAddress": "0x9B61879e91a0b1322F3d61c23Aaf936231882096" + "tokenAddress": "0x9B61879e91a0b1322F3d61c23Aaf936231882096", + "pool": { + "address": "0x3d430E1380286560899B94E3E9459c4ec300EF9a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bedrock", - "poolAddress": "3m8zgkeD3WSEqqjkG8UehV9uwAunkZoiZK99ZjPsyZxH", - "poolType": "burnMint", "symbol": "BR", - "tokenAddress": "BRryKTBVA4xYbgY6kkZtRWGEKz4aujNMeBkqNLRQbzp1" + "tokenAddress": "BRryKTBVA4xYbgY6kkZtRWGEKz4aujNMeBkqNLRQbzp1", + "pool": { + "address": "3m8zgkeD3WSEqqjkG8UehV9uwAunkZoiZK99ZjPsyZxH", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "brBTC": { @@ -966,82 +1371,118 @@ "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x163b337546725c1ef4b943f8d5113af803b5e01e3bc567d000f6565ca38e0aec", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0x8e51106b139001f1f25a320066621a2e0d140724ee9be1d49aaf9e76ceb24d75" + "tokenAddress": "0x8e51106b139001f1f25a320066621a2e0d140724ee9be1d49aaf9e76ceb24d75", + "pool": { + "address": "0x163b337546725c1ef4b943f8d5113af803b5e01e3bc567d000f6565ca38e0aec", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0xC82793e403a637ded107C3c9D0785776e46852A8", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0xC82793e403a637ded107C3c9D0785776e46852A8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x5390E2e17C896244B7544e8566E9D77599700DE5", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0x733a6c29eDA4a58931AE81b8d91e29f2EAf01df3" + "tokenAddress": "0x733a6c29eDA4a58931AE81b8d91e29f2EAf01df3", + "pool": { + "address": "0x5390E2e17C896244B7544e8566E9D77599700DE5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x30837313d7f9B0450267ccf269A36EdE3A963E56", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0x3376eBCa0A85Fc8D791B1001a571C41fdd61514a" + "tokenAddress": "0x3376eBCa0A85Fc8D791B1001a571C41fdd61514a", + "pool": { + "address": "0x30837313d7f9B0450267ccf269A36EdE3A963E56", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0xa08Eb272f3d0bE2ee6D6586fE7A8a129387118d4", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be" + "tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be", + "pool": { + "address": "0xa08Eb272f3d0bE2ee6D6586fE7A8a129387118d4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-xlayer-1": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x110D97B046920e23d201d147B2AfD9e853Ec7c28", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be" + "tokenAddress": "0xa161132371C94299D215915D4Cbc3B629E2059Be", + "pool": { + "address": "0x110D97B046920e23d201d147B2AfD9e853Ec7c28", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x330BF3C554ab94533069AF11313143eD3884cf15", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0xDfc7D2d003A053b2E0490531e9317A59962b511E" + "tokenAddress": "0xDfc7D2d003A053b2E0490531e9317A59962b511E", + "pool": { + "address": "0x330BF3C554ab94533069AF11313143eD3884cf15", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "0x512c2Ddf5f7F48a6c44cFF73CD8d7edEC5e6b0d8", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "0x2eC37d45FCAE65D9787ECf71dc85a444968f6646" + "tokenAddress": "0x2eC37d45FCAE65D9787ECf71dc85a444968f6646", + "pool": { + "address": "0x512c2Ddf5f7F48a6c44cFF73CD8d7edEC5e6b0d8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "brBTC", - "poolAddress": "HzJ3Y9MCuywRV4YLd6a8gigee3WDpWUv1dS5z57QNRaT", - "poolType": "burnMint", "symbol": "brBTC", - "tokenAddress": "brBg8x9yT4WnQd8Z43aX7wfrGMrimLfT2WCWRibHo3d" + "tokenAddress": "brBg8x9yT4WnQd8Z43aX7wfrGMrimLfT2WCWRibHo3d", + "pool": { + "address": "HzJ3Y9MCuywRV4YLd6a8gigee3WDpWUv1dS5z57QNRaT", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BTC.b": { @@ -1049,55 +1490,79 @@ "allowListEnabled": false, "decimals": 8, "name": "Bitcoin", - "poolAddress": "0x67927d7eA19F9A1053f4f5BBdf827Ed9870F1a1B", - "poolType": "burnMint", "symbol": "BTC.b", - "tokenAddress": "0x152b9d0FdC40C096757F570A51E494bd4b943E50" + "tokenAddress": "0x152b9d0FdC40C096757F570A51E494bd4b943E50", + "pool": { + "address": "0x67927d7eA19F9A1053f4f5BBdf827Ed9870F1a1B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bitcoin", - "poolAddress": "0xBA59cF1c1563a9B93A8C5D70F8E445eaCa9842D0", - "poolType": "burnMint", "symbol": "BTC.b", - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072" + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "pool": { + "address": "0xBA59cF1c1563a9B93A8C5D70F8E445eaCa9842D0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "megaeth-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bitcoin", - "poolAddress": "0xa9FC147f45239b56781D09ec748df194d54A7913", - "poolType": "burnMint", "symbol": "BTC.b", - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072" + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "pool": { + "address": "0xa9FC147f45239b56781D09ec748df194d54A7913", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bitcoin", - "poolAddress": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70", - "poolType": "burnMint", "symbol": "BTC.b", - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072" + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "pool": { + "address": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polygon-mainnet-katana": { "allowListEnabled": false, "decimals": 8, "name": "Bitcoin on Katana", - "poolAddress": "0xf1fc1bE000Db6fa2193aB75E461a5603400d031F", - "poolType": "burnMint", "symbol": "BTCK", - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072" + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "pool": { + "address": "0xf1fc1bE000Db6fa2193aB75E461a5603400d031F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "stable-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Bitcoin", - "poolAddress": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154", - "poolType": "burnMint", "symbol": "BTC.b", - "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072" + "tokenAddress": "0xB0F70C0bD6FD87dbEb7C10dC692a2a6106817072", + "pool": { + "address": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BTR": { @@ -1105,28 +1570,40 @@ "allowListEnabled": false, "decimals": 18, "name": "BTR Token", - "poolAddress": "0x786248B634B1ebC7B5fc809c74a1A212fc920d63", - "poolType": "lockRelease", "symbol": "BTR", - "tokenAddress": "0x0E4cF4Affdb72b39Ea91fA726D291781cBd020bF" + "tokenAddress": "0x0E4cF4Affdb72b39Ea91fA726D291781cBd020bF", + "pool": { + "address": "0x786248B634B1ebC7B5fc809c74a1A212fc920d63", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BTR token", - "poolAddress": "0x86248bE697645cfE0fdeB37FBa0102604f355eFA", - "poolType": "burnMint", "symbol": "BTR", - "tokenAddress": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51" + "tokenAddress": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51", + "pool": { + "address": "0x86248bE697645cfE0fdeB37FBa0102604f355eFA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BTR token", - "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359", - "poolType": "burnMint", "symbol": "BTR", - "tokenAddress": "0x6C76dE483F1752Ac8473e2B4983A873991e70dA7" + "tokenAddress": "0x6C76dE483F1752Ac8473e2B4983A873991e70dA7", + "pool": { + "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "BYTES": { @@ -1134,37 +1611,53 @@ "allowListEnabled": false, "decimals": 18, "name": "BYTES", - "poolAddress": "0xAb2e4F219E1A24bA061E0Ecf07c0e3Dc7d410A9A", - "poolType": "burnMint", "symbol": "BYTES", - "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b" + "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b", + "pool": { + "address": "0xAb2e4F219E1A24bA061E0Ecf07c0e3Dc7d410A9A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "BYTES", - "poolAddress": "0x5d8cf2624Aafd77b5E2bA9d729658F9BD2058069", - "poolType": "burnMint", "symbol": "BYTES", - "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b" + "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b", + "pool": { + "address": "0x5d8cf2624Aafd77b5E2bA9d729658F9BD2058069", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BYTES", - "poolAddress": "0x0ef01909C4aA5403654452729149F0Db8C7be1E1", - "poolType": "lockRelease", "symbol": "BYTES", - "tokenAddress": "0xa19f5264F7D7Be11c451C093D8f92592820Bea86" + "tokenAddress": "0xa19f5264F7D7Be11c451C093D8f92592820Bea86", + "pool": { + "address": "0x0ef01909C4aA5403654452729149F0Db8C7be1E1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "BYTES", - "poolAddress": "0x8Cc3af9D6f107124791A34DFD05A496983b0c11e", - "poolType": "burnMint", "symbol": "BYTES", - "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b" + "tokenAddress": "0x13af0Fe9eB35e91758B467f95cbc78e16FdD8B6b", + "pool": { + "address": "0x8Cc3af9D6f107124791A34DFD05A496983b0c11e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "CANNED": { @@ -1172,19 +1665,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Canned dog", - "poolAddress": "0x5d7ccbaa5b0D65aa8A2Ed5989B32C64963fDF370", - "poolType": "burnMint", "symbol": "CANNED", - "tokenAddress": "0xa2e543EE6531bb9640dde7ad018eA965cD936a67" + "tokenAddress": "0xa2e543EE6531bb9640dde7ad018eA965cD936a67", + "pool": { + "address": "0x5d7ccbaa5b0D65aa8A2Ed5989B32C64963fDF370", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Canned dog", - "poolAddress": "0x9076EFCAC1a98dF0edC756e3892ED0F54A2F4A29", - "poolType": "lockRelease", "symbol": "CANNED", - "tokenAddress": "0x5d63C604803BbF7919953b73c89309B5CBcc227a" + "tokenAddress": "0x5d63C604803BbF7919953b73c89309B5CBcc227a", + "pool": { + "address": "0x9076EFCAC1a98dF0edC756e3892ED0F54A2F4A29", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "CGX": { @@ -1192,19 +1693,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Forkast", - "poolAddress": "0xEcfec1595D273A71aC94370eA1C62480569dCAFf", - "poolType": "burnMint", "symbol": "CGX", - "tokenAddress": "0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e" + "tokenAddress": "0xdBDE08d475bd50E2D1A6af34c7b10DD430D8396e", + "pool": { + "address": "0xEcfec1595D273A71aC94370eA1C62480569dCAFf", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Forkast", - "poolAddress": "0x394d5854216d0d44c3828f49e201917451eb477B", - "poolType": "burnMint", "symbol": "CGX", - "tokenAddress": "0x656fE582B4C6DC95c598EA54dc820eb36152E2f7" + "tokenAddress": "0x656fE582B4C6DC95c598EA54dc820eb36152E2f7", + "pool": { + "address": "0x394d5854216d0d44c3828f49e201917451eb477B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "CHEX": { @@ -1212,28 +1721,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Chintai Exchange Token", - "poolAddress": "0x4ea2cb69c1a347cB2eEE8FE0EfFA2762b4aD68bb", - "poolType": "burnMint", "symbol": "CHEX", - "tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f" + "tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f", + "pool": { + "address": "0x4ea2cb69c1a347cB2eEE8FE0EfFA2762b4aD68bb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Chintai Exchange Token", - "poolAddress": "0x1c01171761A94538377FD0FDA230ec921274Df47", - "poolType": "burnMint", "symbol": "CHEX", - "tokenAddress": "0xc43F3Ae305a92043bd9b62eBd2FE14F7547ee485" + "tokenAddress": "0xc43F3Ae305a92043bd9b62eBd2FE14F7547ee485", + "pool": { + "address": "0x1c01171761A94538377FD0FDA230ec921274Df47", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Chintai Exchange Token", - "poolAddress": "0xAF819a87231cF522f1e2b2965acdbC436c737c98", - "poolType": "burnMint", "symbol": "CHEX", - "tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f" + "tokenAddress": "0x9Ce84F6A69986a83d92C324df10bC8E64771030f", + "pool": { + "address": "0xAF819a87231cF522f1e2b2965acdbC436c737c98", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "CHIKA": { @@ -1241,19 +1762,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Chiikawa", - "poolAddress": "0xCE5c6D7383BB72Fd7890f07aCF51C76A36ac00fB", - "poolType": "burnMint", "symbol": "CHIKA", - "tokenAddress": "0xff70300dDED939Ff6db9174EB38EeC183a12344b" + "tokenAddress": "0xff70300dDED939Ff6db9174EB38EeC183a12344b", + "pool": { + "address": "0xCE5c6D7383BB72Fd7890f07aCF51C76A36ac00fB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Chiikawa", - "poolAddress": "0x9aD61F86CD457da798C859c26517acd1FC971c04", - "poolType": "lockRelease", "symbol": "CHIKA", - "tokenAddress": "0x61CFA29261d8151D39244b8FfCf8DFd2f9DF3839" + "tokenAddress": "0x61CFA29261d8151D39244b8FfCf8DFd2f9DF3839", + "pool": { + "address": "0x9aD61F86CD457da798C859c26517acd1FC971c04", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "CKP": { @@ -1261,19 +1790,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Cakepie", - "poolAddress": "0xA690C439dCd4a5507FCEB4Da0517a69e8244DB90", - "poolType": "burnMint", "symbol": "CKP", - "tokenAddress": "0x2B5D9ADea07B590b638FFc165792b2C610EdA649" + "tokenAddress": "0x2B5D9ADea07B590b638FFc165792b2C610EdA649", + "pool": { + "address": "0xA690C439dCd4a5507FCEB4Da0517a69e8244DB90", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Cakepie", - "poolAddress": "0x97Cb0f52CF2270971eB588C1CE664F65382cd032", - "poolType": "burnMint", "symbol": "CKP", - "tokenAddress": "0x346Af1954e3d6be46B96dA713a1f7fD2d1928F1d" + "tokenAddress": "0x346Af1954e3d6be46B96dA713a1f7fD2d1928F1d", + "pool": { + "address": "0x97Cb0f52CF2270971eB588C1CE664F65382cd032", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "clBTC": { @@ -1281,37 +1818,53 @@ "allowListEnabled": false, "decimals": 18, "name": "clBTC", - "poolAddress": "0xDDf56a92120E54B39D2E4ba4e92Cb23d45304e48", - "poolType": "burnMint", "symbol": "clBTC", - "tokenAddress": "0xb944e1ceb32E5672Bf48fE7145D1A5D4F3D95D25" + "tokenAddress": "0xb944e1ceb32E5672Bf48fE7145D1A5D4F3D95D25", + "pool": { + "address": "0xDDf56a92120E54B39D2E4ba4e92Cb23d45304e48", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "clBTC", - "poolAddress": "0x77fBC9CBCd931d4059Df523950F9f685a6003eA1", - "poolType": "lockRelease", "symbol": "clBTC", - "tokenAddress": "0x8d2757EA27AaBf172DA4CCa4e5474c76016e3dC5" + "tokenAddress": "0x8d2757EA27AaBf172DA4CCa4e5474c76016e3dC5", + "pool": { + "address": "0x77fBC9CBCd931d4059Df523950F9f685a6003eA1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "clBTC", - "poolAddress": "0x604Ea3Dd67754bbd309a1657A2f5108559EEaBC9", - "poolType": "burnMint", "symbol": "clBTC", - "tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae" + "tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae", + "pool": { + "address": "0x604Ea3Dd67754bbd309a1657A2f5108559EEaBC9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "clBTC", - "poolAddress": "0xBb8b739C28898F7d143584380e7b689ecCaB2c9F", - "poolType": "burnMint", "symbol": "clBTC", - "tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae" + "tokenAddress": "0x7a4c2C39e25ca0D6A1Ac4af14dD601c2A7eDA8Ae", + "pool": { + "address": "0xBb8b739C28898F7d143584380e7b689ecCaB2c9F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "CRTV": { @@ -1319,28 +1872,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Creative Token", - "poolAddress": "0xE9daD7c1D857F09547703Be89Be102ca232D9837", - "poolType": "lockRelease", "symbol": "CRTV", - "tokenAddress": "0x4B62D9b3DE9FAB98659693c9ee488D2E4eE56c44" + "tokenAddress": "0x4B62D9b3DE9FAB98659693c9ee488D2E4eE56c44", + "pool": { + "address": "0xE9daD7c1D857F09547703Be89Be102ca232D9837", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Creative Token", - "poolAddress": "0x7A16780ABCa3CB7C1968c7C726C31A4916F4F828", - "poolType": "burnMint", "symbol": "CRTV", - "tokenAddress": "0x06B9f097407084b9C7d82EA82E8FC693d3394eB6" + "tokenAddress": "0x06B9f097407084b9C7d82EA82E8FC693d3394eB6", + "pool": { + "address": "0x7A16780ABCa3CB7C1968c7C726C31A4916F4F828", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Creative Token", - "poolAddress": "0x07d31ab079BF606BADdb806cced99D23284E62F2", - "poolType": "burnMint", "symbol": "CRTV", - "tokenAddress": "0xEB531C4470E8588520a7deb8B5Ea2289f9a9ad0f" + "tokenAddress": "0xEB531C4470E8588520a7deb8B5Ea2289f9a9ad0f", + "pool": { + "address": "0x07d31ab079BF606BADdb806cced99D23284E62F2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "DAMN": { @@ -1348,19 +1913,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Sol Killer", - "poolAddress": "0x1dBDd800477B67191B70C51f327968f0F835c58d", - "poolType": "burnMint", "symbol": "DAMN", - "tokenAddress": "0x28be0935fd470C46325Bc47A1c65C168E8473a3d" + "tokenAddress": "0x28be0935fd470C46325Bc47A1c65C168E8473a3d", + "pool": { + "address": "0x1dBDd800477B67191B70C51f327968f0F835c58d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sol Killer", - "poolAddress": "0x68D443e22AEd9bdEF014Fad3FD19752CCeaE9990", - "poolType": "lockRelease", "symbol": "DAMN", - "tokenAddress": "0xeCe898EdCc0AF91430603175F945D8de75291c70" + "tokenAddress": "0xeCe898EdCc0AF91430603175F945D8de75291c70", + "pool": { + "address": "0x68D443e22AEd9bdEF014Fad3FD19752CCeaE9990", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "DEGEN": { @@ -1368,19 +1941,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Degen Arena", - "poolAddress": "0xC8c2Fe3Df1d300F366cE831a34276d7E4dd1F9B5", - "poolType": "lockRelease", "symbol": "DEGEN", - "tokenAddress": "0x420658A1d8B8F5C36DdAf1Bb828f347Ba9011969" + "tokenAddress": "0x420658A1d8B8F5C36DdAf1Bb828f347Ba9011969", + "pool": { + "address": "0xC8c2Fe3Df1d300F366cE831a34276d7E4dd1F9B5", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Degen Arena", - "poolAddress": "0x09624a5520F0a452c5D3D8AefCd6B6E47FB5281f", - "poolType": "burnMint", "symbol": "DEGEN", - "tokenAddress": "0xf252cf43175CF739022E3A9533b2267dcFE1A830" + "tokenAddress": "0xf252cf43175CF739022E3A9533b2267dcFE1A830", + "pool": { + "address": "0x09624a5520F0a452c5D3D8AefCd6B6E47FB5281f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "DFX": { @@ -1388,28 +1969,40 @@ "allowListEnabled": false, "decimals": 18, "name": "DFX Token (L2)", - "poolAddress": "0x5B1f92CD2a3cd4137BDc16d92A78795F697bBf7c", - "poolType": "burnMint", "symbol": "DFX", - "tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93" + "tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93", + "pool": { + "address": "0x5B1f92CD2a3cd4137BDc16d92A78795F697bBf7c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DFX Token", - "poolAddress": "0xc2ef2f272D2C09b0a8523cEf32C96D3A7f379979", - "poolType": "lockRelease", "symbol": "DFX", - "tokenAddress": "0x888888435FDe8e7d4c54cAb67f206e4199454c60" + "tokenAddress": "0x888888435FDe8e7d4c54cAb67f206e4199454c60", + "pool": { + "address": "0xc2ef2f272D2C09b0a8523cEf32C96D3A7f379979", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DFX Token (L2)", - "poolAddress": "0x04505E4182A2ab7989b03eB2321E3141C1c79187", - "poolType": "burnMint", "symbol": "DFX", - "tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93" + "tokenAddress": "0x27f485b62C4A7E635F561A87560Adf5090239E93", + "pool": { + "address": "0x04505E4182A2ab7989b03eB2321E3141C1c79187", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "DIP": { @@ -1417,19 +2010,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Decentralized Insurance Protocol Token", - "poolAddress": "0x154d09dB12E6e1EF94e57ca1889ffEcBb90CE034", - "poolType": "burnMint", "symbol": "DIP", - "tokenAddress": "0xAc86f3556cBd2b4d800D17ADC3a266B500FCB9F5" + "tokenAddress": "0xAc86f3556cBd2b4d800D17ADC3a266B500FCB9F5", + "pool": { + "address": "0x154d09dB12E6e1EF94e57ca1889ffEcBb90CE034", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Decentralized Insurance Protocol", - "poolAddress": "0xAc3453eEF710e1E6457383F29D696Db5435Bf95b", - "poolType": "lockRelease", "symbol": "DIP", - "tokenAddress": "0xc719d010B63E5bbF2C0551872CD5316ED26AcD83" + "tokenAddress": "0xc719d010B63E5bbF2C0551872CD5316ED26AcD83", + "pool": { + "address": "0xAc3453eEF710e1E6457383F29D696Db5435Bf95b", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "DOBO": { @@ -1437,37 +2038,53 @@ "allowListEnabled": false, "decimals": 9, "name": "DogeBonk.com", - "poolAddress": "0x51364bc1a2FB9BC271612BF0936E857B5e000aAb", - "poolType": "lockRelease", "symbol": "DOBO", - "tokenAddress": "0xAe2DF9F730c54400934c06a17462c41C08a06ED8" + "tokenAddress": "0xAe2DF9F730c54400934c06a17462c41C08a06ED8", + "pool": { + "address": "0x51364bc1a2FB9BC271612BF0936E857B5e000aAb", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 9, "name": "DogeBonk.com", - "poolAddress": "0x5F49Ef413B9A0e8C31bf6ecBE67D9B98778294f2", - "poolType": "burnMint", "symbol": "DOBO", - "tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d" + "tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d", + "pool": { + "address": "0x5F49Ef413B9A0e8C31bf6ecBE67D9B98778294f2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 9, "name": "DogeBonk.com", - "poolAddress": "0x11EDBA90ae48d44808AB984206F776932c8575A9", - "poolType": "burnMint", "symbol": "DOBO", - "tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d" + "tokenAddress": "0x57798c5dc0DCcE1E720c3C4aEB7e6786FeF1BE0d", + "pool": { + "address": "0x11EDBA90ae48d44808AB984206F776932c8575A9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "DogeBonk.com", - "poolAddress": "0x817404e98d28b8065c6e1C76E6bCD9088aEFb31A", - "poolType": "burnMint", "symbol": "DOBO", - "tokenAddress": "0x3683f8F60A4a52ba7F26c43626E274913020aDaC" + "tokenAddress": "0x3683f8F60A4a52ba7F26c43626E274913020aDaC", + "pool": { + "address": "0x817404e98d28b8065c6e1C76E6bCD9088aEFb31A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "DOLO": { @@ -1475,28 +2092,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Dolomite", - "poolAddress": "0x9E7728077F753dFDF53C2236097E27C743890992", - "poolType": "burnMint", "symbol": "DOLO", - "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654" + "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654", + "pool": { + "address": "0x9E7728077F753dFDF53C2236097E27C743890992", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Dolomite", - "poolAddress": "0xeDD4b6936bDD9Fc272ac3a8dDC4A1b61b5C26bAC", - "poolType": "burnMint", "symbol": "DOLO", - "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654" + "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654", + "pool": { + "address": "0xeDD4b6936bDD9Fc272ac3a8dDC4A1b61b5C26bAC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Dolomite", - "poolAddress": "0xC69e7a187fA739028Ee613426795D91B610932c7", - "poolType": "burnMint", "symbol": "DOLO", - "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654" + "tokenAddress": "0x0F81001eF0A83ecCE5ccebf63EB302c70a39a654", + "pool": { + "address": "0xC69e7a187fA739028Ee613426795D91B610932c7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "DPI": { @@ -1504,28 +2133,40 @@ "allowListEnabled": false, "decimals": 18, "name": "DefiPulse Index", - "poolAddress": "0x5dFdAF7A7BDB9Da17FF22a8a796e2fcE58daA5b2", - "poolType": "burnMint", "symbol": "DPI", - "tokenAddress": "0x9737C658272e66Faad39D7AD337789Ee6D54F500" + "tokenAddress": "0x9737C658272e66Faad39D7AD337789Ee6D54F500", + "pool": { + "address": "0x5dFdAF7A7BDB9Da17FF22a8a796e2fcE58daA5b2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "DefiPulse Index", - "poolAddress": "0xA77Ca3B16aEe1e177FD8Eff038F929819B75490f", - "poolType": "burnMint", "symbol": "DPI", - "tokenAddress": "0xc6955B85b622369a54Cc8C6DBeCb8e03c0885BD8" + "tokenAddress": "0xc6955B85b622369a54Cc8C6DBeCb8e03c0885BD8", + "pool": { + "address": "0xA77Ca3B16aEe1e177FD8Eff038F929819B75490f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DefiPulse Index", - "poolAddress": "0x9b8FEf06D74c3880FC6886b3c6FbbBf601Db0DCC", - "poolType": "lockRelease", "symbol": "DPI", - "tokenAddress": "0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b" + "tokenAddress": "0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b", + "pool": { + "address": "0x9b8FEf06D74c3880FC6886b3c6FbbBf601Db0DCC", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "dsETH": { @@ -1533,28 +2174,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Diversified Staked ETH Index", - "poolAddress": "0xabB35cA480b3f9bcB770fCB7447017373da2Bea6", - "poolType": "burnMint", "symbol": "dsETH", - "tokenAddress": "0x6320320979A901aAb3461A8D9718Ab9CF07E73D3" + "tokenAddress": "0x6320320979A901aAb3461A8D9718Ab9CF07E73D3", + "pool": { + "address": "0xabB35cA480b3f9bcB770fCB7447017373da2Bea6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Diversified Staked ETH Index", - "poolAddress": "0x9061247649e327B7DFd256D882dCC0A0D6d86A8e", - "poolType": "burnMint", "symbol": "dsETH", - "tokenAddress": "0x37E7C051Dc5A24313cEEC581222882648ba537aa" + "tokenAddress": "0x37E7C051Dc5A24313cEEC581222882648ba537aa", + "pool": { + "address": "0x9061247649e327B7DFd256D882dCC0A0D6d86A8e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Diversified Staked ETH Index (dsETH)", - "poolAddress": "0x8E7ebBb95e369BC854Ee7021C7CF2E282c3bCAEa", - "poolType": "lockRelease", "symbol": "dsETH", - "tokenAddress": "0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE" + "tokenAddress": "0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE", + "pool": { + "address": "0x8E7ebBb95e369BC854Ee7021C7CF2E282c3bCAEa", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "EARNM": { @@ -1562,37 +2215,53 @@ "allowListEnabled": false, "decimals": 18, "name": "EARNM Token", - "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", - "poolType": "burnMint", "symbol": "EARNM", - "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5" + "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5", + "pool": { + "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "EARNM Token", - "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", - "poolType": "burnMint", "symbol": "EARNM", - "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5" + "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5", + "pool": { + "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "EARNM Token", - "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", - "poolType": "burnMint", "symbol": "EARNM", - "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5" + "tokenAddress": "0xcF1C66E3CF649F8E29835337687Be692896a23c5", + "pool": { + "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "EARNM Token", - "poolAddress": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", - "poolType": "lockRelease", "symbol": "EARNM", - "tokenAddress": "0xBA98B09050F8837424fa8b71B4802c61cb1a4097" + "tokenAddress": "0xBA98B09050F8837424fa8b71B4802c61cb1a4097", + "pool": { + "address": "0xaB9502c8886Bd9CEd344A3684784a5e4C0fC46d0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "EDEN": { @@ -1600,19 +2269,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Eden Token", - "poolAddress": "0x74d0DD4551e4BF18e13c630C1a537fAF323bB43C", - "poolType": "burnMint", "symbol": "EDEN", - "tokenAddress": "0x235B6fe22B4642aDa16D311855c49Ce7DE260841" + "tokenAddress": "0x235B6fe22B4642aDa16D311855c49Ce7DE260841", + "pool": { + "address": "0x74d0DD4551e4BF18e13c630C1a537fAF323bB43C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Eden Token", - "poolAddress": "0xC8ADf2f51a35b0a9d8f74675b64c954Ca2Dcbc14", - "poolType": "burnMint", "symbol": "EDEN", - "tokenAddress": "0x24A3D725C37A8D1a66Eb87f0E5D07fE67c120035" + "tokenAddress": "0x24A3D725C37A8D1a66Eb87f0E5D07fE67c120035", + "pool": { + "address": "0xC8ADf2f51a35b0a9d8f74675b64c954Ca2Dcbc14", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "egETH": { @@ -1620,28 +2297,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Bridged egETH", - "poolAddress": "0xac939a46B8CE13205C68e949205c4683cfE715Ca", - "poolType": "burnMint", "symbol": "Bridged egETH", - "tokenAddress": "0x6C49A527bdd2E09D4337C8699aA7B44dD053Eda8" + "tokenAddress": "0x6C49A527bdd2E09D4337C8699aA7B44dD053Eda8", + "pool": { + "address": "0xac939a46B8CE13205C68e949205c4683cfE715Ca", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Eigenpie Restaked ETH", - "poolAddress": "0x4E63008092645521CFc989FB78c1324CDd371ed0", - "poolType": "lockRelease", "symbol": "egETH", - "tokenAddress": "0x18f313Fc6Afc9b5FD6f0908c1b3D476E3feA1DD9" + "tokenAddress": "0x18f313Fc6Afc9b5FD6f0908c1b3D476E3feA1DD9", + "pool": { + "address": "0x4E63008092645521CFc989FB78c1324CDd371ed0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "egETH", - "poolAddress": "0x2e797C6b88bEBbD540831F4E55Ed56fDf06a49a7", - "poolType": "burnMint", "symbol": "egETH", - "tokenAddress": "0x8631e02168176AB709Cadf4Bcaea0B6266f5fa41" + "tokenAddress": "0x8631e02168176AB709Cadf4Bcaea0B6266f5fa41", + "pool": { + "address": "0x2e797C6b88bEBbD540831F4E55Ed56fDf06a49a7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "elizaOS": { @@ -1649,37 +2338,53 @@ "allowListEnabled": false, "decimals": 9, "name": "elizaOS", - "poolAddress": "0x3092650398cF38c548eA512C69564b086a357bcD", - "poolType": "burnMint", "symbol": "elizaOS", - "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478" + "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "pool": { + "address": "0x3092650398cF38c548eA512C69564b086a357bcD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 9, "name": "elizaOS", - "poolAddress": "0x074D27002E1f0b89fEd9685af6e15a6EA8141A33", - "poolType": "burnMint", "symbol": "elizaOS", - "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478" + "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "pool": { + "address": "0x074D27002E1f0b89fEd9685af6e15a6EA8141A33", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "elizaOS", - "poolAddress": "0xC03F9E6c1C5F5D553C77781327640E0c7d30a73d", - "poolType": "burnMint", "symbol": "elizaOS", - "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478" + "tokenAddress": "0xea17Df5Cf6D172224892B5477A16ACb111182478", + "pool": { + "address": "0xC03F9E6c1C5F5D553C77781327640E0c7d30a73d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "elizaOS", - "poolAddress": "9RyrjX5Jy3gFpYa4HLBBiK9sHWvvC9YTDKh1XZzJynSz", - "poolType": "burnMint", "symbol": "elizaOS", - "tokenAddress": "DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA" + "tokenAddress": "DuMbhu7mvQvqQHGcnikDgb4XegXJRyhUBfdU22uELiZA", + "pool": { + "address": "9RyrjX5Jy3gFpYa4HLBBiK9sHWvvC9YTDKh1XZzJynSz", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "EmCH": { @@ -1687,19 +2392,27 @@ "allowListEnabled": false, "decimals": 8, "name": "EmGEMx Switzerland", - "poolAddress": "0x0Fc71Baa3d2e40299c2c8039F6d7a24eF43509d8", - "poolType": "lockRelease", "symbol": "EmCH", - "tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710" + "tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710", + "pool": { + "address": "0x0Fc71Baa3d2e40299c2c8039F6d7a24eF43509d8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "EmGEMx Switzerland", - "poolAddress": "0x4488d79B3996364dBa219d98e82a6B0A3D937E62", - "poolType": "burnMint", "symbol": "EmCH", - "tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710" + "tokenAddress": "0xA445bA2c94d9dE6bFd13F2fe4165E738C4330710", + "pool": { + "address": "0x4488d79B3996364dBa219d98e82a6B0A3D937E62", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "enzoBTC": { @@ -1707,19 +2420,27 @@ "allowListEnabled": false, "decimals": 8, "name": "Lorenzo Wrapped Bitcoin", - "poolAddress": "0xcb0FcCcb7a624395BaE54C3d3D0Ee27BC61Bd57a", - "poolType": "lockRelease", "symbol": "enzoBTC", - "tokenAddress": "0x6A9A65B84843F5fD4aC9a0471C4fc11AFfFBce4a" + "tokenAddress": "0x6A9A65B84843F5fD4aC9a0471C4fc11AFfFBce4a", + "pool": { + "address": "0xcb0FcCcb7a624395BaE54C3d3D0Ee27BC61Bd57a", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-hashkey-1": { "allowListEnabled": false, "decimals": 8, "name": "Lorenzo Wrapped Bitcoin", - "poolAddress": "0xDA1EbA3837Ea8D96e6c24494F8590028Bc7C4788", - "poolType": "burnMint", "symbol": "enzoBTC", - "tokenAddress": "0x1586E9A616B969e26f0712C504320a6800b5ce91" + "tokenAddress": "0x1586E9A616B969e26f0712C504320a6800b5ce91", + "pool": { + "address": "0xDA1EbA3837Ea8D96e6c24494F8590028Bc7C4788", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ETHx": { @@ -1727,28 +2448,40 @@ "allowListEnabled": false, "decimals": 18, "name": "ETHx", - "poolAddress": "0xc707F7E0f73c17a4eE7D3965c7b3c5E0ab42cBf5", - "poolType": "burnMint", "symbol": "ETHx", - "tokenAddress": "0xED65C5085a18Fa160Af0313E60dcc7905E944Dc7" + "tokenAddress": "0xED65C5085a18Fa160Af0313E60dcc7905E944Dc7", + "pool": { + "address": "0xc707F7E0f73c17a4eE7D3965c7b3c5E0ab42cBf5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "ETHx", - "poolAddress": "0xb144FcE921D564d77FD9F226965984654C1AFA55", - "poolType": "burnMint", "symbol": "ETHx", - "tokenAddress": "0xc54B43eaF921A5194c7973A4d65E055E5a1453c2" + "tokenAddress": "0xc54B43eaF921A5194c7973A4d65E055E5a1453c2", + "pool": { + "address": "0xb144FcE921D564d77FD9F226965984654C1AFA55", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ETHx", - "poolAddress": "0xeAD31B98179e2637Bb052a970Ac92Cbb2E26461d", - "poolType": "lockRelease", "symbol": "ETHx", - "tokenAddress": "0xA35b1B31Ce002FBF2058D22F30f95D405200A15b" + "tokenAddress": "0xA35b1B31Ce002FBF2058D22F30f95D405200A15b", + "pool": { + "address": "0xeAD31B98179e2637Bb052a970Ac92Cbb2E26461d", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "eUSX": { @@ -1756,19 +2489,27 @@ "allowListEnabled": false, "decimals": 6, "name": "eUSX Token", - "poolAddress": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3", - "poolType": "burnMint", "symbol": "eUSX", - "tokenAddress": "0x21ACfc23D57dB524599dA96603acb5e97De2b7B2" + "tokenAddress": "0x21ACfc23D57dB524599dA96603acb5e97De2b7B2", + "pool": { + "address": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "eUSX ", - "poolAddress": "3BLXohtpL2iyHsJLYzp4fmy9ZjbjE7ocPfDMFaU7U3gD", - "poolType": "lockRelease", "symbol": "eUSX", - "tokenAddress": "3ThdFZQKM6kRyVGLG48kaPg5TRMhYMKY1iCRa9xop1WC" + "tokenAddress": "3ThdFZQKM6kRyVGLG48kaPg5TRMhYMKY1iCRa9xop1WC", + "pool": { + "address": "3BLXohtpL2iyHsJLYzp4fmy9ZjbjE7ocPfDMFaU7U3gD", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "FEED": { @@ -1776,19 +2517,27 @@ "allowListEnabled": false, "decimals": 18, "name": "FEED", - "poolAddress": "0x6419221A0856f507a0b869814e461033d810990b", - "poolType": "burnMint", "symbol": "FEED", - "tokenAddress": "0xc3d77Eb7665eDF3c1D3Bdaa325A14D6ff254d2dD" + "tokenAddress": "0xc3d77Eb7665eDF3c1D3Bdaa325A14D6ff254d2dD", + "pool": { + "address": "0x6419221A0856f507a0b869814e461033d810990b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "FEED", - "poolAddress": "0x9a22e73ef65F7EA0E6f2aE40F6847c944D3B5153", - "poolType": "lockRelease", "symbol": "FEED", - "tokenAddress": "0xe9Cb2D7ADC24Fc59FE00D6C0A0669BDF16805Fe0" + "tokenAddress": "0xe9Cb2D7ADC24Fc59FE00D6C0A0669BDF16805Fe0", + "pool": { + "address": "0x9a22e73ef65F7EA0E6f2aE40F6847c944D3B5153", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "FF": { @@ -1796,19 +2545,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Falcon Finance", - "poolAddress": "0x470ed414d305D2C784501Cc68e086E3B59d6E51E", - "poolType": "burnMint", "symbol": "FF", - "tokenAddress": "0xAC23B90A79504865D52B49B327328411a23d4dB2" + "tokenAddress": "0xAC23B90A79504865D52B49B327328411a23d4dB2", + "pool": { + "address": "0x470ed414d305D2C784501Cc68e086E3B59d6E51E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Falcon Finance", - "poolAddress": "0x05ddaB21b57d0Dca8C3955c366526A229577558e", - "poolType": "lockRelease", "symbol": "FF", - "tokenAddress": "0xFA1C09fC8B491B6A4d3Ff53A10CAd29381b3F949" + "tokenAddress": "0xFA1C09fC8B491B6A4d3Ff53A10CAd29381b3F949", + "pool": { + "address": "0x05ddaB21b57d0Dca8C3955c366526A229577558e", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "FHE": { @@ -1816,46 +2573,66 @@ "allowListEnabled": false, "decimals": 18, "name": "MindNetwork FHE Token", - "poolAddress": "0x8FA979BCf82859C994b82166390DFB03951CA86D", - "poolType": "burnMint", "symbol": "FHE", - "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E" + "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E", + "pool": { + "address": "0x8FA979BCf82859C994b82166390DFB03951CA86D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "MindNetwork FHE Token", - "poolAddress": "0xCf2B643114b1098E5bc09B49f4D73C6A8Ea1c871", - "poolType": "burnMint", "symbol": "FHE", - "tokenAddress": "0x8096cD953Fa2ABa1E60Dad27A3e58d71dF2F62F1" + "tokenAddress": "0x8096cD953Fa2ABa1E60Dad27A3e58d71dF2F62F1", + "pool": { + "address": "0xCf2B643114b1098E5bc09B49f4D73C6A8Ea1c871", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "MindNetwork FHE Token", - "poolAddress": "0x0c31b5DcF3CD6e588938D0699912d0028c911362", - "poolType": "lockRelease", "symbol": "FHE", - "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E" + "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E", + "pool": { + "address": "0x0c31b5DcF3CD6e588938D0699912d0028c911362", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "mind-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "MindNetwork FHE Token", - "poolAddress": "0xA88AEdaF95c85b5618379765f2725fFa6313B9DA", - "poolType": "burnMint", "symbol": "FHE", - "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E" + "tokenAddress": "0xd55C9fB62E176a8Eb6968f32958FeFDD0962727E", + "pool": { + "address": "0xA88AEdaF95c85b5618379765f2725fFa6313B9DA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "MindNetwork FHE Token", - "poolAddress": "DJSZFhHPB197D5HRTvmPZ5e446wZihscHAPVmgw8jZ23", - "poolType": "burnMint", "symbol": "FHE", - "tokenAddress": "AUyYTiXWP77qerK7Ccb12oz27kdVcqCqDCe8MUBCWqWH" + "tokenAddress": "AUyYTiXWP77qerK7Ccb12oz27kdVcqCqDCe8MUBCWqWH", + "pool": { + "address": "DJSZFhHPB197D5HRTvmPZ5e446wZihscHAPVmgw8jZ23", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "FLUID": { @@ -1863,55 +2640,79 @@ "allowListEnabled": false, "decimals": 18, "name": "Fluid", - "poolAddress": "0x8945F36EDaf4c997aA23AC3246560808cBbB2373", - "poolType": "burnMint", "symbol": "FLUID", - "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd" + "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd", + "pool": { + "address": "0x8945F36EDaf4c997aA23AC3246560808cBbB2373", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Fluid", - "poolAddress": "0x2d29D728C48C3F75e221D28d844E2bdFe5656BfC", - "poolType": "burnMint", "symbol": "FLUID", - "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd" + "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd", + "pool": { + "address": "0x2d29D728C48C3F75e221D28d844E2bdFe5656BfC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Fluid", - "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", - "poolType": "burnMint", "symbol": "FLUID", - "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd" + "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd", + "pool": { + "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Fluid", - "poolAddress": "0x639f35C5E212D61Fe14Bd5CD8b66aAe4df11a50c", - "poolType": "lockRelease", "symbol": "FLUID", - "tokenAddress": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb" + "tokenAddress": "0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb", + "pool": { + "address": "0x639f35C5E212D61Fe14Bd5CD8b66aAe4df11a50c", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Fluid", - "poolAddress": "0x10fD7245f6ca39885D3A398b03dCcCC833fC96A1", - "poolType": "burnMint", "symbol": "FLUID", - "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd" + "tokenAddress": "0x61E030A56D33e8260FdD81f03B162A79Fe3449Cd", + "pool": { + "address": "0x10fD7245f6ca39885D3A398b03dCcCC833fC96A1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "FLUID", - "poolAddress": "G9gWPSi5WFQuDEujXZgtuaD63uGmaGwfot6MiRZZ9pNm", - "poolType": "burnMint", "symbol": "FLUID", - "tokenAddress": "DuEy8wWrzCUun5ZbbG9hkVqXqqicpTQw8gB7nEAzpCHQ" + "tokenAddress": "DuEy8wWrzCUun5ZbbG9hkVqXqqicpTQw8gB7nEAzpCHQ", + "pool": { + "address": "G9gWPSi5WFQuDEujXZgtuaD63uGmaGwfot6MiRZZ9pNm", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "FUSD": { @@ -1919,37 +2720,53 @@ "allowListEnabled": false, "decimals": 18, "name": "FinChain Dollar", - "poolAddress": "0xC73a36EC9950530256C051b3740412A067F64589", - "poolType": "burnMint", "symbol": "FUSD", - "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C" + "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C", + "pool": { + "address": "0xC73a36EC9950530256C051b3740412A067F64589", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "FinChain Dollar", - "poolAddress": "0x91FEbCFB698CC2e653f7e053205a347957F325D1", - "poolType": "burnMint", "symbol": "FUSD", - "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C" + "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C", + "pool": { + "address": "0x91FEbCFB698CC2e653f7e053205a347957F325D1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "FinChain Dollar LP", - "poolAddress": "366ddoqBtdUaPG4ikA6zbkvbDyW51fR9DtHjxseKk9HK", - "poolType": "burnMint", "symbol": "FUSDLP", - "tokenAddress": "51tpgun58apNKgrk96xAVUCN5yC7cDzt3EHov9UjBh3Q" + "tokenAddress": "51tpgun58apNKgrk96xAVUCN5yC7cDzt3EHov9UjBh3Q", + "pool": { + "address": "366ddoqBtdUaPG4ikA6zbkvbDyW51fR9DtHjxseKk9HK", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "FinChain Dollar", - "poolAddress": "0xFf5d2C5b907ED4c88CEE5B0cF1D280e4Df3176fd", - "poolType": "burnMint", "symbol": "FUSD", - "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C" + "tokenAddress": "0x9f6714C302ffe3c3bAFaf2Ccb44201fF64f6371C", + "pool": { + "address": "0xFf5d2C5b907ED4c88CEE5B0cF1D280e4Df3176fd", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "GEN": { @@ -1957,19 +2774,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Generative Protocol", - "poolAddress": "0x4097142E53fAA47b02f57D61Cf58787c3B6d951b", - "poolType": "burnMint", "symbol": "GEN", - "tokenAddress": "0x876ceF4219752930c93446fF15bF64A94ed404D5" + "tokenAddress": "0x876ceF4219752930c93446fF15bF64A94ed404D5", + "pool": { + "address": "0x4097142E53fAA47b02f57D61Cf58787c3B6d951b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Generative Protocol", - "poolAddress": "0x003491Bdfe15179aC2cEfEf9F5D0e235F096C3b0", - "poolType": "burnMint", "symbol": "GEN", - "tokenAddress": "0x442457bA124721f7e0AB7bf8a80FBc35ACDdc9f5" + "tokenAddress": "0x442457bA124721f7e0AB7bf8a80FBc35ACDdc9f5", + "pool": { + "address": "0x003491Bdfe15179aC2cEfEf9F5D0e235F096C3b0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "GHO": { @@ -1977,73 +2802,105 @@ "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73" + "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73", + "pool": { + "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0xB94Ab28c6869466a46a42abA834ca2B3cECCA5eB", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33" + "tokenAddress": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33", + "pool": { + "address": "0xB94Ab28c6869466a46a42abA834ca2B3cECCA5eB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0x98217A06721Ebf727f2C8d9aD7718ec28b7aAe34", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee" + "tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee", + "pool": { + "address": "0x98217A06721Ebf727f2C8d9aD7718ec28b7aAe34", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73" + "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73", + "pool": { + "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73" + "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73", + "pool": { + "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0x06179f7C1be40863405f374E7f5F8806c728660A", - "poolType": "lockRelease", "symbol": "GHO", - "tokenAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f" + "tokenAddress": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "pool": { + "address": "0x06179f7C1be40863405f374E7f5F8806c728660A", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0xb77E872A68C62CfC0dFb02C067Ecc3DA23B4bbf3" + "tokenAddress": "0xb77E872A68C62CfC0dFb02C067Ecc3DA23B4bbf3", + "pool": { + "address": "0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Gho Token", - "poolAddress": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", - "poolType": "burnMint", "symbol": "GHO", - "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73" + "tokenAddress": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73", + "pool": { + "address": "0xDe6539018B095353A40753Dc54C91C68c9487D4E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "hyETH": { @@ -2051,28 +2908,40 @@ "allowListEnabled": false, "decimals": 18, "name": "High Yield ETH Index", - "poolAddress": "0x288B1b97603b4ae48F18B893caf721f20fcb0E59", - "poolType": "burnMint", "symbol": "hyETH", - "tokenAddress": "0x8b5D1d8B3466eC21f8eE33cE63F319642c026142" + "tokenAddress": "0x8b5D1d8B3466eC21f8eE33cE63F319642c026142", + "pool": { + "address": "0x288B1b97603b4ae48F18B893caf721f20fcb0E59", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "High Yield ETH Index", - "poolAddress": "0xbEE038Af079a702b2ED0af7886DA101443Ddb1CE", - "poolType": "burnMint", "symbol": "hyETH", - "tokenAddress": "0xC73e76Aa9F14C1837CDB49bd028E8Ff5a0a71dAD" + "tokenAddress": "0xC73e76Aa9F14C1837CDB49bd028E8Ff5a0a71dAD", + "pool": { + "address": "0xbEE038Af079a702b2ED0af7886DA101443Ddb1CE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "High Yield ETH Index", - "poolAddress": "0x3999490C55Fb8332F5f3AD00212435526fA3E576", - "poolType": "lockRelease", "symbol": "hyETH", - "tokenAddress": "0xc4506022Fb8090774E8A628d5084EED61D9B99Ee" + "tokenAddress": "0xc4506022Fb8090774E8A628d5084EED61D9B99Ee", + "pool": { + "address": "0x3999490C55Fb8332F5f3AD00212435526fA3E576", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "IBTC": { @@ -2080,37 +2949,53 @@ "allowListEnabled": false, "decimals": 8, "name": "iBTC", - "poolAddress": "0xCBeD22C12b9CBFaBa8E352D1EC6279885Df8725F", - "poolType": "burnMint", "symbol": "IBTC", - "tokenAddress": "0x050C24dBf1eEc17babE5fc585F06116A259CC77A" + "tokenAddress": "0x050C24dBf1eEc17babE5fc585F06116A259CC77A", + "pool": { + "address": "0xCBeD22C12b9CBFaBa8E352D1EC6279885Df8725F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 8, "name": "iBTC", - "poolAddress": "0x206E9A22B384d3863b606C41030Ec2A19D3CBb95", - "poolType": "burnMint", "symbol": "IBTC", - "tokenAddress": "0x12418783e860997eb99e8aCf682DF952F721cF62" + "tokenAddress": "0x12418783e860997eb99e8aCf682DF952F721cF62", + "pool": { + "address": "0x206E9A22B384d3863b606C41030Ec2A19D3CBb95", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 8, "name": "iBTC", - "poolAddress": "0xb6f8e9604BAFD1482631740931783998e9E736A7", - "poolType": "burnMint", "symbol": "IBTC", - "tokenAddress": "0x2bAa7E92F3F14883264BfA63058cC223Ad719438" + "tokenAddress": "0x2bAa7E92F3F14883264BfA63058cC223Ad719438", + "pool": { + "address": "0xb6f8e9604BAFD1482631740931783998e9E736A7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "iBTC", - "poolAddress": "0x08B4058F16D243C977ea1fe91B20Af31057b5aBb", - "poolType": "burnMint", "symbol": "IBTC", - "tokenAddress": "0x20157DBAbb84e3BBFE68C349d0d44E48AE7B5AD2" + "tokenAddress": "0x20157DBAbb84e3BBFE68C349d0d44E48AE7B5AD2", + "pool": { + "address": "0x08B4058F16D243C977ea1fe91B20Af31057b5aBb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ILMT": { @@ -2118,19 +3003,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Iluminary Token", - "poolAddress": "0xa132F089492CcE5f1D79483a9e4552f37266ed01", - "poolType": "burnMint", "symbol": "ILMT", - "tokenAddress": "0x98a0a245Ef9A96Cf28f1Ebf1a3b3bC562Ed8D783" + "tokenAddress": "0x98a0a245Ef9A96Cf28f1Ebf1a3b3bC562Ed8D783", + "pool": { + "address": "0xa132F089492CcE5f1D79483a9e4552f37266ed01", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "iLuminary Token", - "poolAddress": "GhgD4CQxPxrV3Ad3xaZn6AAJ6f1R5rKN3n2gkBzQ23jU", - "poolType": "burnMint", "symbol": "ILMT", - "tokenAddress": "Au6V6WrkjWZYSdCJtJFYPysZXr1qncHXZshZ7w8SnDjv" + "tokenAddress": "Au6V6WrkjWZYSdCJtJFYPysZXr1qncHXZshZ7w8SnDjv", + "pool": { + "address": "GhgD4CQxPxrV3Ad3xaZn6AAJ6f1R5rKN3n2gkBzQ23jU", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "IXT": { @@ -2138,46 +3031,66 @@ "allowListEnabled": false, "decimals": 18, "name": "xPlanetIX", - "poolAddress": "0x1e9C67b9cbe6FfFfDc441Be359d9f78B5167f30E", - "poolType": "burnMint", "symbol": "xIXT", - "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7" + "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7", + "pool": { + "address": "0x1e9C67b9cbe6FfFfDc441Be359d9f78B5167f30E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "xPlanetIX", - "poolAddress": "0x803e3858B81E0595E5F39946a68AF3546D629ee7", - "poolType": "burnMint", "symbol": "xIXT", - "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7" + "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7", + "pool": { + "address": "0x803e3858B81E0595E5F39946a68AF3546D629ee7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "PlanetIX", - "poolAddress": "0xF85fB90550bB01905556Efd7B07eDe487097Bf78", - "poolType": "burnMint", "symbol": "IXT", - "tokenAddress": "0xD32B4e4a565A1B786979276de16a13eA2e10bECd" + "tokenAddress": "0xD32B4e4a565A1B786979276de16a13eA2e10bECd", + "pool": { + "address": "0xF85fB90550bB01905556Efd7B07eDe487097Bf78", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xPlanetIX", - "poolAddress": "0x51df9751404DB200b354ED6a5e27DdA6C557883D", - "poolType": "burnMint", "symbol": "xIXT", - "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7" + "tokenAddress": "0x8b04bf3358B88e3630aa64C1c76FF3B6C699C6a7", + "pool": { + "address": "0x51df9751404DB200b354ED6a5e27DdA6C557883D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "PlanetIX", - "poolAddress": "0x8206A135cac573a2f96873dc7ad7C83B08725FaB", - "poolType": "lockRelease", "symbol": "IXT", - "tokenAddress": "0xE06Bd4F5aAc8D0aA337D13eC88dB6defC6eAEefE" + "tokenAddress": "0xE06Bd4F5aAc8D0aA337D13eC88dB6defC6eAEefE", + "pool": { + "address": "0x8206A135cac573a2f96873dc7ad7C83B08725FaB", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "JASMY": { @@ -2185,19 +3098,27 @@ "allowListEnabled": false, "decimals": 18, "name": "JasmyCoin", - "poolAddress": "0xc929ad75B72593967DE83E7F7Cda0493458261D9", - "poolType": "burnMint", "symbol": "JASMY", - "tokenAddress": "0x991Ad9149f3fe170ACc152BE2D46B804de688Ed8" + "tokenAddress": "0x991Ad9149f3fe170ACc152BE2D46B804de688Ed8", + "pool": { + "address": "0xc929ad75B72593967DE83E7F7Cda0493458261D9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "JasmyCoin", - "poolAddress": "0x3f7AeF129Ce37EA06150C176677bEc75EF29A33f", - "poolType": "lockRelease", "symbol": "JASMY", - "tokenAddress": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC" + "tokenAddress": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC", + "pool": { + "address": "0x3f7AeF129Ce37EA06150C176677bEc75EF29A33f", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "JCT": { @@ -2205,19 +3126,27 @@ "allowListEnabled": false, "decimals": 18, "name": "JANCTION", - "poolAddress": "0xdA1B1B3d3C97974B272E28f70F25Ab7c290e8357", - "poolType": "burnMint", "symbol": "JCT", - "tokenAddress": "0xeA37A8DE1de2d9D10772EEB569e28Bfa5Cb17707" + "tokenAddress": "0xeA37A8DE1de2d9D10772EEB569e28Bfa5Cb17707", + "pool": { + "address": "0xdA1B1B3d3C97974B272E28f70F25Ab7c290e8357", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "JANCTION", - "poolAddress": "0x58e53cad56180743aCE00349Ef3E1BFE4EfF5732", - "poolType": "burnMint", "symbol": "JCT", - "tokenAddress": "0xC477B6dfd26EC2460b3b92de18837Fd476Ea7549" + "tokenAddress": "0xC477B6dfd26EC2460b3b92de18837Fd476Ea7549", + "pool": { + "address": "0x58e53cad56180743aCE00349Ef3E1BFE4EfF5732", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "kHYPE": { @@ -2225,19 +3154,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Kinetiq Staked HYPE", - "poolAddress": "0xca02b4fd9a4e5dAd986eA2Ecb5d7bb43fa9bC605", - "poolType": "lockRelease", "symbol": "kHYPE", - "tokenAddress": "0xfD739d4e423301CE9385c1fb8850539D657C296D" + "tokenAddress": "0xfD739d4e423301CE9385c1fb8850539D657C296D", + "pool": { + "address": "0xca02b4fd9a4e5dAd986eA2Ecb5d7bb43fa9bC605", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Kinetiq Staked HYPE", - "poolAddress": "0xf76A0c47900ca2dD1874AB4Dc4049810E919684d", - "poolType": "burnMint", "symbol": "kHYPE", - "tokenAddress": "0x319053B625e598994Dd1179948771a4C2f66b873" + "tokenAddress": "0x319053B625e598994Dd1179948771a4C2f66b873", + "pool": { + "address": "0xf76A0c47900ca2dD1874AB4Dc4049810E919684d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "KNET": { @@ -2245,19 +3182,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Kingnet AI", - "poolAddress": "0x02E5F79eFD3c5e0306fD1127787EA672634AACF1", - "poolType": "burnMint", "symbol": "KNET", - "tokenAddress": "0x8b24BF9fE8BB1D4D9deA81Eebc9Fed6F0Fc67a46" + "tokenAddress": "0x8b24BF9fE8BB1D4D9deA81Eebc9Fed6F0Fc67a46", + "pool": { + "address": "0x02E5F79eFD3c5e0306fD1127787EA672634AACF1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Kingnet AI", - "poolAddress": "5skyDWAPgiNe7ttGoEEdn4Z3dHxvkF4vi3wGdebQ76cR", - "poolType": "lockRelease", "symbol": "KNET", - "tokenAddress": "CfVs3waH2Z9TM397qSkaipTDhA9wWgtt8UchZKfwkYiu" + "tokenAddress": "CfVs3waH2Z9TM397qSkaipTDhA9wWgtt8UchZKfwkYiu", + "pool": { + "address": "5skyDWAPgiNe7ttGoEEdn4Z3dHxvkF4vi3wGdebQ76cR", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "LAND": { @@ -2265,28 +3210,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Landshare Token", - "poolAddress": "0x3404C137c2AA3Cf69c7322c6f39a6cbd8c3b769D", - "poolType": "lockRelease", "symbol": "LAND", - "tokenAddress": "0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C" + "tokenAddress": "0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C", + "pool": { + "address": "0x3404C137c2AA3Cf69c7322c6f39a6cbd8c3b769D", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Landshare Token", - "poolAddress": "0x0d13d3683DD866FDfd6707976eb38Fa9A058E100", - "poolType": "burnMint", "symbol": "LAND", - "tokenAddress": "0x27Bc2757fAb0b8aB406016D1f71d8123452095d3" + "tokenAddress": "0x27Bc2757fAb0b8aB406016D1f71d8123452095d3", + "pool": { + "address": "0x0d13d3683DD866FDfd6707976eb38Fa9A058E100", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Landshare Token", - "poolAddress": "0x047beEDAC57540d407db63aD6CF72Bde07c5B093", - "poolType": "burnMint", "symbol": "LAND", - "tokenAddress": "0xC03E6ad83dE7C58c9166fF08D66B960d78e64105" + "tokenAddress": "0xC03E6ad83dE7C58c9166fF08D66B960d78e64105", + "pool": { + "address": "0x047beEDAC57540d407db63aD6CF72Bde07c5B093", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LBTC": { @@ -2294,118 +3251,170 @@ "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xd24658051aa6c8ACf874F686D5dA325a87d2D146", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xd24658051aa6c8ACf874F686D5dA325a87d2D146", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xc6c22D4Be6Cc50E6D01BD6325b6cD715A52f8154", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xf191a1CE04fD54f090B4d97316258b6009C562d7", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xf191a1CE04fD54f090B4d97316258b6009C562d7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "corn-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0x770D1bbdca08e3272233709B27C004F510bfDf86", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0x770D1bbdca08e3272233709B27C004F510bfDf86", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0x2A70CbF60a9252Ff312719885088283f930750BA", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0x2A70CbF60a9252Ff312719885088283f930750BA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "etherlink-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0x9Ef2919f333Cdf13Fb609C0341bE0c852f691788", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0x9Ef2919f333Cdf13Fb609C0341bE0c852f691788", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0x88E18636EfFC3b3cd520FC72B710eb99C0017BC7", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0x8236a87084f8B84306f72007F36F2618A5634494" + "tokenAddress": "0x8236a87084f8B84306f72007F36F2618A5634494", + "pool": { + "address": "0x88E18636EfFC3b3cd520FC72B710eb99C0017BC7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "megaeth-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xD7F069e67345ED91AC699e7EcFDc211782495888", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xD7F069e67345ED91AC699e7EcFDc211782495888", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xD9527ffE58CbEcC9A64511Fc559e0C0825Df940a", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xD9527ffE58CbEcC9A64511Fc559e0C0825Df940a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polygon-mainnet-katana": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xE4B5166b1D60C2208A934176522461c470A37d56", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xE4B5166b1D60C2208A934176522461c470A37d56", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0x775C438b07d5667aEFa3DE493A7cc2Df3a199E99", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0x775C438b07d5667aEFa3DE493A7cc2Df3a199E99", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "stable-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xD7F069e67345ED91AC699e7EcFDc211782495888", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xD7F069e67345ED91AC699e7EcFDc211782495888", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "tac-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Lombard Staked Bitcoin", - "poolAddress": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70", - "poolType": "burnMint", "symbol": "LBTC", - "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1" + "tokenAddress": "0xecAc9C5F704e954931349Da37F60E39f515c11c1", + "pool": { + "address": "0xAe5E2940Fc01C0f8076D36749509C75E43da0C70", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LDY": { @@ -2413,28 +3422,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Ledgity Token", - "poolAddress": "0x9C4a695903Eaa0d958F3ECabdD8b9122c08505ac", - "poolType": "burnMint", "symbol": "LDY", - "tokenAddress": "0x999FAF0AF2fF109938eeFE6A7BF91CA56f0D07e1" + "tokenAddress": "0x999FAF0AF2fF109938eeFE6A7BF91CA56f0D07e1", + "pool": { + "address": "0x9C4a695903Eaa0d958F3ECabdD8b9122c08505ac", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Ledgity Token", - "poolAddress": "0x9d5665F2C06C77dF7B3f3bbEE0a14e63dCd614b2", - "poolType": "burnMint", "symbol": "LDY", - "tokenAddress": "0x055d20a70eFd45aB839Ae1A39603D0cFDBDd8a13" + "tokenAddress": "0x055d20a70eFd45aB839Ae1A39603D0cFDBDd8a13", + "pool": { + "address": "0x9d5665F2C06C77dF7B3f3bbEE0a14e63dCd614b2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Ledgity Token", - "poolAddress": "0x542BF6910dB102D10f84565E041c2761BE95be84", - "poolType": "lockRelease", "symbol": "LDY", - "tokenAddress": "0x482dF7483a52496F4C65AB499966dfcdf4DDFDbc" + "tokenAddress": "0x482dF7483a52496F4C65AB499966dfcdf4DDFDbc", + "pool": { + "address": "0x542BF6910dB102D10f84565E041c2761BE95be84", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "LEASH": { @@ -2442,172 +3463,248 @@ "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x56046FcadbcB62eD4b5643aF09724313624e88e1", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x897Ce250199d102Ea103Aaf3a6E7906cde757560" + "tokenAddress": "0x897Ce250199d102Ea103Aaf3a6E7906cde757560", + "pool": { + "address": "0x56046FcadbcB62eD4b5643aF09724313624e88e1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x385FE033d211BEA56a2E0bF0DE39feB1cE24DFC9", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xf94A52468fF79862B8f288faF7900d34e74A1992" + "tokenAddress": "0xf94A52468fF79862B8f288faF7900d34e74A1992", + "pool": { + "address": "0x385FE033d211BEA56a2E0bF0DE39feB1cE24DFC9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "celo-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x33aC23E54A7Bfb159e781c8973B832b3bE2Bf211", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x2b702DC45b540aEDA62F60cE4E5BFAED37b1D27a" + "tokenAddress": "0x2b702DC45b540aEDA62F60cE4E5BFAED37b1D27a", + "pool": { + "address": "0x33aC23E54A7Bfb159e781c8973B832b3bE2Bf211", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-andromeda-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x2133c3b98928d0DC519Fc0607EB39DC2fc4b9df4", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xc55eABF6624224b6E185B6A79a3217e0e751046A" + "tokenAddress": "0xc55eABF6624224b6E185B6A79a3217e0e751046A", + "pool": { + "address": "0x2133c3b98928d0DC519Fc0607EB39DC2fc4b9df4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xDFb202aD6734530d60501aEaC1BCf99688D8319F", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x1649DE9028C0a6B958118A977099d66eF0DA5a92" + "tokenAddress": "0x1649DE9028C0a6B958118A977099d66eF0DA5a92", + "pool": { + "address": "0xDFb202aD6734530d60501aEaC1BCf99688D8319F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xB23a7814f718448ba2e1a2B362a8AB0c4e8Ab341", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x90B0C73F19bd2EB9Bcd6b1C6c787a63ae851b336" + "tokenAddress": "0x90B0C73F19bd2EB9Bcd6b1C6c787a63ae851b336", + "pool": { + "address": "0xB23a7814f718448ba2e1a2B362a8AB0c4e8Ab341", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x26dEd7458Bf906316b638504965D1e9D5AE73c57", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xBc53643F2D736743ed29B6dC36E30F5Fb8941090" + "tokenAddress": "0xBc53643F2D736743ed29B6dC36E30F5Fb8941090", + "pool": { + "address": "0x26dEd7458Bf906316b638504965D1e9D5AE73c57", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x3da3283E0D0c30b44BA899b37fD6da6D0B776646", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x4e1a69B48A7aE9Fc8fD2623089c4B378f24a64A9" + "tokenAddress": "0x4e1a69B48A7aE9Fc8fD2623089c4B378f24a64A9", + "pool": { + "address": "0x3da3283E0D0c30b44BA899b37fD6da6D0B776646", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xA6a6663a159e80ad3682698b0a595DF3594491B5", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x70Ed1C42D29678D2D5Bad7197A4281B095AD7fD6" + "tokenAddress": "0x70Ed1C42D29678D2D5Bad7197A4281B095AD7fD6", + "pool": { + "address": "0xA6a6663a159e80ad3682698b0a595DF3594491B5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x852467AB8b1bBB2D1c8d8802cd7820B906D4609A", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xA3D0D0C81dBe4511724f875F7f2fa794a14bee64" + "tokenAddress": "0xA3D0D0C81dBe4511724f875F7f2fa794a14bee64", + "pool": { + "address": "0x852467AB8b1bBB2D1c8d8802cd7820B906D4609A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x975f51b7BFac520F35A791F5E4206162300244c3", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xDE4dd6Db8072eb6999B88B7D7E0c8C0C01637578" + "tokenAddress": "0xDE4dd6Db8072eb6999B88B7D7E0c8C0C01637578", + "pool": { + "address": "0x975f51b7BFac520F35A791F5E4206162300244c3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x1d201c7277f971CBb6Cf32636E79187c83C58490", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xCEeDbfc700d17A277Ab1cA9E19A2CaF0c42ced41" + "tokenAddress": "0xCEeDbfc700d17A277Ab1cA9E19A2CaF0c42ced41", + "pool": { + "address": "0x1d201c7277f971CBb6Cf32636E79187c83C58490", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x7f5BB6146B490B6C1e1c8D8fD60FDE93636274b1", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xa9BBE4c88F4988Ec8328e44b0889404824aBEb62" + "tokenAddress": "0xa9BBE4c88F4988Ec8328e44b0889404824aBEb62", + "pool": { + "address": "0x7f5BB6146B490B6C1e1c8D8fD60FDE93636274b1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xef98939F005Da3Aa186ebb842842569213863D17", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x743C48C6057b4c2480F2458F2D1CE967dF96B724" + "tokenAddress": "0x743C48C6057b4c2480F2458F2D1CE967dF96B724", + "pool": { + "address": "0xef98939F005Da3Aa186ebb842842569213863D17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xEa9c3dB69C9eE60FB0B06d1A1c9077B16F2D7C82", - "poolType": "lockRelease", "symbol": "LEASH", - "tokenAddress": "0x27C70Cd1946795B66be9d954418546998b546634" + "tokenAddress": "0x27C70Cd1946795B66be9d954418546998b546634", + "pool": { + "address": "0xEa9c3dB69C9eE60FB0B06d1A1c9077B16F2D7C82", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x711948bE2234b51653dD9978c107671aF4Eb8d7F", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x6aF85BfA857bB88F2E3Ae07839182491d34ca11d" + "tokenAddress": "0x6aF85BfA857bB88F2E3Ae07839182491d34ca11d", + "pool": { + "address": "0x711948bE2234b51653dD9978c107671aF4Eb8d7F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polkadot-mainnet-astar": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x1D67640d37117Cbe876c5C50e6e2B6DE0c53dA70", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x2992F24a5d1A2914C0981933E9870e76d60D299c" + "tokenAddress": "0x2992F24a5d1A2914C0981933E9870e76d60D299c", + "pool": { + "address": "0x1D67640d37117Cbe876c5C50e6e2B6DE0c53dA70", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0x5EF69257f95d822b7D6dd60Ee574A34e66D6B3B2", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0x3C76af2dCCd31ac4A146C0d55cCc4bfd13051379" + "tokenAddress": "0x3C76af2dCCd31ac4A146C0d55cCc4bfd13051379", + "pool": { + "address": "0x5EF69257f95d822b7D6dd60Ee574A34e66D6B3B2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DOGE KILLER", - "poolAddress": "0xEaA2885DcdD6689a95642DC6d72F24F81EB170f5", - "poolType": "burnMint", "symbol": "LEASH", - "tokenAddress": "0xBb1ea2697b13Cc06e03D875D2d39c06AC6dd5a93" + "tokenAddress": "0xBb1ea2697b13Cc06e03D875D2d39c06AC6dd5a93", + "pool": { + "address": "0xEaA2885DcdD6689a95642DC6d72F24F81EB170f5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LEND": { @@ -2615,55 +3712,79 @@ "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lendefi DAO", - "poolAddress": "0x934635de453A1161D02Ce395F2F59E775597fE13", - "poolType": "burnMint", "symbol": "LEND", - "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d" + "tokenAddress": "0x5e53AeBE377eFC92213514eC07f8EF3Af426DD1d", + "pool": { + "address": "0x934635de453A1161D02Ce395F2F59E775597fE13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LINK": { @@ -2671,642 +3792,1002 @@ "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xF81f4a748F8d2DbCA48Bfa704968A76fB062A358", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x76159c2b43ff6F630193e37EC68452169914C1Bb" + "tokenAddress": "0x76159c2b43ff6F630193e37EC68452169914C1Bb", + "pool": { + "address": "0xF81f4a748F8d2DbCA48Bfa704968A76fB062A358", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ab-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xD3F31950e5Ec340b021D0d27454F44Edb7304C18", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "0xD3F31950e5Ec340b021D0d27454F44Edb7304C18", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "abstract-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd" + "tokenAddress": "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "apechain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xf575731b78981B86d34321d875A3D25a48479be6" + "tokenAddress": "0xf575731b78981B86d34321d875A3D25a48479be6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "aptos-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "ChainLink Token", - "poolAddress": "0x7a5dcf83decbfc7418ae0d37be93370b47bf9bc4657dacd1a02d6f58629f6b38", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x8c764993820ea735719f1ff7f1a0f80c022b18e7b5daefa35adf60a3a6556566" + "tokenAddress": "0x8c764993820ea735719f1ff7f1a0f80c022b18e7b5daefa35adf60a3a6556566", + "pool": { + "address": "0x7a5dcf83decbfc7418ae0d37be93370b47bf9bc4657dacd1a02d6f58629f6b38", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "avalanche-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Chainlink Token", - "poolType": "feeTokenOnly", "symbol": "LINK.e", - "tokenAddress": "0x5947BB275c521040051D82396192181b413227A3" + "tokenAddress": "0x5947BB275c521040051D82396192181b413227A3", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "binance-smart-chain-mainnet-opbnb-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA" + "tokenAddress": "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x56B275c0Ec034a229a1deD8DB17089544bc276D9" + "tokenAddress": "0x56B275c0Ec034a229a1deD8DB17089544bc276D9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x5aB885CDa7216b163fb6F813DEC1E1532516c833" + "tokenAddress": "0x5aB885CDa7216b163fb6F813DEC1E1532516c833", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-botanix": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x30e85A5c9525AD9a7A0FA5C74df4Baf0b01aD241" + "tokenAddress": "0x30e85A5c9525AD9a7A0FA5C74df4Baf0b01aD241", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-bsquared-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39" + "tokenAddress": "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-merlin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bittensor-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xf09AFe78d3c7d359b334d7cB88995751F7eC5E13" + "tokenAddress": "0xf09AFe78d3c7d359b334d7cB88995751F7eC5E13", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x404460C6A5EdE2D891e8297795264fDe62ADBB75" + "tokenAddress": "0x404460C6A5EdE2D891e8297795264fDe62ADBB75", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "celo-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0" + "tokenAddress": "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0", + "pool": { + "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "core-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b" + "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "corn-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2" + "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "cronos-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85" + "tokenAddress": "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "cronos-zkevm-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E" + "tokenAddress": "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-andromeda-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353" + "tokenAddress": "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353", + "pool": { + "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4" + "tokenAddress": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xBA148bAF60CCc4d7D86aED4fCff04D5b3265cAd4", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196" + "tokenAddress": "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196", + "pool": { + "address": "0xBA148bAF60CCc4d7D86aED4fCff04D5b3265cAd4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x9fCd83bC7F67ADa1fB51a4caBEa333c72B641bd1", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013" + "tokenAddress": "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013", + "pool": { + "address": "0x9fCd83bC7F67ADa1fB51a4caBEa333c72B641bd1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-hashkey-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xa18152629128738a5c081eb226335FEd4B9C95e9" + "tokenAddress": "0xa18152629128738a5c081eb226335FEd4B9C95e9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043" + "tokenAddress": "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x183E3691EfF3524B2315D3703D94F922CbE51F54" + "tokenAddress": "0x183E3691EfF3524B2315D3703D94F922CbE51F54", + "pool": { + "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6" + "tokenAddress": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-polygon-zkevm-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D" + "tokenAddress": "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x548C6944cba02B9D1C0570102c89de64D258d3Ac" + "tokenAddress": "0x548C6944cba02B9D1C0570102c89de64D258d3Ac", + "pool": { + "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x917a3964C37993e99a47C779bEb5Db1E9d13804d" + "tokenAddress": "0x917a3964C37993e99a47C779bEb5Db1E9d13804d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-unichain-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A" + "tokenAddress": "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-worldchain-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x915b648e994d5f31059B38223b9fbe98ae185473" + "tokenAddress": "0x915b648e994d5f31059B38223b9fbe98ae185473", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-xlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9" + "tokenAddress": "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a" + "tokenAddress": "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x52869bae3E091e36b0915941577F2D47d8d8B534" + "tokenAddress": "0x52869bae3E091e36b0915941577F2D47d8d8B534", + "pool": { + "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "etherlink-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3" + "tokenAddress": "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "everclear-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x318Ec96df83AccC18B5EAD5D23e0F022F7Eb5503" + "tokenAddress": "0x318Ec96df83AccC18B5EAD5D23e0F022F7Eb5503", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "fraxtal-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xd6A6ba37fAaC229B9665E86739ca501401f5a940" + "tokenAddress": "0xd6A6ba37fAaC229B9665E86739ca501401f5a940", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hedera-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x7Ce6bb2Cc2D3Fd45a974Da6a0F29236cb9513a98" + "tokenAddress": "0x7Ce6bb2Cc2D3Fd45a974Da6a0F29236cb9513a98", + "pool": { + "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hemi-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8" + "tokenAddress": "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59" + "tokenAddress": "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "jovay-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x6E6CBEF068fe546ceA52af587AEd8A2EfDD846bD", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "0x6E6CBEF068fe546ceA52af587AEd8A2EfDD846bD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "kaia-mainnet": { "allowListEnabled": false, "decimals": 0, "name": "", - "poolType": "feeTokenOnly", "symbol": "", - "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2" + "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "lens-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x6e970e8d6758164798290c8db1D79a527ca6e1B2" + "tokenAddress": "0x6e970e8d6758164798290c8db1D79a527ca6e1B2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "lisk-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932", - "poolType": "lockRelease", "symbol": "LINK", - "tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA" + "tokenAddress": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + "pool": { + "address": "0x1B7492C3bD23A4aDB448710e4275FF14A5288932", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xb0897686c545045aFc77CF20eC7A532E3120E0F1" + "tokenAddress": "0xb0897686c545045aFc77CF20eC7A532E3120E0F1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "megaeth-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xee85aEfb15b9489563A6a29891ebe0750AA1A7Ae" + "tokenAddress": "0xee85aEfb15b9489563A6a29891ebe0750AA1A7Ae", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "memento-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "metal-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C" + "tokenAddress": "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mind-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa" + "tokenAddress": "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mint-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x76f257B1DDA5cC71bee4eF637Fbdde4C801310A9" + "tokenAddress": "0x76f257B1DDA5cC71bee4eF637Fbdde4C801310A9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "morph-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x2E64625FF3b3c9d51A022B28d96935d920a2993A", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "0x2E64625FF3b3c9d51A022B28d96935d920a2993A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "nexon-mainnet-henesys": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" - }, - "pharos-mainnet": { - "allowListEnabled": false, - "decimals": 18, - "name": "ChainLink Token", - "poolAddress": "0x521b3cEC635AA54f217179E97Df74280d5D8E770", - "poolType": "burnMint", - "symbol": "LINK", - "tokenAddress": "0x51e2A24742Db77604B881d6781Ee16B5b8fcBE29" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x3fca88541D9bebe3600Ec03193FfC9D9c4d4Bb49", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40" + "tokenAddress": "0x76a443768A5e3B8d1AED0105FC250877841Deb40", + "pool": { + "address": "0x3fca88541D9bebe3600Ec03193FfC9D9c4d4Bb49", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plume-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64" + "tokenAddress": "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polkadot-mainnet-astar": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d" + "tokenAddress": "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d", + "pool": { + "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polygon-mainnet-katana": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xc2C447b04e0ED3476DdbDae8E9E39bE7159d27b6" + "tokenAddress": "0xc2C447b04e0ED3476DdbDae8E9E39bE7159d27b6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x6bBB2D614f4336784b835E392c62ed7A5345Db6e", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b" + "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b", + "pool": { + "address": "0x6bBB2D614f4336784b835E392c62ed7A5345Db6e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "rootstock-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4" + "tokenAddress": "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "sei-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Chainlink Token", - "poolAddress": "Gu68eAsbqHG8Jx6yLPWu3JDZEdCUzTFnrTCeRQKEy1br", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L" + "tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L", + "pool": { + "address": "Gu68eAsbqHG8Jx6yLPWu3JDZEdCUzTFnrTCeRQKEy1br", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec" + "tokenAddress": "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec", + "pool": { + "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F" + "tokenAddress": "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F", + "pool": { + "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "stable-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x0dC94D4E45031f87b7df9e9B749dBB88f67Bcd78", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x985FB0821Eef0056ec26DD8b33dC61b9415B7F4b" + "tokenAddress": "0x985FB0821Eef0056ec26DD8b33dC61b9415B7F4b", + "pool": { + "address": "0x0dC94D4E45031f87b7df9e9B749dBB88f67Bcd78", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "superseed-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9" + "tokenAddress": "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "tac-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x819d06D62D7Fc29cFdafEc61bE44a8DB575D6102", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0xc2BE2F77562A6676098e8D363B9d8A33Ea009D4e" + "tokenAddress": "0xc2BE2F77562A6676098e8D363B9d8A33Ea009D4e", + "pool": { + "address": "0x819d06D62D7Fc29cFdafEc61bE44a8DB575D6102", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69" + "tokenAddress": "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69", + "pool": { + "address": "0xDeC8A6f06FDdA5aAE262631f37b79f182a23464B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token on xDai", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2" + "tokenAddress": "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "xdc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolAddress": "0x414024b789097c9a81Ec2D34f95B009718f44365", - "poolType": "burnMint", "symbol": "LINK", - "tokenAddress": "0xE27dd9BF01B55ce6803c0d81386A04212c718b95" + "tokenAddress": "0xE27dd9BF01B55ce6803c0d81386A04212c718b95", + "pool": { + "address": "0x414024b789097c9a81Ec2D34f95B009718f44365", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "zora-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3662B6f73c5560229D1a98aF6e59E6649D568374" + "tokenAddress": "0x3662B6f73c5560229D1a98aF6e59E6649D568374", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } + }, + "pharos-mainnet": { + "allowListEnabled": false, + "decimals": 18, + "name": "ChainLink Token", + "symbol": "LINK", + "tokenAddress": "0x51e2A24742Db77604B881d6781Ee16B5b8fcBE29", + "pool": { + "address": "0x521b3cEC635AA54f217179E97Df74280d5D8E770", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LsETH": { @@ -3314,28 +4795,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Liquid Staked ETH", - "poolAddress": "0x3A4e3B9a4fb73A4015b4AFe1efe02214B614D591", - "poolType": "burnMint", "symbol": "LsETH", - "tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6" + "tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6", + "pool": { + "address": "0x3A4e3B9a4fb73A4015b4AFe1efe02214B614D591", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Liquid Staked ETH", - "poolAddress": "0xE939C02E92e9E66d1F0D8E4F099E7d3d269a8a11", - "poolType": "burnMint", "symbol": "LsETH", - "tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6" + "tokenAddress": "0xB29749498954A3A821ec37BdE86e386dF3cE30B6", + "pool": { + "address": "0xE939C02E92e9E66d1F0D8E4F099E7d3d269a8a11", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Liquid Staked ETH", - "poolAddress": "0x0a02473E57902fD7764E6E952E2962763045B404", - "poolType": "lockRelease", "symbol": "LsETH", - "tokenAddress": "0x8c1BEd5b9a0928467c9B1341Da1D7BD5e10b6549" + "tokenAddress": "0x8c1BEd5b9a0928467c9B1341Da1D7BD5e10b6549", + "pool": { + "address": "0x0a02473E57902fD7764E6E952E2962763045B404", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "LUA": { @@ -3343,19 +4836,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lumi Finance Token", - "poolAddress": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812", - "poolType": "lockRelease", "symbol": "LUA", - "tokenAddress": "0x88D100432F98956b16B66Df56962FD3e5cCd297A" + "tokenAddress": "0x88D100432F98956b16B66Df56962FD3e5cCd297A", + "pool": { + "address": "0xD27F88501e62D0BDc70B20d6ed06d8E0fF8c3812", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lumi Finance Token", - "poolAddress": "0xCE562455a389F14f54135B84749ddd81Bc0bF869", - "poolType": "burnMint", "symbol": "LUA", - "tokenAddress": "0xd61bBBB8369c46c15868ad9263a2710AcED156C4" + "tokenAddress": "0xd61bBBB8369c46c15868ad9263a2710AcED156C4", + "pool": { + "address": "0xCE562455a389F14f54135B84749ddd81Bc0bF869", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LUAUSD": { @@ -3363,19 +4864,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lumi Finance USD", - "poolAddress": "0x5686CCb55ee86BEB1e8A1Cf7C769930f3A5E521c", - "poolType": "lockRelease", "symbol": "LUAUSD", - "tokenAddress": "0x540ddE0739EeFAf90D0Ca05aCa90513Ce89E7e79" + "tokenAddress": "0x540ddE0739EeFAf90D0Ca05aCa90513Ce89E7e79", + "pool": { + "address": "0x5686CCb55ee86BEB1e8A1Cf7C769930f3A5E521c", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lumi Finance USD", - "poolAddress": "0xe6712A2b96780986342e2C3C0Accdce58fc7Ac38", - "poolType": "burnMint", "symbol": "LUAUSD", - "tokenAddress": "0x18d2bDEf572C67127E218c425f546FE64430a92C" + "tokenAddress": "0x18d2bDEf572C67127E218c425f546FE64430a92C", + "pool": { + "address": "0xe6712A2b96780986342e2C3C0Accdce58fc7Ac38", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "LUISA": { @@ -3383,19 +4892,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Luisa", - "poolAddress": "0xe9516fB95778682F48C551071Bb917F937229596", - "poolType": "burnMint", "symbol": "LUISA", - "tokenAddress": "0x5699c51660C765e57793D1837B400B241cbC4B46" + "tokenAddress": "0x5699c51660C765e57793D1837B400B241cbC4B46", + "pool": { + "address": "0xe9516fB95778682F48C551071Bb917F937229596", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Luisa", - "poolAddress": "0xCa8FaCd0EB11DEB6114d515D136c79C6f4170E87", - "poolType": "lockRelease", "symbol": "LUISA", - "tokenAddress": "0x0cCD687CC6F8461170336D8e8cf46A39313DEab9" + "tokenAddress": "0x0cCD687CC6F8461170336D8e8cf46A39313DEab9", + "pool": { + "address": "0xCa8FaCd0EB11DEB6114d515D136c79C6f4170E87", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "LYP": { @@ -3403,19 +4920,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lympid Token", - "poolAddress": "0xBCc91222266156c9e92217Bf68117fF3d8Ec5f38", - "poolType": "burnMint", "symbol": "LYP", - "tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0" + "tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0", + "pool": { + "address": "0xBCc91222266156c9e92217Bf68117fF3d8Ec5f38", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lympid Token", - "poolAddress": "0xba0Db2166508A030324F14dEBE3a6D9d3B8A32c8", - "poolType": "burnMint", "symbol": "LYP", - "tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0" + "tokenAddress": "0x4837b18a6d7aF6159c8665505B90a2ed393255E0", + "pool": { + "address": "0xba0Db2166508A030324F14dEBE3a6D9d3B8A32c8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "mBTC": { @@ -3423,46 +4948,66 @@ "allowListEnabled": false, "decimals": 8, "name": "Bridged Magpie-Peg BTC", - "poolAddress": "0xD7550e0a1C055B444D8d1a9EB3DeA02c0F09D7A1", - "poolType": "burnMint", "symbol": "Bridged mBTC", - "tokenAddress": "0x7c1cCA5b25Fa0bC9AF9275Fb53cBA89DC172b878" + "tokenAddress": "0x7c1cCA5b25Fa0bC9AF9275Fb53cBA89DC172b878", + "pool": { + "address": "0xD7550e0a1C055B444D8d1a9EB3DeA02c0F09D7A1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 8, "name": "mBTC", - "poolAddress": "0x82164603B46a79C0DDcF2E622e242f16428939DB", - "poolType": "burnMint", "symbol": "mBTC", - "tokenAddress": "0x2172fAD929E857dDfD7dDC31E24904438434cB0B" + "tokenAddress": "0x2172fAD929E857dDfD7dDC31E24904438434cB0B", + "pool": { + "address": "0x82164603B46a79C0DDcF2E622e242f16428939DB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 8, "name": "Liquid Staked BTC", - "poolAddress": "0xd86e1fEDB7120369fF5175b74F4413Cb74FCAcDB", - "poolType": "burnMint", "symbol": "mBTC", - "tokenAddress": "0x7FdFbE1fB9783745991CFb0a3D396acE6eE0c909" + "tokenAddress": "0x7FdFbE1fB9783745991CFb0a3D396acE6eE0c909", + "pool": { + "address": "0xd86e1fEDB7120369fF5175b74F4413Cb74FCAcDB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Liquid Staked BTC", - "poolAddress": "0x476EefeF46e0d65e1E371Fe093696259B1240B93", - "poolType": "burnMint", "symbol": "mBTC", - "tokenAddress": "0xbDf245957992bfBC62B07e344128a1EEc7b7eE3f" + "tokenAddress": "0xbDf245957992bfBC62B07e344128a1EEc7b7eE3f", + "pool": { + "address": "0x476EefeF46e0d65e1E371Fe093696259B1240B93", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Magpie Stake BTC", - "poolAddress": "0xa6F5410BCb028c62DB6f60361C004D9740cFA82b", - "poolType": "burnMint", "symbol": "mBTC", - "tokenAddress": "0x29190A076072bd71454E032F821eAAb3ba07e0D3" + "tokenAddress": "0x29190A076072bd71454E032F821eAAb3ba07e0D3", + "pool": { + "address": "0xa6F5410BCb028c62DB6f60361C004D9740cFA82b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "mDLP": { @@ -3470,19 +5015,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Magpie locked DLP", - "poolAddress": "0x3fd1D7fc5fE44fCbEE3d506530b790b09EF1459B", - "poolType": "burnMint", "symbol": "mDLP", - "tokenAddress": "0xfe14F790DA92971131544d915c4ADa6F1abce3Bd" + "tokenAddress": "0xfe14F790DA92971131544d915c4ADa6F1abce3Bd", + "pool": { + "address": "0x3fd1D7fc5fE44fCbEE3d506530b790b09EF1459B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Magpie locked DLP", - "poolAddress": "0x5180865890246278544ea457342b46665C196a97", - "poolType": "burnMint", "symbol": "mDLP", - "tokenAddress": "0x1Cbc4BF664907669CfAB86a3b1aCC3EC8867a25F" + "tokenAddress": "0x1Cbc4BF664907669CfAB86a3b1aCC3EC8867a25F", + "pool": { + "address": "0x5180865890246278544ea457342b46665C196a97", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "MEEM": { @@ -3490,19 +5043,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Cryptex Meme Index", - "poolAddress": "0x797C54f6E028c70d76c0031e03ab43Eb1b80fa74", - "poolType": "burnMint", "symbol": "MEEM", - "tokenAddress": "0x15f9cec1c568352Cd48Da1E84D3e74F27f6ee160" + "tokenAddress": "0x15f9cec1c568352Cd48Da1E84D3e74F27f6ee160", + "pool": { + "address": "0x797C54f6E028c70d76c0031e03ab43Eb1b80fa74", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Cryptex Meme Index", - "poolAddress": "0xbfc86CA9b7fa158287bD392eE098246465E63351", - "poolType": "lockRelease", "symbol": "MEEM", - "tokenAddress": "0xA544b3F0c46c15F0B2b00ba3D67b56C250287905" + "tokenAddress": "0xA544b3F0c46c15F0B2b00ba3D67b56C250287905", + "pool": { + "address": "0xbfc86CA9b7fa158287bD392eE098246465E63351", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "Memento": { @@ -3510,37 +5071,53 @@ "allowListEnabled": false, "decimals": 18, "name": "DEXTF Token", - "poolAddress": "0x6c9E5fD0FDB36AaF3293Fcc1fb43D9581F706bf7", - "poolType": "burnMint", "symbol": "DEXTF", - "tokenAddress": "0x4816B2157203D8D4c53918e8d4076Adfe9e2FE22" + "tokenAddress": "0x4816B2157203D8D4c53918e8d4076Adfe9e2FE22", + "pool": { + "address": "0x6c9E5fD0FDB36AaF3293Fcc1fb43D9581F706bf7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Memento", - "poolAddress": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f", - "poolType": "burnMint", "symbol": "DEXTF", - "tokenAddress": "0xB69bBB15095C0949489FBB43951d2b750Fa7fA89" + "tokenAddress": "0xB69bBB15095C0949489FBB43951d2b750Fa7fA89", + "pool": { + "address": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DEXTF Token", - "poolAddress": "0x40fa6991CDbd66e91a25a2875d4d6fb1aF88cD91", - "poolType": "lockRelease", "symbol": "DEXTF", - "tokenAddress": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0" + "tokenAddress": "0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0", + "pool": { + "address": "0x40fa6991CDbd66e91a25a2875d4d6fb1aF88cD91", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "DEXTF Token", - "poolAddress": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f", - "poolType": "burnMint", "symbol": "DEXTF", - "tokenAddress": "0x5C5C6D078A6458179a2E4837Db25dA4a9330ECD4" + "tokenAddress": "0x5C5C6D078A6458179a2E4837Db25dA4a9330ECD4", + "pool": { + "address": "0x1c20Db242C0d8EE2cb36480211B9629a00B1e42f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "MEMEX": { @@ -3548,19 +5125,27 @@ "allowListEnabled": false, "decimals": 18, "name": "MEMEX", - "poolAddress": "0xD0bFBE2f17599607AB58def61b9A30CCFF4a0505", - "poolType": "burnMint", "symbol": "MEMEX", - "tokenAddress": "0x5e7E82B875b09e7A491611B626d90D7748d166d8" + "tokenAddress": "0x5e7E82B875b09e7A491611B626d90D7748d166d8", + "pool": { + "address": "0xD0bFBE2f17599607AB58def61b9A30CCFF4a0505", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "MEMEX", - "poolAddress": "0x21EfedF48D33f09d948fB98dED7dE766b682F049", - "poolType": "burnMint", "symbol": "MEMEX", - "tokenAddress": "0xd6effD9911797742435EF3d5880545129934aBbe" + "tokenAddress": "0xd6effD9911797742435EF3d5880545129934aBbe", + "pool": { + "address": "0x21EfedF48D33f09d948fB98dED7dE766b682F049", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "METO": { @@ -3568,19 +5153,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Metafluence", - "poolAddress": "0xC9eDf4f727A1C21b65613f29059FE9928244110b", - "poolType": "burnMint", "symbol": "METO", - "tokenAddress": "0xa78775bba7a542F291e5ef7f13C6204E704A90Ba" + "tokenAddress": "0xa78775bba7a542F291e5ef7f13C6204E704A90Ba", + "pool": { + "address": "0xC9eDf4f727A1C21b65613f29059FE9928244110b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Metafluence", - "poolAddress": "0x78a2AeDdb8fD3446Fda31F6451a7e11c6446F5B8", - "poolType": "burnMint", "symbol": "METO", - "tokenAddress": "0x4665d6c8882F0fB1b973776C63578f9AF1A0A726" + "tokenAddress": "0x4665d6c8882F0fB1b973776C63578f9AF1A0A726", + "pool": { + "address": "0x78a2AeDdb8fD3446Fda31F6451a7e11c6446F5B8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "MEW": { @@ -3588,46 +5181,66 @@ "allowListEnabled": false, "decimals": 5, "name": "cat in a dogs world", - "poolAddress": "0xBF38331E34ef7f248020611bB31Be0576D06413D", - "poolType": "burnMint", "symbol": "MEW", - "tokenAddress": "0x1b3CF4C6ad50788291160cD10bFEFafC5e4e951C" + "tokenAddress": "0x1b3CF4C6ad50788291160cD10bFEFafC5e4e951C", + "pool": { + "address": "0xBF38331E34ef7f248020611bB31Be0576D06413D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 5, "name": "cat in a dogs world", - "poolAddress": "0xBF38331E34ef7f248020611bB31Be0576D06413D", - "poolType": "burnMint", "symbol": "MEW", - "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B" + "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B", + "pool": { + "address": "0xBF38331E34ef7f248020611bB31Be0576D06413D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 5, "name": "cat in a dogs world", - "poolAddress": "0xaf0b8f79b667055Db3a54a31144e86e841Be3dAD", - "poolType": "burnMint", "symbol": "MEW", - "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B" + "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B", + "pool": { + "address": "0xaf0b8f79b667055Db3a54a31144e86e841Be3dAD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 5, "name": "cat in a dogs world", - "poolAddress": "BomBbNZ1jgmCin3xzhCwMe1j3ewV3DoRAKAuEy6bJ4Px", - "poolType": "lockRelease", "symbol": "MEW", - "tokenAddress": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5" + "tokenAddress": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5", + "pool": { + "address": "BomBbNZ1jgmCin3xzhCwMe1j3ewV3DoRAKAuEy6bJ4Px", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 5, "name": "cat in a dogs world", - "poolAddress": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264", - "poolType": "burnMint", "symbol": "MEW", - "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B" + "tokenAddress": "0xE49FB237974E29AE8022347Ed14084669D70875B", + "pool": { + "address": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "MICHI": { @@ -3635,19 +5248,27 @@ "allowListEnabled": false, "decimals": 6, "name": "michi", - "poolAddress": "0x65615642056b48BCB8120C109f7e7c0c3623A8BF", - "poolType": "burnMint", "symbol": "michi", - "tokenAddress": "0x18a4d375323DFAB49862aCeb1A4c6E65F8e53F67" + "tokenAddress": "0x18a4d375323DFAB49862aCeb1A4c6E65F8e53F67", + "pool": { + "address": "0x65615642056b48BCB8120C109f7e7c0c3623A8BF", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Michi", - "poolAddress": "ATyY7SaiayLnp3teH3c4jRBGiPinSSZyt2gHNNN9C6BV", - "poolType": "lockRelease", "symbol": "$michi", - "tokenAddress": "5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp" + "tokenAddress": "5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp", + "pool": { + "address": "ATyY7SaiayLnp3teH3c4jRBGiPinSSZyt2gHNNN9C6BV", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "MILO": { @@ -3655,19 +5276,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Milo", - "poolAddress": "0xb1F9dBF3bdc2575F338ac218fDb903E1AF8e88Fb", - "poolType": "lockRelease", "symbol": "MILO", - "tokenAddress": "0x8FfC46A1b7a3b12F4A11Db8877d302876DCA7Ab1" + "tokenAddress": "0x8FfC46A1b7a3b12F4A11Db8877d302876DCA7Ab1", + "pool": { + "address": "0xb1F9dBF3bdc2575F338ac218fDb903E1AF8e88Fb", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Milo", - "poolAddress": "0xdD66A2a06D1201C6aA84A89248887831Fe625922", - "poolType": "burnMint", "symbol": "MILO", - "tokenAddress": "0xe22fe63E20c3D817121022316B2430b5A516a6CE" + "tokenAddress": "0xe22fe63E20c3D817121022316B2430b5A516a6CE", + "pool": { + "address": "0xdD66A2a06D1201C6aA84A89248887831Fe625922", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "mmETH": { @@ -3675,19 +5304,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Bridged mmETH", - "poolAddress": "0x2D1d3F65449dd3F36548bBBBD8E9f3C089d30374", - "poolType": "burnMint", "symbol": "Bridged mmETH", - "tokenAddress": "0x5d84E0f246E629E6AB29252ecBD9ab20e89aC845" + "tokenAddress": "0x5d84E0f246E629E6AB29252ecBD9ab20e89aC845", + "pool": { + "address": "0x2D1d3F65449dd3F36548bBBBD8E9f3C089d30374", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "mmETH", - "poolAddress": "0xa27501561B01D99cde347a63891e8762DCa5bBbd", - "poolType": "lockRelease", "symbol": "mmETH", - "tokenAddress": "0x8a053350ca5F9352a16deD26ab333e2D251DAd7c" + "tokenAddress": "0x8a053350ca5F9352a16deD26ab333e2D251DAd7c", + "pool": { + "address": "0xa27501561B01D99cde347a63891e8762DCa5bBbd", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "mstETH": { @@ -3695,28 +5332,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Bridged mstETH", - "poolAddress": "0xf1f89d5127Ce97a3e839993CCC77781AA7DA90bA", - "poolType": "burnMint", "symbol": "Bridged mstETH", - "tokenAddress": "0xE367d4b1b9bB40e34aDCE448e1edb0141Fc6a8AC" + "tokenAddress": "0xE367d4b1b9bB40e34aDCE448e1edb0141Fc6a8AC", + "pool": { + "address": "0xf1f89d5127Ce97a3e839993CCC77781AA7DA90bA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "mstETH", - "poolAddress": "0x2E3c68D6d2eDD9881429f0565B88024B5Db10F73", - "poolType": "lockRelease", "symbol": "mstETH", - "tokenAddress": "0x49446A0874197839D15395B908328a74ccc96Bc0" + "tokenAddress": "0x49446A0874197839D15395B908328a74ccc96Bc0", + "pool": { + "address": "0x2E3c68D6d2eDD9881429f0565B88024B5Db10F73", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "mstETH", - "poolAddress": "0x7361B97025e2207178EDB9BA59c61BDA69E032fa", - "poolType": "burnMint", "symbol": "mstETH", - "tokenAddress": "0x11d525Fb3f8CDfa58bE0d0FaB9339964Aeb89deb" + "tokenAddress": "0x11d525Fb3f8CDfa58bE0d0FaB9339964Aeb89deb", + "pool": { + "address": "0x7361B97025e2207178EDB9BA59c61BDA69E032fa", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "mswETH": { @@ -3724,19 +5373,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Bridged mswETH", - "poolAddress": "0x5D83430652F8B799F24Dae05B1B9916eB2D089b7", - "poolType": "burnMint", "symbol": "Bridged mswETH", - "tokenAddress": "0xAbf9F7200D5337e50BF85748B7e780032BC5838e" + "tokenAddress": "0xAbf9F7200D5337e50BF85748B7e780032BC5838e", + "pool": { + "address": "0x5D83430652F8B799F24Dae05B1B9916eB2D089b7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "mswETH", - "poolAddress": "0xBDCc99f05D73FB3C2ad4b0F496318BaAE20218b7", - "poolType": "lockRelease", "symbol": "mswETH", - "tokenAddress": "0x32bd822d615A3658A68b6fDD30c2fcb2C996D678" + "tokenAddress": "0x32bd822d615A3658A68b6fDD30c2fcb2C996D678", + "pool": { + "address": "0xBDCc99f05D73FB3C2ad4b0F496318BaAE20218b7", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "MVI": { @@ -3744,28 +5401,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Metaverse Index", - "poolAddress": "0xa970d6B0002CDfd4Ca12f0c4F13315dB612DDB5c", - "poolType": "burnMint", "symbol": "MVI", - "tokenAddress": "0x0104a6FA30540DC1d9F45D2797F05eEa79304525" + "tokenAddress": "0x0104a6FA30540DC1d9F45D2797F05eEa79304525", + "pool": { + "address": "0xa970d6B0002CDfd4Ca12f0c4F13315dB612DDB5c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Metaverse Index", - "poolAddress": "0xA688993b1195aA6e64f4F835415c854a2C83BC21", - "poolType": "burnMint", "symbol": "MVI", - "tokenAddress": "0xEA8954dE7607b90F5ec81A5e2e673D0f60BB7596" + "tokenAddress": "0xEA8954dE7607b90F5ec81A5e2e673D0f60BB7596", + "pool": { + "address": "0xA688993b1195aA6e64f4F835415c854a2C83BC21", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Metaverse Index", - "poolAddress": "0x6A888F0f25d2e846ec854d6Fb011BeC6DE31480B", - "poolType": "lockRelease", "symbol": "MVI", - "tokenAddress": "0x72e364F2ABdC788b7E918bc238B21f109Cd634D7" + "tokenAddress": "0x72e364F2ABdC788b7E918bc238B21f109Cd634D7", + "pool": { + "address": "0x6A888F0f25d2e846ec854d6Fb011BeC6DE31480B", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "mwBETH": { @@ -3773,19 +5442,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Bridged mwBETH", - "poolAddress": "0xF975EafE68839F326012f8AEc8759455B5e0050A", - "poolType": "burnMint", "symbol": "Bridged mwBETH", - "tokenAddress": "0x7dC91cBD6CB5A3E6A95EED713Aa6bF1d987146c8" + "tokenAddress": "0x7dC91cBD6CB5A3E6A95EED713Aa6bF1d987146c8", + "pool": { + "address": "0xF975EafE68839F326012f8AEc8759455B5e0050A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "mwBETH", - "poolAddress": "0xa7689C57aa6D09d28244d3932F34176d853A660f", - "poolType": "lockRelease", "symbol": "mwBETH", - "tokenAddress": "0xE46a5E19B19711332e33F33c2DB3eA143e86Bc10" + "tokenAddress": "0xE46a5E19B19711332e33F33c2DB3eA143e86Bc10", + "pool": { + "address": "0xa7689C57aa6D09d28244d3932F34176d853A660f", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "MYST": { @@ -3793,28 +5470,40 @@ "allowListEnabled": false, "decimals": 18, "name": "MyStandard", - "poolAddress": "0xA4D5EF72fCFfa9eac0907856B1db1b68098fA23a", - "poolType": "burnMint", "symbol": "MYST", - "tokenAddress": "0x0256B279D973C8d687264AC3eB36bE09232D4474" + "tokenAddress": "0x0256B279D973C8d687264AC3eB36bE09232D4474", + "pool": { + "address": "0xA4D5EF72fCFfa9eac0907856B1db1b68098fA23a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "MyStandard", - "poolAddress": "0x717C753F9EA66eb763466cf3F8d299C634889B29", - "poolType": "burnMint", "symbol": "MYST", - "tokenAddress": "0xA821aDaCCf08d856c0A36DC2C136B5188c525967" + "tokenAddress": "0xA821aDaCCf08d856c0A36DC2C136B5188c525967", + "pool": { + "address": "0x717C753F9EA66eb763466cf3F8d299C634889B29", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "MyStandard", - "poolAddress": "0xe1A8223DAc2aeC3090322674F054D35C240Dc37f", - "poolType": "burnMint", "symbol": "MYST", - "tokenAddress": "0x3d5F61a4BB385B6D1eB34F47aA790A996f1Eba65" + "tokenAddress": "0x3d5F61a4BB385B6D1eB34F47aA790A996f1Eba65", + "pool": { + "address": "0xe1A8223DAc2aeC3090322674F054D35C240Dc37f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "NEIRO": { @@ -3822,19 +5511,27 @@ "allowListEnabled": false, "decimals": 9, "name": "Neiro", - "poolAddress": "0x8f43e6A0E48c860946bbDeea28F1eE710FdCf6d4", - "poolType": "burnMint", "symbol": "NEIRO", - "tokenAddress": "0x1d192a2f367DaF23540fFEAbF8dBe9B17803F00A" + "tokenAddress": "0x1d192a2f367DaF23540fFEAbF8dBe9B17803F00A", + "pool": { + "address": "0x8f43e6A0E48c860946bbDeea28F1eE710FdCf6d4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Neiro", - "poolAddress": "0x47158771e67e4bDdaFd0FBD36f26Db929420B26C", - "poolType": "lockRelease", "symbol": "NEIRO", - "tokenAddress": "0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637" + "tokenAddress": "0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637", + "pool": { + "address": "0x47158771e67e4bDdaFd0FBD36f26Db929420B26C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "NEKO": { @@ -3842,19 +5539,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Neko", - "poolAddress": "0x6a9A43871a8D468ACF6309f8459bC9623a0F169c", - "poolType": "burnMint", "symbol": "NEKO", - "tokenAddress": "0xdb2aa3cDda310AE4e648E0FcE5cb6c19a37a9aD8" + "tokenAddress": "0xdb2aa3cDda310AE4e648E0FcE5cb6c19a37a9aD8", + "pool": { + "address": "0x6a9A43871a8D468ACF6309f8459bC9623a0F169c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Neko", - "poolAddress": "0xDcE9cf770345584f2DFAA2eA23625cF3eDd6B7cF", - "poolType": "lockRelease", "symbol": "NEKO", - "tokenAddress": "0x63A67329f761517570345eE86f791F74f9DC5461" + "tokenAddress": "0x63A67329f761517570345eE86f791F74f9DC5461", + "pool": { + "address": "0xDcE9cf770345584f2DFAA2eA23625cF3eDd6B7cF", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "NPC": { @@ -3862,19 +5567,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Non-Playable Coin", - "poolAddress": "0xe185299D35f5f346ab0e42476B4172A0d020Aad9", - "poolType": "burnMint", "symbol": "NPC", - "tokenAddress": "0x765DaF34f09CFb86A7d172e016513B6c6355b13d" + "tokenAddress": "0x765DaF34f09CFb86A7d172e016513B6c6355b13d", + "pool": { + "address": "0xe185299D35f5f346ab0e42476B4172A0d020Aad9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Non-Playable Coin", - "poolAddress": "0xF4208675b84E678d0d01528fA97634e2B0873Fa6", - "poolType": "lockRelease", "symbol": "NPC", - "tokenAddress": "0x8eD97a637A790Be1feff5e888d43629dc05408F6" + "tokenAddress": "0x8eD97a637A790Be1feff5e888d43629dc05408F6", + "pool": { + "address": "0xF4208675b84E678d0d01528fA97634e2B0873Fa6", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "NUON": { @@ -3882,28 +5595,40 @@ "allowListEnabled": false, "decimals": 18, "name": "NUON", - "poolAddress": "0x7a1d89A602c98936b5b484c2DB42ec77E1E5743C", - "poolType": "lockRelease", "symbol": "NUON", - "tokenAddress": "0xfb9Fed8cB962548A11fE7F6F282949061395c7F5" + "tokenAddress": "0xfb9Fed8cB962548A11fE7F6F282949061395c7F5", + "pool": { + "address": "0x7a1d89A602c98936b5b484c2DB42ec77E1E5743C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "NUON", - "poolAddress": "0xeE9Ea9B65475EE7693e0Ec9B9c308cA2d536e7ea", - "poolType": "burnMint", "symbol": "NUON", - "tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958" + "tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958", + "pool": { + "address": "0xeE9Ea9B65475EE7693e0Ec9B9c308cA2d536e7ea", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "NUON", - "poolAddress": "0xc1D8f275f651E1CAe3A6D971d0836cDAcD25d91a", - "poolType": "burnMint", "symbol": "NUON", - "tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958" + "tokenAddress": "0xCA160D11087E03fd398d40f561cd4768825f4958", + "pool": { + "address": "0xc1D8f275f651E1CAe3A6D971d0836cDAcD25d91a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "NXPC": { @@ -3911,37 +5636,53 @@ "allowListEnabled": false, "decimals": 18, "name": "NXPC", - "poolAddress": "0x0D9A14a6eD561770295BcCCF1995ae5B026a65d6", - "poolType": "lockRelease", "symbol": "NXPC", - "tokenAddress": "0x5E0E90E268BC247Cc850c789A0DB0d5c7621fb59" + "tokenAddress": "0x5E0E90E268BC247Cc850c789A0DB0d5c7621fb59", + "pool": { + "address": "0x0D9A14a6eD561770295BcCCF1995ae5B026a65d6", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Nexpace", - "poolAddress": "0xEB8a99EDdFA50375E58033c187A4b65EC3c6B40C", - "poolType": "burnMint", "symbol": "NXPC", - "tokenAddress": "0x9f2c4FD0a0BFF91723089775C73394E72c0fC116" + "tokenAddress": "0x9f2c4FD0a0BFF91723089775C73394E72c0fC116", + "pool": { + "address": "0xEB8a99EDdFA50375E58033c187A4b65EC3c6B40C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "NXPC", - "poolAddress": "0xc1E3A199873846AAfcFE71D31e3D82c8B97588D9", - "poolType": "burnMint", "symbol": "NXPC", - "tokenAddress": "0xD33F18D8d48CbbB2f8b47063DE97f94De0D49B99" + "tokenAddress": "0xD33F18D8d48CbbB2f8b47063DE97f94De0D49B99", + "pool": { + "address": "0xc1E3A199873846AAfcFE71D31e3D82c8B97588D9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Nexpace", - "poolAddress": "0x6f9234e7ffdC4Fda751f13269a6584582B9F3C8d", - "poolType": "burnMint", "symbol": "NXPC", - "tokenAddress": "0x1B601A055711FeE5Ea965bC2AE341e2e4a79D622" + "tokenAddress": "0x1B601A055711FeE5Ea965bC2AE341e2e4a79D622", + "pool": { + "address": "0x6f9234e7ffdC4Fda751f13269a6584582B9F3C8d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "OHM": { @@ -3949,19 +5690,27 @@ "allowListEnabled": false, "decimals": 9, "name": "Olympus", - "poolAddress": "0xa5588e518CE5ee0e4628C005E4edAbD5e87de3aD", - "poolType": "lockRelease", "symbol": "OHM", - "tokenAddress": "0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5" + "tokenAddress": "0x64aa3364F17a4D01c6f1751Fd97C2BD3D7e7f1D5", + "pool": { + "address": "0xa5588e518CE5ee0e4628C005E4edAbD5e87de3aD", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Olympus", - "poolAddress": "4N7bZnVSC1GE27vo2Bv6kG983brwhT68BGsLuzH5nTQp", - "poolType": "burnMint", "symbol": "OHM", - "tokenAddress": "2Xva1NeLRuBFdK41gEuXqgeWtnKKDve9PKeCnMEpNG6K" + "tokenAddress": "2Xva1NeLRuBFdK41gEuXqgeWtnKKDve9PKeCnMEpNG6K", + "pool": { + "address": "4N7bZnVSC1GE27vo2Bv6kG983brwhT68BGsLuzH5nTQp", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ORNG": { @@ -3969,19 +5718,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Orange", - "poolAddress": "0x42DFf772b40Eeb42B4DdEd4BB7Fe8ad9212821De", - "poolType": "lockRelease", "symbol": "ORNG", - "tokenAddress": "0x6c14c1898C843FF66cA51e87244690bBc28DF215" + "tokenAddress": "0x6c14c1898C843FF66cA51e87244690bBc28DF215", + "pool": { + "address": "0x42DFf772b40Eeb42B4DdEd4BB7Fe8ad9212821De", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Orange", - "poolAddress": "0x5aDc61883D1aEEfF77DF019A119b8528741fed1e", - "poolType": "burnMint", "symbol": "ORNG", - "tokenAddress": "0xA588041eA7285e8ab47cfBCC8871Ab338f672147" + "tokenAddress": "0xA588041eA7285e8ab47cfBCC8871Ab338f672147", + "pool": { + "address": "0x5aDc61883D1aEEfF77DF019A119b8528741fed1e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "OSIS": { @@ -3989,19 +5746,27 @@ "allowListEnabled": false, "decimals": 18, "name": "OSIS Token", - "poolAddress": "0x475c8Fb7F7D4d3bba0b0a4da2bE31328fc36E358", - "poolType": "burnMint", "symbol": "OSIS", - "tokenAddress": "0x45fcf0Ebb7d79E3de9Fc308b6c7cb680A981CB7a" + "tokenAddress": "0x45fcf0Ebb7d79E3de9Fc308b6c7cb680A981CB7a", + "pool": { + "address": "0x475c8Fb7F7D4d3bba0b0a4da2bE31328fc36E358", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "OSIS", - "poolAddress": "0xCCb9Ce82667b8ca0178E281340F469787096Ba14", - "poolType": "lockRelease", "symbol": "OSIS", - "tokenAddress": "0x3e5351935595600D8e094dEE3Ec7E942CAf9907F" + "tokenAddress": "0x3e5351935595600D8e094dEE3Ec7E942CAf9907F", + "pool": { + "address": "0xCCb9Ce82667b8ca0178E281340F469787096Ba14", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "OVER": { @@ -4009,37 +5774,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Overtime DAO Token", - "poolAddress": "0xccEDD35627336F20b86a96D81EB88A75908D67e9", - "poolType": "burnMint", "symbol": "OVER", - "tokenAddress": "0x5829D6FE7528bc8E92c4e81CC8F20a528820B51a" + "tokenAddress": "0x5829D6FE7528bc8E92c4e81CC8F20a528820B51a", + "pool": { + "address": "0xccEDD35627336F20b86a96D81EB88A75908D67e9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Overtime DAO Token", - "poolAddress": "0xAd897dd53328D86282A3A822C15201d669201AA8", - "poolType": "burnMint", "symbol": "OVER", - "tokenAddress": "0x7750C092e284e2c7366f50C8306F43c7EB2e82a2" + "tokenAddress": "0x7750C092e284e2c7366f50C8306F43c7EB2e82a2", + "pool": { + "address": "0xAd897dd53328D86282A3A822C15201d669201AA8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Overtime DAO Token", - "poolAddress": "0x5c5E86ABC6cfE3772dc2aAe4FAffEEFd641fd460", - "poolType": "burnMint", "symbol": "OVER", - "tokenAddress": "0xedF38688b27036816A50185cAA430D5479e1C63e" + "tokenAddress": "0xedF38688b27036816A50185cAA430D5479e1C63e", + "pool": { + "address": "0x5c5E86ABC6cfE3772dc2aAe4FAffEEFd641fd460", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Overtime DAO Token", - "poolAddress": "0x9054f2DF5f2AC59b39a175c27a00165989D17d2B", - "poolType": "lockRelease", "symbol": "OVER", - "tokenAddress": "0x90cE5720c17587D28E4Af120ae2d313B3BAD1722" + "tokenAddress": "0x90cE5720c17587D28E4Af120ae2d313B3BAD1722", + "pool": { + "address": "0x9054f2DF5f2AC59b39a175c27a00165989D17d2B", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "oXAUT": { @@ -4047,37 +5828,53 @@ "allowListEnabled": false, "decimals": 6, "name": "OpenXAUT", - "poolAddress": "0x18e25Ac83477d7013D43174508B7AE7EC2CE2e08", - "poolType": "burnMint", "symbol": "oXAUT", - "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2" + "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2", + "pool": { + "address": "0x18e25Ac83477d7013D43174508B7AE7EC2CE2e08", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenXAUT", - "poolAddress": "0xaF35bef911A5e0be90987cE5070d7c9CbF5cFd3c", - "poolType": "burnMint", "symbol": "oXAUT", - "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2" + "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2", + "pool": { + "address": "0xaF35bef911A5e0be90987cE5070d7c9CbF5cFd3c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-worldchain-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenXAUT", - "poolAddress": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299", - "poolType": "burnMint", "symbol": "oXAUT", - "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2" + "tokenAddress": "0x30974f73A4ac9E606Ed80da928e454977ac486D2", + "pool": { + "address": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Tether Gold", - "poolAddress": "0x04db9b1D7f52cB288b95B4934a1fA688F6d0cBc3", - "poolType": "burnMint", "symbol": "XAUt", - "tokenAddress": "0x68749665FF8D2d112Fa859AA293F07A622782F38" + "tokenAddress": "0x68749665FF8D2d112Fa859AA293F07A622782F38", + "pool": { + "address": "0x04db9b1D7f52cB288b95B4934a1fA688F6d0cBc3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "PBTC": { @@ -4085,9 +5882,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Pegged Bitcoin", - "poolType": "feeTokenOnly", "symbol": "pBTC", - "tokenAddress": "0x0D2437F93Fed6EA64Ef01cCde385FB1263910C56" + "tokenAddress": "0x0D2437F93Fed6EA64Ef01cCde385FB1263910C56", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "PEPE": { @@ -4095,19 +5897,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Pepe", - "poolAddress": "0xe48D935e6C9e735463ccCf29a7F11e32bC09136E", - "poolType": "lockRelease", "symbol": "PEPE", - "tokenAddress": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + "tokenAddress": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "pool": { + "address": "0xe48D935e6C9e735463ccCf29a7F11e32bC09136E", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 4, "name": "Pepe", - "poolAddress": "4gqQkUyXrfUuRbviWNPeSWUhqko9Q7KX6axMjE3g9Ma3", - "poolType": "burnMint", "symbol": "PEPE", - "tokenAddress": "8NPXRWxUD7xKcexDpK1aC5MTckRykvGya8rzgK8cbQcX" + "tokenAddress": "8NPXRWxUD7xKcexDpK1aC5MTckRykvGya8rzgK8cbQcX", + "pool": { + "address": "4gqQkUyXrfUuRbviWNPeSWUhqko9Q7KX6axMjE3g9Ma3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "PFVS": { @@ -4115,19 +5925,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Puffverse Token", - "poolAddress": "0x337Dec2C7D98CdC0f59976F3A48aCd706cC6c495", - "poolType": "burnMint", "symbol": "PFVS", - "tokenAddress": "0x3157874A7508FCF972379D24590C6806522B784F" + "tokenAddress": "0x3157874A7508FCF972379D24590C6806522B784F", + "pool": { + "address": "0x337Dec2C7D98CdC0f59976F3A48aCd706cC6c495", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Puffverse Token", - "poolAddress": "0x50Dbf7140A444DB0ACFb6d1bcc12408C6485Fe27", - "poolType": "lockRelease", "symbol": "PFVS", - "tokenAddress": "0xb4562fDEFD5eD58f7705CE9386D54EE9B53831d1" + "tokenAddress": "0xb4562fDEFD5eD58f7705CE9386D54EE9B53831d1", + "pool": { + "address": "0x50Dbf7140A444DB0ACFb6d1bcc12408C6485Fe27", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "pippin": { @@ -4135,19 +5953,27 @@ "allowListEnabled": false, "decimals": 6, "name": "Pippin", - "poolAddress": "0x5Efb8F091d49ce1e138353c75d4AAd07a98D79A5", - "poolType": "burnMint", "symbol": "pippin", - "tokenAddress": "0x3945Eaaf908d6c743090D4ca1748c057d8A5634a" + "tokenAddress": "0x3945Eaaf908d6c743090D4ca1748c057d8A5634a", + "pool": { + "address": "0x5Efb8F091d49ce1e138353c75d4AAd07a98D79A5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Pippin", - "poolAddress": "GFZDNxdQFFoPok1ZX1uwzbbfFNB46kJGNnAa1rd7LUVF", - "poolType": "lockRelease", "symbol": "pippin", - "tokenAddress": "Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump" + "tokenAddress": "Dfh5DzRgSvvCFDoYc2ciTkMrbDfRKybA4SoFbPmApump", + "pool": { + "address": "GFZDNxdQFFoPok1ZX1uwzbbfFNB46kJGNnAa1rd7LUVF", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "PIXEL": { @@ -4155,19 +5981,27 @@ "allowListEnabled": false, "decimals": 18, "name": "PIXEL", - "poolAddress": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C", - "poolType": "lockRelease", "symbol": "PIXEL", - "tokenAddress": "0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31" + "tokenAddress": "0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31", + "pool": { + "address": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "PIXEL", - "poolAddress": "0xd7CE1E7262ce471CC3Db3Bcd8c3EdeEe6d114115", - "poolType": "burnMint", "symbol": "PIXEL", - "tokenAddress": "0x7EAe20d11Ef8c779433Eb24503dEf900b9d28ad7" + "tokenAddress": "0x7EAe20d11Ef8c779433Eb24503dEf900b9d28ad7", + "pool": { + "address": "0xd7CE1E7262ce471CC3Db3Bcd8c3EdeEe6d114115", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "POWER": { @@ -4175,28 +6009,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Power", - "poolAddress": "0x7EeeAd4571b12BC3e331E6Ce2D954E1528aC2921", - "poolType": "burnMint", "symbol": "POWER", - "tokenAddress": "0x9dC44ae5BE187ECA9e2A67e33f27A4c91cEA1223" + "tokenAddress": "0x9dC44ae5BE187ECA9e2A67e33f27A4c91cEA1223", + "pool": { + "address": "0x7EeeAd4571b12BC3e331E6Ce2D954E1528aC2921", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Power", - "poolAddress": "0x7EeeAd4571b12BC3e331E6Ce2D954E1528aC2921", - "poolType": "lockRelease", "symbol": "POWER", - "tokenAddress": "0x9dC44ae5BE187ECA9e2A67e33f27A4c91cEA1223" + "tokenAddress": "0x9dC44ae5BE187ECA9e2A67e33f27A4c91cEA1223", + "pool": { + "address": "0x7EeeAd4571b12BC3e331E6Ce2D954E1528aC2921", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Power", - "poolAddress": "0x9B0B4aFf23aC0e144BCb947aD99Bde308dea5641", - "poolType": "burnMint", "symbol": "POWER", - "tokenAddress": "0x394cEF8bDd737EE24DBc9f43d0d5D2ab83136054" + "tokenAddress": "0x394cEF8bDd737EE24DBc9f43d0d5D2ab83136054", + "pool": { + "address": "0x9B0B4aFf23aC0e144BCb947aD99Bde308dea5641", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "PTjrUSDe": { @@ -4204,19 +6050,27 @@ "allowListEnabled": false, "decimals": 18, "name": "PT Strata Junior USDe 2APR2026", - "poolAddress": "0x2d2a804E10B0CA29e3246F438b1223393AB3EDf8", - "poolType": "lockRelease", "symbol": "PT-jrUSDe-2APR2026", - "tokenAddress": "0xd0609Ac13000d88B0BEbf5Bb21074916eDd92Bb1" + "tokenAddress": "0xd0609Ac13000d88B0BEbf5Bb21074916eDd92Bb1", + "pool": { + "address": "0x2d2a804E10B0CA29e3246F438b1223393AB3EDf8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "ETH PT jrUSDe (USDe) 2026Apr", - "poolAddress": "3T6Bok68RDHJdQNN3ebrTj4vxaPqjxM148c7JJj8Fawc", - "poolType": "burnMint", "symbol": "PTjrUSDe", - "tokenAddress": "PTjrYm3qif3qo3tsoqmr41TVCZyhBvkgukcDB2Qk8dd" + "tokenAddress": "PTjrYm3qif3qo3tsoqmr41TVCZyhBvkgukcDB2Qk8dd", + "pool": { + "address": "3T6Bok68RDHJdQNN3ebrTj4vxaPqjxM148c7JJj8Fawc", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "PTsrUSDe": { @@ -4224,19 +6078,27 @@ "allowListEnabled": false, "decimals": 18, "name": "PT Strata Senior USDe 2APR2026", - "poolAddress": "0x33D5E3e9964772A054Ad79B605B7eCc95EBc96c6", - "poolType": "lockRelease", "symbol": "PT-srUSDe-2APR2026", - "tokenAddress": "0x9Bf45ab47747F4B4dD09B3C2c73953484b4eB375" + "tokenAddress": "0x9Bf45ab47747F4B4dD09B3C2c73953484b4eB375", + "pool": { + "address": "0x33D5E3e9964772A054Ad79B605B7eCc95EBc96c6", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "ETH PT srUSDe (USDe) 2026Apr", - "poolAddress": "2ESptT6YLTCK19vAZ3DQnC9UhGChy58wfaPkW4WuApWa", - "poolType": "burnMint", "symbol": "PTsrUSDe", - "tokenAddress": "PTsrBnshSkHwufaak5p2jRR5Jgf4dTp3N7Mx1sdV1hv" + "tokenAddress": "PTsrBnshSkHwufaak5p2jRR5Jgf4dTp3N7Mx1sdV1hv", + "pool": { + "address": "2ESptT6YLTCK19vAZ3DQnC9UhGChy58wfaPkW4WuApWa", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "PTsUSDE": { @@ -4244,19 +6106,27 @@ "allowListEnabled": false, "decimals": 18, "name": "PT Ethena sUSDE 5FEB2026", - "poolAddress": "0x04790065826123136eB50d9dF1276f98376a6e91", - "poolType": "lockRelease", "symbol": "PT-sUSDE-5FEB2026", - "tokenAddress": "0xE8483517077afa11A9B07f849cee2552f040d7b2" + "tokenAddress": "0xE8483517077afa11A9B07f849cee2552f040d7b2", + "pool": { + "address": "0x04790065826123136eB50d9dF1276f98376a6e91", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "ETH PT sUSDe (USDe) 2026Feb", - "poolAddress": "R78LZoZJCfG5dTxPT9bAc6DCgvYQ32Gp8hVrkbjGiF1", - "poolType": "burnMint", "symbol": "PTsUSDE", - "tokenAddress": "PTSg1sXMujX5bgTM88C2PMksHG5w2bqvXJrG9uUdzpA" + "tokenAddress": "PTSg1sXMujX5bgTM88C2PMksHG5w2bqvXJrG9uUdzpA", + "pool": { + "address": "R78LZoZJCfG5dTxPT9bAc6DCgvYQ32Gp8hVrkbjGiF1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "pufETH": { @@ -4264,37 +6134,53 @@ "allowListEnabled": false, "decimals": 18, "name": "pufETH", - "poolAddress": "0x8dA0baE597aC15fB0924713b1e3c1F624474F3E4", - "poolType": "burnMint", "symbol": "pufETH", - "tokenAddress": "0x417b0Ff8358Eb72867Da92225CaB99BCD5e6F205" + "tokenAddress": "0x417b0Ff8358Eb72867Da92225CaB99BCD5e6F205", + "pool": { + "address": "0x8dA0baE597aC15fB0924713b1e3c1F624474F3E4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "pufETH", - "poolAddress": "0x87d00066cf131ff54B72B134a217D5401E5392b6", - "poolType": "burnMint", "symbol": "pufETH", - "tokenAddress": "0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF" + "tokenAddress": "0x37D6382B6889cCeF8d6871A8b60E667115eDDBcF", + "pool": { + "address": "0x87d00066cf131ff54B72B134a217D5401E5392b6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "pufETH", - "poolAddress": "0xBc1324F4FaB8e63bF33E5117bb887671B378BFF3", - "poolType": "lockRelease", "symbol": "pufETH", - "tokenAddress": "0xD9A442856C234a39a81a089C06451EBAa4306a72" + "tokenAddress": "0xD9A442856C234a39a81a089C06451EBAa4306a72", + "pool": { + "address": "0xBc1324F4FaB8e63bF33E5117bb887671B378BFF3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "pufETH", - "poolAddress": "0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7", - "poolType": "burnMint", "symbol": "pufETH", - "tokenAddress": "0x6c460b2c6D6719562D5dA43E5152B375e79B9A8B" + "tokenAddress": "0x6c460b2c6D6719562D5dA43E5152B375e79B9A8B", + "pool": { + "address": "0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "QUICK": { @@ -4302,19 +6188,27 @@ "allowListEnabled": false, "decimals": 18, "name": "QuickSwap", - "poolAddress": "0xf7C2DbFF4dFEc28eaf52CAAc8FdA22FbA19199ce", - "poolType": "lockRelease", "symbol": "QUICK", - "tokenAddress": "0x7094c27f342DBAdfbbeD005b219431595E33b305" + "tokenAddress": "0x7094c27f342DBAdfbbeD005b219431595E33b305", + "pool": { + "address": "0xf7C2DbFF4dFEc28eaf52CAAc8FdA22FbA19199ce", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "QuickSwap", - "poolAddress": "0x8D89611841D3389711ea3c74538f953F8dffA427", - "poolType": "lockRelease", "symbol": "QUICK", - "tokenAddress": "0xB5C064F955D8e7F38fE0460C556a72987494eE17" + "tokenAddress": "0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "pool": { + "address": "0x8D89611841D3389711ea3c74538f953F8dffA427", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "RAIN": { @@ -4322,37 +6216,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Rain Coin", - "poolAddress": "0xa71433A266dB0B15cF127dE74B3Fa33Cbe730526", - "poolType": "burnMint", "symbol": "RAIN", - "tokenAddress": "0x24b1C3f935DfFcADb606920022BA8C703BB065D7" + "tokenAddress": "0x24b1C3f935DfFcADb606920022BA8C703BB065D7", + "pool": { + "address": "0xa71433A266dB0B15cF127dE74B3Fa33Cbe730526", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Rain Coin", - "poolAddress": "0xDca466bE13e06659CfED0f0467c370FCAbE46F32", - "poolType": "burnMint", "symbol": "RAIN", - "tokenAddress": "0x4E21eABf4fC4cF66f10a93395E4B0e2438de81a6" + "tokenAddress": "0x4E21eABf4fC4cF66f10a93395E4B0e2438de81a6", + "pool": { + "address": "0xDca466bE13e06659CfED0f0467c370FCAbE46F32", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Rain Coin", - "poolAddress": "0x390735D3b3C3805F71644154e5Fba82E0e542e76", - "poolType": "burnMint", "symbol": "RAIN", - "tokenAddress": "0x59DB93D135F16585ED90b8C942d4f8AE0DcFBFc0" + "tokenAddress": "0x59DB93D135F16585ED90b8C942d4f8AE0DcFBFc0", + "pool": { + "address": "0x390735D3b3C3805F71644154e5Fba82E0e542e76", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Rain Coin", - "poolAddress": "0x3D9C216B971C82B95106ec98F6ade87F6a56915C", - "poolType": "lockRelease", "symbol": "wRAIN", - "tokenAddress": "0x2b72C03feAf5f6B624Db83974054848C9dF2c8e7" + "tokenAddress": "0x2b72C03feAf5f6B624Db83974054848C9dF2c8e7", + "pool": { + "address": "0x3D9C216B971C82B95106ec98F6ade87F6a56915C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "RDP": { @@ -4360,19 +6270,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Radpie", - "poolAddress": "0x879d0803Dc3fB6b435E6407F4b74101bB8f742C8", - "poolType": "burnMint", "symbol": "RDP", - "tokenAddress": "0x27c073e8427aa493a90b8dC8b73A89e670FD77bB" + "tokenAddress": "0x27c073e8427aa493a90b8dC8b73A89e670FD77bB", + "pool": { + "address": "0x879d0803Dc3fB6b435E6407F4b74101bB8f742C8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Radpie", - "poolAddress": "0x3be3266713DeBDeb1CdC420a88f1E9EefB7982e2", - "poolType": "burnMint", "symbol": "RDP", - "tokenAddress": "0x54BDBF3cE36f451Ec61493236b8E6213ac87c0f6" + "tokenAddress": "0x54BDBF3cE36f451Ec61493236b8E6213ac87c0f6", + "pool": { + "address": "0x3be3266713DeBDeb1CdC420a88f1E9EefB7982e2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "REG": { @@ -4380,28 +6298,40 @@ "allowListEnabled": false, "decimals": 18, "name": "RealToken Ecosystem Governance", - "poolAddress": "0x307D0353313F544fc8Da0D85F1005b1de516Bce8", - "poolType": "burnMint", "symbol": "REG", - "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce" + "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce", + "pool": { + "address": "0x307D0353313F544fc8Da0D85F1005b1de516Bce8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "RealToken Ecosystem Governance", - "poolAddress": "0xe61d70B29F6a83A50Acff39e8b8AC6B27F6e6ddA", - "poolType": "burnMint", "symbol": "REG", - "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce" + "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce", + "pool": { + "address": "0xe61d70B29F6a83A50Acff39e8b8AC6B27F6e6ddA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "RealToken Ecosystem Governance", - "poolAddress": "0x8058d5d465C8CA6BA76De043A7637F8Df74a0989", - "poolType": "burnMint", "symbol": "REG", - "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce" + "tokenAddress": "0x0AA1e96D2a46Ec6beB2923dE1E61Addf5F5f1dce", + "pool": { + "address": "0x8058d5d465C8CA6BA76De043A7637F8Df74a0989", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "RETH": { @@ -4409,37 +6339,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Rocket Pool ETH", - "poolAddress": "0x3A2Ea8BaE01410425d01c2C5f488e4777DAA54Df", - "poolType": "lockRelease", "symbol": "rETH", - "tokenAddress": "0xae78736Cd615f374D3085123A210448E74Fc6393" + "tokenAddress": "0xae78736Cd615f374D3085123A210448E74Fc6393", + "pool": { + "address": "0x3A2Ea8BaE01410425d01c2C5f488e4777DAA54Df", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Rocket Pool ETH", - "poolAddress": "0xABC0F3b9455E308C27C2a6fe0EF82A596c95709F", - "poolType": "burnMint", "symbol": "rETH", - "tokenAddress": "0xC61a178d9742775f3B741fE60F12659D853c66A1" + "tokenAddress": "0xC61a178d9742775f3B741fE60F12659D853c66A1", + "pool": { + "address": "0xABC0F3b9455E308C27C2a6fe0EF82A596c95709F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Rocket Pool ETH", - "poolAddress": "0xCd4Ee1110707D79704d6881A4fEf158e5FdB334b", - "poolType": "burnMint", "symbol": "RETH", - "tokenAddress": "0x29c46e6F2A67872Ad6b1Dc04e1591934a96Af62E" + "tokenAddress": "0x29c46e6F2A67872Ad6b1Dc04e1591934a96Af62E", + "pool": { + "address": "0xCd4Ee1110707D79704d6881A4fEf158e5FdB334b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "tac-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Rocket Pool ETH", - "poolAddress": "0xbf22058C8cd5a9fd426aa5176424d41027F14545", - "poolType": "burnMint", "symbol": "rETH", - "tokenAddress": "0x6e5e9b22E461c2F9786e6d8069d47adA1Ef58aDc" + "tokenAddress": "0x6e5e9b22E461c2F9786e6d8069d47adA1Ef58aDc", + "pool": { + "address": "0xbf22058C8cd5a9fd426aa5176424d41027F14545", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "RIZE": { @@ -4447,37 +6393,53 @@ "allowListEnabled": false, "decimals": 18, "name": "RIZE", - "poolAddress": "0xf234609b2e2704b48745A819C89774Fe21E4a722", - "poolType": "burnMint", "symbol": "RIZE", - "tokenAddress": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4" + "tokenAddress": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4", + "pool": { + "address": "0xf234609b2e2704b48745A819C89774Fe21E4a722", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "RIZE", - "poolAddress": "0xd4D129Df31bF9d9eF7fF030aDF984f3d028E16a0", - "poolType": "burnMint", "symbol": "RIZE", - "tokenAddress": "0x9818B6c09f5ECc843060927E8587c427C7C93583" + "tokenAddress": "0x9818B6c09f5ECc843060927E8587c427C7C93583", + "pool": { + "address": "0xd4D129Df31bF9d9eF7fF030aDF984f3d028E16a0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "RIZE", - "poolAddress": "0x17Be5d735D49c84919d3cFDfF9eABbdB12D6Ac20", - "poolType": "burnMint", "symbol": "RIZE", - "tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605" + "tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605", + "pool": { + "address": "0x17Be5d735D49c84919d3cFDfF9eABbdB12D6Ac20", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "RIZE", - "poolAddress": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4", - "poolType": "burnMint", "symbol": "RIZE", - "tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605" + "tokenAddress": "0x9F1E8F87c6321b84baD7DDa7DfB86D5115A47605", + "pool": { + "address": "0xAEDAff046601BEb063b647845Dfb21841f32d6A4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "rsETH": { @@ -4485,37 +6447,53 @@ "allowListEnabled": false, "decimals": 18, "name": "rsETH", - "poolAddress": "0x72a7ffbd763c369d5A86eEe886ABb99BdA613f8A", - "poolType": "burnMint", "symbol": "rsETH", - "tokenAddress": "0xb999Ea589E0a1Cce9153601daC2D6e203c2fD577" + "tokenAddress": "0xb999Ea589E0a1Cce9153601daC2D6e203c2fD577", + "pool": { + "address": "0x72a7ffbd763c369d5A86eEe886ABb99BdA613f8A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "rsETH", - "poolAddress": "0xc28A1F91e6D0eCf6cBFe6809D256a7753fae52B5", - "poolType": "burnMint", "symbol": "rsETH", - "tokenAddress": "0x043849686EE254ada46A432770E1a491491FC44D" + "tokenAddress": "0x043849686EE254ada46A432770E1a491491FC44D", + "pool": { + "address": "0xc28A1F91e6D0eCf6cBFe6809D256a7753fae52B5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "rsETH", - "poolAddress": "0x5bdB8499D400Fb19afc665D1CE0C5459bB3401Eb", - "poolType": "burnMint", "symbol": "rsETH", - "tokenAddress": "0x571405D597091e8728d8240F558BAc01275E8659" + "tokenAddress": "0x571405D597091e8728d8240F558BAc01275E8659", + "pool": { + "address": "0x5bdB8499D400Fb19afc665D1CE0C5459bB3401Eb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "rsETH", - "poolAddress": "0x55e5a21B4cCC7FA502434ab1109D4EDe0397AB25", - "poolType": "lockRelease", "symbol": "rsETH", - "tokenAddress": "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7" + "tokenAddress": "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7", + "pool": { + "address": "0x55e5a21B4cCC7FA502434ab1109D4EDe0397AB25", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SAS": { @@ -4523,37 +6501,53 @@ "allowListEnabled": false, "decimals": 18, "name": "ShibArmyStrong", - "poolAddress": "0xd13129ee86f6285d51F66196A02a929E2be977a4", - "poolType": "burnMint", "symbol": "SAS", - "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9" + "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9", + "pool": { + "address": "0xd13129ee86f6285d51F66196A02a929E2be977a4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "ShibArmyStrong", - "poolAddress": "0xd13129ee86f6285d51F66196A02a929E2be977a4", - "poolType": "burnMint", "symbol": "SAS", - "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9" + "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9", + "pool": { + "address": "0xd13129ee86f6285d51F66196A02a929E2be977a4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ShibArmyStrong", - "poolAddress": "0x89F39cdbad48b6531DDBd38ea0D84E9c9CbCdA27", - "poolType": "lockRelease", "symbol": "SAS", - "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9" + "tokenAddress": "0x28BE7E8cD8125CB7A74D2002A5862E1bfd774cd9", + "pool": { + "address": "0x89F39cdbad48b6531DDBd38ea0D84E9c9CbCdA27", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "ShibArmyStrong", - "poolAddress": "0xab8B05d4d7d31b28d9973C5CD2965b9e48a2a35d", - "poolType": "burnMint", "symbol": "SAS", - "tokenAddress": "0x7E315C269F7849F80824755A666DC6fb4Ba8BEe1" + "tokenAddress": "0x7E315C269F7849F80824755A666DC6fb4Ba8BEe1", + "pool": { + "address": "0xab8B05d4d7d31b28d9973C5CD2965b9e48a2a35d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "savBTC": { @@ -4561,37 +6555,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Staked avBTC", - "poolAddress": "0x9E3021Cedd853C63cBa44e8a351ea807fd116e7C", - "poolType": "lockRelease", "symbol": "savBTC", - "tokenAddress": "0x649342c6bff544d82DF1B2bA3C93e0C22cDeBa84" + "tokenAddress": "0x649342c6bff544d82DF1B2bA3C93e0C22cDeBa84", + "pool": { + "address": "0x9E3021Cedd853C63cBa44e8a351ea807fd116e7C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avBTC", - "poolAddress": "0x79A42a8dC09F3501DC265e65139912aE20c5BCeb", - "poolType": "burnMint", "symbol": "savBTC", - "tokenAddress": "0x19452d507b2738aDB8942cD2b0d52BB519f1790a" + "tokenAddress": "0x19452d507b2738aDB8942cD2b0d52BB519f1790a", + "pool": { + "address": "0x79A42a8dC09F3501DC265e65139912aE20c5BCeb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked avBTC", - "poolAddress": "0x5b0B44bB38E23193111e7AA03E380Ba841e58B17", - "poolType": "burnMint", "symbol": "savBTC", - "tokenAddress": "0x45cF31aF4d67899674B50ab14093b55006fFf563" + "tokenAddress": "0x45cF31aF4d67899674B50ab14093b55006fFf563", + "pool": { + "address": "0x5b0B44bB38E23193111e7AA03E380Ba841e58B17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avBTC", - "poolAddress": "0x78991cd8ADDf98672A1201D70c6db46e21C25C57", - "poolType": "burnMint", "symbol": "savBTC", - "tokenAddress": "0x92181c6f0FED1f1A30c0Ec131f41577F81924bf5" + "tokenAddress": "0x92181c6f0FED1f1A30c0Ec131f41577F81924bf5", + "pool": { + "address": "0x78991cd8ADDf98672A1201D70c6db46e21C25C57", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "savETH": { @@ -4599,28 +6609,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Staked avETH", - "poolAddress": "0xd039ac36B5082ee285471968b88f468e42E27Fa0", - "poolType": "burnMint", "symbol": "savETH", - "tokenAddress": "0x260c0c715A279F239cF44e2F73E964AB550738f3" + "tokenAddress": "0x260c0c715A279F239cF44e2F73E964AB550738f3", + "pool": { + "address": "0xd039ac36B5082ee285471968b88f468e42E27Fa0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked avETH", - "poolAddress": "0x10CBdedfD636C777977d621D344791A288528fF0", - "poolType": "burnMint", "symbol": "savETH", - "tokenAddress": "0xA0Fbf835fd24bD1aAFD39a0D4b1779B5B8329770" + "tokenAddress": "0xA0Fbf835fd24bD1aAFD39a0D4b1779B5B8329770", + "pool": { + "address": "0x10CBdedfD636C777977d621D344791A288528fF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avETH", - "poolAddress": "0x43f47a434DADd5A122C42E49378365CcA949fA54", - "poolType": "lockRelease", "symbol": "savETH", - "tokenAddress": "0xDA06eE2dACF9245Aa80072a4407deBDea0D7e341" + "tokenAddress": "0xDA06eE2dACF9245Aa80072a4407deBDea0D7e341", + "pool": { + "address": "0x43f47a434DADd5A122C42E49378365CcA949fA54", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "savUSD": { @@ -4628,73 +6650,105 @@ "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0x8FcC42c414E29e8e3dBFa1628CF45E8ed80C999D", - "poolType": "lockRelease", "symbol": "savUSD", - "tokenAddress": "0x06d47F3fb376649c3A9Dafe069B3D6E35572219E" + "tokenAddress": "0x06d47F3fb376649c3A9Dafe069B3D6E35572219E", + "pool": { + "address": "0x8FcC42c414E29e8e3dBFa1628CF45E8ed80C999D", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0x59E2a16B388999D0d258e52623aC97F8841c37d2", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0xa744Fe3688291aC3A4a7eC917678783aD9946a1E" + "tokenAddress": "0xa744Fe3688291aC3A4a7eC917678783aD9946a1E", + "pool": { + "address": "0x59E2a16B388999D0d258e52623aC97F8841c37d2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0x8e4eC56B2E74bD48557F327Ea35F6f08b7E8a4bd", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0x14063733875204b35D20D5Fc52C7B5569aD00335" + "tokenAddress": "0x14063733875204b35D20D5Fc52C7B5569aD00335", + "pool": { + "address": "0x8e4eC56B2E74bD48557F327Ea35F6f08b7E8a4bd", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0xC164b8232ca67D2f8dDA43CF75CbE8161E6861D8", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0xA322e23a357cB7C596A7a834102B9d6d5b15da3e" + "tokenAddress": "0xA322e23a357cB7C596A7a834102B9d6d5b15da3e", + "pool": { + "address": "0xC164b8232ca67D2f8dDA43CF75CbE8161E6861D8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0xDd10449dEAF27fc4937DDA64d0b5Af819b79EE63", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0x5C247948fD58Bb02B6c4678d9940F5e6B9af1127" + "tokenAddress": "0x5C247948fD58Bb02B6c4678d9940F5e6B9af1127", + "pool": { + "address": "0xDd10449dEAF27fc4937DDA64d0b5Af819b79EE63", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0x6d3B65eB14ad3546ab4Aa32cf8645a3610a9737b", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0xb8D89678E75a973E74698c976716308abB8a46A4" + "tokenAddress": "0xb8D89678E75a973E74698c976716308abB8a46A4", + "pool": { + "address": "0x6d3B65eB14ad3546ab4Aa32cf8645a3610a9737b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0xFCCfA86d9AEdD2fF8dF60600110d6D1649679Fef", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0xA29420057F3e3B9512D4786df135Da1674BD74D4" + "tokenAddress": "0xA29420057F3e3B9512D4786df135Da1674BD74D4", + "pool": { + "address": "0xFCCfA86d9AEdD2fF8dF60600110d6D1649679Fef", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polygon-mainnet-katana": { "allowListEnabled": false, "decimals": 18, "name": "Staked avUSD", - "poolAddress": "0x8d2145dB5Da67B262aEb451D16b07B1a958124eC", - "poolType": "burnMint", "symbol": "savUSD", - "tokenAddress": "0xb9827268eBCc4EA7b105cfC787A92c612629A3f1" + "tokenAddress": "0xb9827268eBCc4EA7b105cfC787A92c612629A3f1", + "pool": { + "address": "0x8d2145dB5Da67B262aEb451D16b07B1a958124eC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SD": { @@ -4702,28 +6756,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Stader", - "poolAddress": "0x1AEfE4c18198C5838e22951C9382cD3080052407", - "poolType": "burnMint", "symbol": "SD", - "tokenAddress": "0x9445F4081AFC7Fa66b53224DCb84aC6e6A1714A2" + "tokenAddress": "0x9445F4081AFC7Fa66b53224DCb84aC6e6A1714A2", + "pool": { + "address": "0x1AEfE4c18198C5838e22951C9382cD3080052407", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Stader", - "poolAddress": "0x98BBA66d65Dd48bAD447b73db8181930c02c794D", - "poolType": "burnMint", "symbol": "SD", - "tokenAddress": "0x32E94BB4A3521EBEBE14AE3Aa5Bc09fCc9E42306" + "tokenAddress": "0x32E94BB4A3521EBEBE14AE3Aa5Bc09fCc9E42306", + "pool": { + "address": "0x98BBA66d65Dd48bAD447b73db8181930c02c794D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stader", - "poolAddress": "0x61D405818C8127f0fD30102BF01E6227097eF92f", - "poolType": "lockRelease", "symbol": "SD", - "tokenAddress": "0x30D20208d987713f46DFD34EF128Bb16C404D10f" + "tokenAddress": "0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "pool": { + "address": "0x61D405818C8127f0fD30102BF01E6227097eF92f", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "sDAI": { @@ -4731,19 +6797,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Mode Savings Dai", - "poolAddress": "0x0e3229079543F047a394833063702E71F733F6a5", - "poolType": "burnMint", "symbol": "msDAI", - "tokenAddress": "0x3f51c6c5927B88CDEc4b61e2787F9BD0f5249138" + "tokenAddress": "0x3f51c6c5927B88CDEc4b61e2787F9BD0f5249138", + "pool": { + "address": "0x0e3229079543F047a394833063702E71F733F6a5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Savings Dai", - "poolAddress": "0xF6c88f0933126c2e2CDb060910165aA4BfC11B99", - "poolType": "lockRelease", "symbol": "sDAI", - "tokenAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA" + "tokenAddress": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "pool": { + "address": "0xF6c88f0933126c2e2CDb060910165aA4BfC11B99", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SDL": { @@ -4751,28 +6825,40 @@ "allowListEnabled": false, "decimals": 18, "name": "stake.link", - "poolAddress": "0x26adFa2F46F5efDD5dFDF5b2f9849fD97b8390cc", - "poolType": "burnMint", "symbol": "SDL", - "tokenAddress": "0xdFeA35757264F5b6C0ff21104151D9F991D0eEC0" + "tokenAddress": "0xdFeA35757264F5b6C0ff21104151D9F991D0eEC0", + "pool": { + "address": "0x26adFa2F46F5efDD5dFDF5b2f9849fD97b8390cc", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "stake.link", - "poolAddress": "0xe8bc08EC1d934ac5afe860aE510A8d03E747540c", - "poolType": "burnMint", "symbol": "SDL", - "tokenAddress": "0xe5B64a705db9d2395C471af1608972cCbacE26E6" + "tokenAddress": "0xe5B64a705db9d2395C471af1608972cCbacE26E6", + "pool": { + "address": "0xe8bc08EC1d934ac5afe860aE510A8d03E747540c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "stake.link", - "poolAddress": "0x267aE721c7b9BB409847C324A06259A7d96a644A", - "poolType": "lockRelease", "symbol": "SDL", - "tokenAddress": "0xA95C5ebB86E0dE73B4fB8c47A45B792CFeA28C23" + "tokenAddress": "0xA95C5ebB86E0dE73B4fB8c47A45B792CFeA28C23", + "pool": { + "address": "0x267aE721c7b9BB409847C324A06259A7d96a644A", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SDM": { @@ -4780,19 +6866,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Diamondz Shadow Game + Movies", - "poolAddress": "0x97831d9E9896B941d1047ECE33031C1eF19fB9A5", - "poolType": "burnMint", "symbol": "SDM", - "tokenAddress": "0x602b869eEf1C9F0487F31776bad8Af3C4A173394" + "tokenAddress": "0x602b869eEf1C9F0487F31776bad8Af3C4A173394", + "pool": { + "address": "0x97831d9E9896B941d1047ECE33031C1eF19fB9A5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Diamondz Shadow Game + Movies", - "poolAddress": "0xBC3cc3F1122a664dc3C650C0A8138Ca2731b9431", - "poolType": "burnMint", "symbol": "SDM", - "tokenAddress": "0xDd5C53Fa95741B3B896BaC689bd460C29a4F7034" + "tokenAddress": "0xDd5C53Fa95741B3B896BaC689bd460C29a4F7034", + "pool": { + "address": "0xBC3cc3F1122a664dc3C650C0A8138Ca2731b9431", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "sDOLA": { @@ -4800,46 +6894,66 @@ "allowListEnabled": false, "decimals": 18, "name": "Staked DOLA", - "poolAddress": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773", - "poolType": "burnMint", "symbol": "sDOLA", - "tokenAddress": "0x02eaa69646183c069FC2B64F15923F27B9CF3b03" + "tokenAddress": "0x02eaa69646183c069FC2B64F15923F27B9CF3b03", + "pool": { + "address": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked DOLA", - "poolAddress": "0xbbc28DB61DF26B76D5F7D5Eed17eD4D6C278460e", - "poolType": "burnMint", "symbol": "sDOLA", - "tokenAddress": "0x7a1e123e41458aabaB8068BFed6010D8f9480898" + "tokenAddress": "0x7a1e123e41458aabaB8068BFed6010D8f9480898", + "pool": { + "address": "0xbbc28DB61DF26B76D5F7D5Eed17eD4D6C278460e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked DOLA", - "poolAddress": "0xd84e1B7e1a7A8D49167884855c3985ef4bCa45aB", - "poolType": "burnMint", "symbol": "sDOLA", - "tokenAddress": "0xCa78ee4544ec5a33Af86F1E786EfC7d3652bf005" + "tokenAddress": "0xCa78ee4544ec5a33Af86F1E786EfC7d3652bf005", + "pool": { + "address": "0xd84e1B7e1a7A8D49167884855c3985ef4bCa45aB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked DOLA", - "poolAddress": "0x8404024d8F74Ad2D20E82c184816B64D4184A018", - "poolType": "burnMint", "symbol": "sDOLA", - "tokenAddress": "0xfc63C9c8Ba44AE89C01265453Ed4F427C80cBd4E" + "tokenAddress": "0xfc63C9c8Ba44AE89C01265453Ed4F427C80cBd4E", + "pool": { + "address": "0x8404024d8F74Ad2D20E82c184816B64D4184A018", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked Dola", - "poolAddress": "0x05eEe76f456C51Be0459EC1c0a78bf177B2c877C", - "poolType": "lockRelease", "symbol": "sDOLA", - "tokenAddress": "0xb45ad160634c528Cc3D2926d9807104FA3157305" + "tokenAddress": "0xb45ad160634c528Cc3D2926d9807104FA3157305", + "pool": { + "address": "0x05eEe76f456C51Be0459EC1c0a78bf177B2c877C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SDT": { @@ -4847,28 +6961,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Stake DAO Token", - "poolAddress": "0xB1133f3A7bC0392948f4Bb43947b9BB662fB8E20", - "poolType": "burnMint", "symbol": "SDT", - "tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383" + "tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383", + "pool": { + "address": "0xB1133f3A7bC0392948f4Bb43947b9BB662fB8E20", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Stake DAO Token", - "poolAddress": "0x4AFdDee00D68ebA82B882db98015bfD816818093", - "poolType": "burnMint", "symbol": "SDT", - "tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383" + "tokenAddress": "0x07715EE7219B07b8e01CC7d2787f4e5e75860383", + "pool": { + "address": "0x4AFdDee00D68ebA82B882db98015bfD816818093", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stake DAO Token", - "poolAddress": "0x89c9038906887A69bD9C20f81B1B4C309F9A6D04", - "poolType": "lockRelease", "symbol": "SDT", - "tokenAddress": "0x73968b9a57c6E53d41345FD57a6E6ae27d6CDB2F" + "tokenAddress": "0x73968b9a57c6E53d41345FD57a6E6ae27d6CDB2F", + "pool": { + "address": "0x89c9038906887A69bD9C20f81B1B4C309F9A6D04", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SDY": { @@ -4876,28 +7002,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Steadefi", - "poolAddress": "0x2910769511bA734895B127b9564A2b56cd7a4B02", - "poolType": "burnMint", "symbol": "SDY", - "tokenAddress": "0x338c6d2DF4dB2459EAB0835fd9004Cf2915842e0" + "tokenAddress": "0x338c6d2DF4dB2459EAB0835fd9004Cf2915842e0", + "pool": { + "address": "0x2910769511bA734895B127b9564A2b56cd7a4B02", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Steadefi", - "poolAddress": "0x53606d47E92e390B2B4B105e92bAC238CC77F28c", - "poolType": "burnMint", "symbol": "SDY", - "tokenAddress": "0x7d262214f368A896Af42E36F20a97E2d83df701b" + "tokenAddress": "0x7d262214f368A896Af42E36F20a97E2d83df701b", + "pool": { + "address": "0x53606d47E92e390B2B4B105e92bAC238CC77F28c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Steadefi", - "poolAddress": "0xC4ABCd324ED49B98795CC8F51C80DAF1A24F5F58", - "poolType": "burnMint", "symbol": "SDY", - "tokenAddress": "0xf2DbAaBd8F8E0993F11DE4CEd470Df1ED1a4491b" + "tokenAddress": "0xf2DbAaBd8F8E0993F11DE4CEd470Df1ED1a4491b", + "pool": { + "address": "0xC4ABCd324ED49B98795CC8F51C80DAF1A24F5F58", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SHIB": { @@ -4905,172 +7043,248 @@ "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x6f6F5645B86b1fD3c4C015822a0E672132D4e2F8", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x2f643d728926C20269f0A04931dd7b4b6B650204" + "tokenAddress": "0x2f643d728926C20269f0A04931dd7b4b6B650204", + "pool": { + "address": "0x6f6F5645B86b1fD3c4C015822a0E672132D4e2F8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x7f1f90E6b6BAD9fc14ca71224B072541B739beb3", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xEc59dE82FFf1959E92b91daB975e4564FC3447cC" + "tokenAddress": "0xEc59dE82FFf1959E92b91daB975e4564FC3447cC", + "pool": { + "address": "0x7f1f90E6b6BAD9fc14ca71224B072541B739beb3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "celo-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x346368422407aCaF48025ff18891b1D7540539Bf", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xf5607d767CCa3789CAe872A33E3cfb76cFbaaaA2" + "tokenAddress": "0xf5607d767CCa3789CAe872A33E3cfb76cFbaaaA2", + "pool": { + "address": "0x346368422407aCaF48025ff18891b1D7540539Bf", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-andromeda-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x48A148B6EFAD4D59225034f1A243cea734e67bB0", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x7C87cc813Ce92D384c437C263E9FB2E7F945188E" + "tokenAddress": "0x7C87cc813Ce92D384c437C263E9FB2E7F945188E", + "pool": { + "address": "0x48A148B6EFAD4D59225034f1A243cea734e67bB0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x6f93AD7963BBdD8C655A0C819B9b79347EE04b70", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xB359155378FF5E2837f12ed0bee5168123c88ACC" + "tokenAddress": "0xB359155378FF5E2837f12ed0bee5168123c88ACC", + "pool": { + "address": "0x6f93AD7963BBdD8C655A0C819B9b79347EE04b70", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0xC026ae03C857093979872C665b13dBBA83B55987", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x9Ded28d9EC69F97efd718CE768dc39D78fd014F8" + "tokenAddress": "0x9Ded28d9EC69F97efd718CE768dc39D78fd014F8", + "pool": { + "address": "0xC026ae03C857093979872C665b13dBBA83B55987", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x2bc58Bf0705f24200c19cF4248E4580d03C44EB8", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x3b4F8E846437c7CacE31080E6c9DFC455C1DBE77" + "tokenAddress": "0x3b4F8E846437c7CacE31080E6c9DFC455C1DBE77", + "pool": { + "address": "0x2bc58Bf0705f24200c19cF4248E4580d03C44EB8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x98A6F5ae745934ba25FF67B1e59C502b97ff1Cc3", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xC52F506591eb89c04620D47B895d5f951efAd4b4" + "tokenAddress": "0xC52F506591eb89c04620D47B895d5f951efAd4b4", + "pool": { + "address": "0x98A6F5ae745934ba25FF67B1e59C502b97ff1Cc3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x70f30536699c7180C53Ae9e7f64c06c5E7164960", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x4d8E5D0c79B02A37074025B4C10854df01f33a3F" + "tokenAddress": "0x4d8E5D0c79B02A37074025B4C10854df01f33a3F", + "pool": { + "address": "0x70f30536699c7180C53Ae9e7f64c06c5E7164960", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x13C4D04ED1Cba19391bD8E9F8F13B261340F474d", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x1bA642B2f27E45d730ff20714B17309644274167" + "tokenAddress": "0x1bA642B2f27E45d730ff20714B17309644274167", + "pool": { + "address": "0x13C4D04ED1Cba19391bD8E9F8F13B261340F474d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x7c8d25EF1cE7A5d342A3889DE9BB59939d67DFf8", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x72cc27124EA2d36AC13D502C7EBdF28cEF90c31c" + "tokenAddress": "0x72cc27124EA2d36AC13D502C7EBdF28cEF90c31c", + "pool": { + "address": "0x7c8d25EF1cE7A5d342A3889DE9BB59939d67DFf8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0xf1B85dEC561bfe9fC61BD758e533B85a7108634e", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x6F7408DAc37a36cD35B5c3Bc2829f60C30E83315" + "tokenAddress": "0x6F7408DAc37a36cD35B5c3Bc2829f60C30E83315", + "pool": { + "address": "0xf1B85dEC561bfe9fC61BD758e533B85a7108634e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0xf8678aC9b6b0d6ff9243F88060f595d4771a5E04", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x3D83b2253a523a211cF5679Fea1D10A58b408177" + "tokenAddress": "0x3D83b2253a523a211cF5679Fea1D10A58b408177", + "pool": { + "address": "0xf8678aC9b6b0d6ff9243F88060f595d4771a5E04", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x8f3829fCB1cD380746F1643Bfaf6aC8CA9960426", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x1f88af31101d9eAFBe5B9Dd627beb4b3010b8c54" + "tokenAddress": "0x1f88af31101d9eAFBe5B9Dd627beb4b3010b8c54", + "pool": { + "address": "0x8f3829fCB1cD380746F1643Bfaf6aC8CA9960426", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x3eC718a22B268d7d9Ce27D2dcAB791174D515920", - "poolType": "lockRelease", "symbol": "SHIB", - "tokenAddress": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE" + "tokenAddress": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "pool": { + "address": "0x3eC718a22B268d7d9Ce27D2dcAB791174D515920", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x4f36762E13b6df9e717BfC82EB750a5d86393553", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x7627D9C9b045A26672D57741C896B2A48844168D" + "tokenAddress": "0x7627D9C9b045A26672D57741C896B2A48844168D", + "pool": { + "address": "0x4f36762E13b6df9e717BfC82EB750a5d86393553", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polkadot-mainnet-astar": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x4Ba40931F99188af67262109FBaB2A39de8D82BA", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xf7bd92DcAad1E095f4f1f454eBEa99C2a96429e9" + "tokenAddress": "0xf7bd92DcAad1E095f4f1f454eBEa99C2a96429e9", + "pool": { + "address": "0x4Ba40931F99188af67262109FBaB2A39de8D82BA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x0CBA02AC9C24Fe7b38123976c85Fe03Bbf4C5081", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0x13c24A28F2b1EEF8A657f661396545683D74e9e0" + "tokenAddress": "0x13c24A28F2b1EEF8A657f661396545683D74e9e0", + "pool": { + "address": "0x0CBA02AC9C24Fe7b38123976c85Fe03Bbf4C5081", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "xdai-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SHIBA INU", - "poolAddress": "0x25679A2879F6abb919c2dda665ce929D9A5214A8", - "poolType": "burnMint", "symbol": "SHIB", - "tokenAddress": "0xAE2e513aC868D27Bf8d697d165bB2e91C1AEA0F0" + "tokenAddress": "0xAE2e513aC868D27Bf8d697d165bB2e91C1AEA0F0", + "pool": { + "address": "0x25679A2879F6abb919c2dda665ce929D9A5214A8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SHIPA": { @@ -5078,19 +7292,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Shipa", - "poolAddress": "0x54169D9660C21A83C68eb7AEd04AE87ff1b69D5c", - "poolType": "burnMint", "symbol": "SHIPA", - "tokenAddress": "0x74B017277BFFC58BE2D4d61097A69d584dcaF32F" + "tokenAddress": "0x74B017277BFFC58BE2D4d61097A69d584dcaF32F", + "pool": { + "address": "0x54169D9660C21A83C68eb7AEd04AE87ff1b69D5c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Shipa", - "poolAddress": "0x67A3B613b2398b43E0B12DD6a07B30cDaCB6A61d", - "poolType": "lockRelease", "symbol": "SHIPA", - "tokenAddress": "0x632d1FF1fB27d88EDeDB90e70bFC094D7932A0ad" + "tokenAddress": "0x632d1FF1fB27d88EDeDB90e70bFC094D7932A0ad", + "pool": { + "address": "0x67A3B613b2398b43E0B12DD6a07B30cDaCB6A61d", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SHIRO": { @@ -5098,19 +7320,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Shiro Neko", - "poolAddress": "0x8fd996312CA11849A562C78885021148F25a9841", - "poolType": "lockRelease", "symbol": "SHIRO", - "tokenAddress": "0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058" + "tokenAddress": "0xb0AC2b5a73da0e67A8e5489Ba922B3f8d582e058", + "pool": { + "address": "0x8fd996312CA11849A562C78885021148F25a9841", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Shiro Neko", - "poolAddress": "0x26a90cEeFfDfe7CD30913108C99872130c7FEE38", - "poolType": "burnMint", "symbol": "SHIRO", - "tokenAddress": "0x15DD0588Dc6C75783B28905d416aE24fa234Fb60" + "tokenAddress": "0x15DD0588Dc6C75783B28905d416aE24fa234Fb60", + "pool": { + "address": "0x26a90cEeFfDfe7CD30913108C99872130c7FEE38", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SILO": { @@ -5118,37 +7348,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Silo Token", - "poolAddress": "0x3Fa5329dB787ac51D61DcaB9a588ceA106ad593C", - "poolType": "burnMint", "symbol": "SILO", - "tokenAddress": "0x77EEe23630deC10e96C5A8F731A9cF46FCC8CD6f" + "tokenAddress": "0x77EEe23630deC10e96C5A8F731A9cF46FCC8CD6f", + "pool": { + "address": "0x3Fa5329dB787ac51D61DcaB9a588ceA106ad593C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Silo Token", - "poolAddress": "0x76A82571FC85817CEEeDff3Bf71bE3c076668A14", - "poolType": "burnMint", "symbol": "SILO", - "tokenAddress": "0x09f569AF991c730Cae05a392bae6490558eF2214" + "tokenAddress": "0x09f569AF991c730Cae05a392bae6490558eF2214", + "pool": { + "address": "0x76A82571FC85817CEEeDff3Bf71bE3c076668A14", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Silo Token", - "poolAddress": "0x95842Bb96cECfe77e8AC07BA6e6bA948B745CCCd", - "poolType": "lockRelease", "symbol": "SILO", - "tokenAddress": "0xF0B2dd79324A66d2108C961d680F7616E1486bB0" + "tokenAddress": "0xF0B2dd79324A66d2108C961d680F7616E1486bB0", + "pool": { + "address": "0x95842Bb96cECfe77e8AC07BA6e6bA948B745CCCd", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Silo Token", - "poolAddress": "0x527a8902DB7548353EAf08b6522686509e32B1FE", - "poolType": "burnMint", "symbol": "SILO", - "tokenAddress": "0xb098AFC30FCE67f1926e735Db6fDadFE433E61db" + "tokenAddress": "0xb098AFC30FCE67f1926e735Db6fDadFE433E61db", + "pool": { + "address": "0x527a8902DB7548353EAf08b6522686509e32B1FE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "sINV": { @@ -5156,37 +7402,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Staked Inv", - "poolAddress": "0xaCDD3f0a2bC4e61ae5cd2b96BF87CCC04aa15DCc", - "poolType": "burnMint", "symbol": "sINV", - "tokenAddress": "0x4C7b266B4bf0A8758fa85E69292eE55c212236cF" + "tokenAddress": "0x4C7b266B4bf0A8758fa85E69292eE55c212236cF", + "pool": { + "address": "0xaCDD3f0a2bC4e61ae5cd2b96BF87CCC04aa15DCc", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked Inv", - "poolAddress": "0xE8E17C4E16EDE9ED62580b48bf784b71197279b8", - "poolType": "burnMint", "symbol": "sINV", - "tokenAddress": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773" + "tokenAddress": "0x8Bbd036d018657E454F679E7C4726F7a8ECE2773", + "pool": { + "address": "0xE8E17C4E16EDE9ED62580b48bf784b71197279b8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Staked Inv", - "poolAddress": "0x57500aB5b2b6B5c652B3816E0D53705a7D84F060", - "poolType": "burnMint", "symbol": "sINV", - "tokenAddress": "0x1992AF61FBf8ee38741bcc57d636CAA22A1a7702" + "tokenAddress": "0x1992AF61FBf8ee38741bcc57d636CAA22A1a7702", + "pool": { + "address": "0x57500aB5b2b6B5c652B3816E0D53705a7D84F060", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Staked Inv", - "poolAddress": "0xF57fc17729Bd2bcD1e1342917B160eB4b69EE89A", - "poolType": "lockRelease", "symbol": "sINV", - "tokenAddress": "0x08d23468A467d2bb86FaE0e32F247A26C7E2e994" + "tokenAddress": "0x08d23468A467d2bb86FaE0e32F247A26C7E2e994", + "pool": { + "address": "0xF57fc17729Bd2bcD1e1342917B160eB4b69EE89A", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SKYA": { @@ -5194,37 +7456,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Sekuya", - "poolAddress": "0x48C4215ccb6Fa0974F7e0383b965959D0e944311", - "poolType": "burnMint", "symbol": "SKYA", - "tokenAddress": "0x84E9aaE2081AD3135Ec82496c31e5658A31B9756" + "tokenAddress": "0x84E9aaE2081AD3135Ec82496c31e5658A31B9756", + "pool": { + "address": "0x48C4215ccb6Fa0974F7e0383b965959D0e944311", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Sekuya", - "poolAddress": "0xcf9f8A4697510B69ABc3303521FC9d8f68fB689d", - "poolType": "burnMint", "symbol": "SKYA", - "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9" + "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", + "pool": { + "address": "0xcf9f8A4697510B69ABc3303521FC9d8f68fB689d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sekuya", - "poolAddress": "0x78f6EB041A85eF3c1a1dC02C57b6beBfcAcBabbf", - "poolType": "burnMint", "symbol": "SKYA", - "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9" + "tokenAddress": "0x623cD3a3EdF080057892aaF8D773Bbb7A5C9b6e9", + "pool": { + "address": "0x78f6EB041A85eF3c1a1dC02C57b6beBfcAcBabbf", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sekuya Multiverse", - "poolAddress": "0x285f961842Da90AcFef2f2ab622854a0BFf12F9a", - "poolType": "burnMint", "symbol": "SKYA", - "tokenAddress": "0x71b690adae1eba2e1A5d8a7b51a037b39A4CF007" + "tokenAddress": "0x71b690adae1eba2e1A5d8a7b51a037b39A4CF007", + "pool": { + "address": "0x285f961842Da90AcFef2f2ab622854a0BFf12F9a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SNOW": { @@ -5232,28 +7510,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Snow Ball", - "poolAddress": "0x5e2E4A679e9e6c484c1095388A8F829851901746", - "poolType": "burnMint", "symbol": "SNOW", - "tokenAddress": "0x19E846C0341260f516b441e0b72a078218f514b0" + "tokenAddress": "0x19E846C0341260f516b441e0b72a078218f514b0", + "pool": { + "address": "0x5e2E4A679e9e6c484c1095388A8F829851901746", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Snow Ball", - "poolAddress": "0xa0fFE2d845aeE8dE1DbD652881D8CAb3607fd0d5", - "poolType": "burnMint", "symbol": "SNOW", - "tokenAddress": "0xD62cf77508B80d5776aaAC9CA06227fF84cC845c" + "tokenAddress": "0xD62cf77508B80d5776aaAC9CA06227fF84cC845c", + "pool": { + "address": "0xa0fFE2d845aeE8dE1DbD652881D8CAb3607fd0d5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Snow Ball", - "poolAddress": "0xE3C8b709C43c4Fa4D2535f354e28e6FFC2614b69", - "poolType": "lockRelease", "symbol": "SNOW", - "tokenAddress": "0x2778f7E40D90DB18203Ec31C9c5F84fde6cf6763" + "tokenAddress": "0x2778f7E40D90DB18203Ec31C9c5F84fde6cf6763", + "pool": { + "address": "0xE3C8b709C43c4Fa4D2535f354e28e6FFC2614b69", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SOIL": { @@ -5261,19 +7551,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Soil", - "poolAddress": "0xF3BD0793FAD8b24B7ba58956dE9DE305D34B9098", - "poolType": "burnMint", "symbol": "SOIL", - "tokenAddress": "0x54991328Ab43c7D5d31C19d1B9fa048E77B5cd16" + "tokenAddress": "0x54991328Ab43c7D5d31C19d1B9fa048E77B5cd16", + "pool": { + "address": "0xF3BD0793FAD8b24B7ba58956dE9DE305D34B9098", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Soil", - "poolAddress": "0xb88d671611d6F517d5D94193da4d5B0dB79E3A0C", - "poolType": "lockRelease", "symbol": "SOIL", - "tokenAddress": "0x43C73b90E0C2A355784dCf0Da12f477729b31e77" + "tokenAddress": "0x43C73b90E0C2A355784dCf0Da12f477729b31e77", + "pool": { + "address": "0xb88d671611d6F517d5D94193da4d5B0dB79E3A0C", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SolvBTC": { @@ -5281,163 +7579,235 @@ "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0xc929ad75B72593967DE83E7F7Cda0493458261D9", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0xbc78D84Ba0c46dFe32cf2895a19939c86b81a777" + "tokenAddress": "0xbc78D84Ba0c46dFe32cf2895a19939c86b81a777", + "pool": { + "address": "0xc929ad75B72593967DE83E7F7Cda0493458261D9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x0a12ec21c43ab2b4f69693Da1b0149e7652689c0", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x0a12ec21c43ab2b4f69693Da1b0149e7652689c0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x4aae823a6a0b376De6A78e74eCC5b079d38cBCf7" + "tokenAddress": "0x4aae823a6a0b376De6A78e74eCC5b079d38cBCf7", + "pool": { + "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x4f628aF99578da6A481851779Fa297A35500C173", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x3647c54c4c2C65bC7a2D63c0Da2809B399DBBDC0" + "tokenAddress": "0x3647c54c4c2C65bC7a2D63c0Da2809B399DBBDC0", + "pool": { + "address": "0x4f628aF99578da6A481851779Fa297A35500C173", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x2315f2A36af9dd75B7a4E1c6c53B11767eBfb750", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x3B86Ad95859b6AB773f55f8d94B4b9d443EE931f" + "tokenAddress": "0x3B86Ad95859b6AB773f55f8d94B4b9d443EE931f", + "pool": { + "address": "0x2315f2A36af9dd75B7a4E1c6c53B11767eBfb750", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0xf49f81b3d2F2a79b706621FA2D5934136352140c", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3" + "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3", + "pool": { + "address": "0xf49f81b3d2F2a79b706621FA2D5934136352140c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0xb5829e1f8078860969950852546B947f37855ef1", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0xb5829e1f8078860969950852546B947f37855ef1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0xCd627aA160A6fA45Eb793D19Ef54f5062F20f33f", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x74eD17608cc2B5f30a59d6aF07C9aD1B1aB3A5b1" + "tokenAddress": "0x74eD17608cc2B5f30a59d6aF07C9aD1B1aB3A5b1", + "pool": { + "address": "0xCd627aA160A6fA45Eb793D19Ef54f5062F20f33f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0xFC361d7443B3E19F3720462d07480a03d60BB620", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3" + "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3", + "pool": { + "address": "0xFC361d7443B3E19F3720462d07480a03d60BB620", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x3300f27EDEeEB59CC4C4203785406cBEAfEC8dF3", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x7A56E1C57C7475CCf742a1832B028F0456652F97" + "tokenAddress": "0x7A56E1C57C7475CCf742a1832B028F0456652F97", + "pool": { + "address": "0x3300f27EDEeEB59CC4C4203785406cBEAfEC8dF3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x0809FC59B735e0aa90448514bBbEe0C75A080475", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3" + "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3", + "pool": { + "address": "0x0809FC59B735e0aa90448514bBbEe0C75A080475", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x4bc35816c1D0B911940894ccd5121eC64Ffd69eb", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3" + "tokenAddress": "0xaE4EFbc7736f963982aACb17EFA37fCBAb924cB3", + "pool": { + "address": "0x4bc35816c1D0B911940894ccd5121eC64Ffd69eb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sei-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "SolvBTC", - "poolAddress": "2a6KLcDkvoTVWmPDQhc15earc6hU4uwEyBQrmRfcBon4", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "SoLvHDFVstC74Jr9eNLTDoG4goSUsn1RENmjNtFKZvW" + "tokenAddress": "SoLvHDFVstC74Jr9eNLTDoG4goSUsn1RENmjNtFKZvW", + "pool": { + "address": "2a6KLcDkvoTVWmPDQhc15earc6hU4uwEyBQrmRfcBon4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x6c2310D68F21C024FF66Cc52e65220112F35DC32", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Solv BTC", - "poolAddress": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73", - "poolType": "burnMint", "symbol": "SolvBTC", - "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77" + "tokenAddress": "0x541FD749419CA806a8bc7da8ac23D346f2dF8B77", + "pool": { + "address": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SolvBTC.BERA": { @@ -5445,37 +7815,53 @@ "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Bera Vault", - "poolAddress": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299", - "poolType": "burnMint", "symbol": "SolvBTC.BERA", - "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B" + "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B", + "pool": { + "address": "0xF8AE5209DE22dbd06Dace938934b0D75B5E80299", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Bera Vault", - "poolAddress": "0x42e15ab6098716f3Ae67e0Ff69C64b5a47304406", - "poolType": "burnMint", "symbol": "SolvBTC.BERA", - "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B" + "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B", + "pool": { + "address": "0x42e15ab6098716f3Ae67e0Ff69C64b5a47304406", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Bera Vault", - "poolAddress": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118", - "poolType": "burnMint", "symbol": "SolvBTC.BERA", - "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B" + "tokenAddress": "0x0F6f337B09cb5131cF0ce9df3Beb295b8e728F3B", + "pool": { + "address": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Bera Vault", - "poolAddress": "0xD4304D2D5C9cdF63124fD2A6C814f6b4F85925D9", - "poolType": "burnMint", "symbol": "SolvBTC.BERA", - "tokenAddress": "0xE7C253EAD50976Caf7b0C2cbca569146A7741B50" + "tokenAddress": "0xE7C253EAD50976Caf7b0C2cbca569146A7741B50", + "pool": { + "address": "0xD4304D2D5C9cdF63124fD2A6C814f6b4F85925D9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SolvBTC.JUP": { @@ -5483,37 +7869,53 @@ "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Jupiter", - "poolAddress": "0xb655EEd4AD8A1A7011c6C431DaE8b55a19a508B9", - "poolType": "burnMint", "symbol": "SolvBTC.JUP", - "tokenAddress": "0x6b062AA7F5FC52b530Cb13967aE2E6bc0D8Dd3E4" + "tokenAddress": "0x6b062AA7F5FC52b530Cb13967aE2E6bc0D8Dd3E4", + "pool": { + "address": "0xb655EEd4AD8A1A7011c6C431DaE8b55a19a508B9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Jupiter", - "poolAddress": "0x48731cF7e84dc94C5f84577882c14Be11a5B7456", - "poolType": "burnMint", "symbol": "SolvBTC.JUP", - "tokenAddress": "0x38a001e57430f781404ffF7a81DE4Bd67d1f6117" + "tokenAddress": "0x38a001e57430f781404ffF7a81DE4Bd67d1f6117", + "pool": { + "address": "0x48731cF7e84dc94C5f84577882c14Be11a5B7456", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "SolvBTC.JUP", - "poolAddress": "HMDSmmuupoWwe9TV3nZ3qmPqAKL2tU7udghJzCywckgM", - "poolType": "burnMint", "symbol": "SolvBTCJUP", - "tokenAddress": "SoLvzL3ZVjofmNB5LYFrf94QtNhMUSea4DawFhnAau8" + "tokenAddress": "SoLvzL3ZVjofmNB5LYFrf94QtNhMUSea4DawFhnAau8", + "pool": { + "address": "HMDSmmuupoWwe9TV3nZ3qmPqAKL2tU7udghJzCywckgM", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SolvBTC Jupiter", - "poolAddress": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73", - "poolType": "burnMint", "symbol": "SolvBTC.JUP", - "tokenAddress": "0xAffEb8576b927050f5a3B6fbA43F360D2883A118" + "tokenAddress": "0xAffEb8576b927050f5a3B6fbA43F360D2883A118", + "pool": { + "address": "0x62FD93Fc58D94eE253542ECD5C23467F65dCdB73", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "STABLE": { @@ -5521,28 +7923,40 @@ "allowListEnabled": false, "decimals": 18, "name": "STABLE", - "poolAddress": "0x7169054A07c8946E45728CDe01Fee68bab5BEB82", - "poolType": "burnMint", "symbol": "STABLE", - "tokenAddress": "0x8bF75bc68FD337dfd8186d731Df8b3C2CB14B9E6" + "tokenAddress": "0x8bF75bc68FD337dfd8186d731Df8b3C2CB14B9E6", + "pool": { + "address": "0x7169054A07c8946E45728CDe01Fee68bab5BEB82", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "STABLE", - "poolAddress": "0xD5B44D00A3670533c17b6BE38156C0b1bBdBe90A", - "poolType": "burnMint", "symbol": "STABLE", - "tokenAddress": "0x666966Ef3925B1c92fa355FDA9722899f3e73451" + "tokenAddress": "0x666966Ef3925B1c92fa355FDA9722899f3e73451", + "pool": { + "address": "0xD5B44D00A3670533c17b6BE38156C0b1bBdBe90A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "STABLE", - "poolAddress": "0x581CED7408860a33E47CE6cA93e2cbB4bB48c9C7", - "poolType": "burnMint", "symbol": "STABLE", - "tokenAddress": "0x60b9C41d99FE3Eb64Ecc1344baD31D87f1bceD6D" + "tokenAddress": "0x60b9C41d99FE3Eb64Ecc1344baD31D87f1bceD6D", + "pool": { + "address": "0x581CED7408860a33E47CE6cA93e2cbB4bB48c9C7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "STABUL": { @@ -5550,28 +7964,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Stabull Finance", - "poolAddress": "0x500F6D4948Aac25074690a1c42Ae267b41a73326", - "poolType": "burnMint", "symbol": "STABUL", - "tokenAddress": "0x6722F882cc3A1B1034893eFA9764397C88897892" + "tokenAddress": "0x6722F882cc3A1B1034893eFA9764397C88897892", + "pool": { + "address": "0x500F6D4948Aac25074690a1c42Ae267b41a73326", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stabull Finance", - "poolAddress": "0xd2D62AB60A53Bad539CD8e43121c624B246F6302", - "poolType": "burnMint", "symbol": "STABUL", - "tokenAddress": "0x6A43795941113c2F58EB487001f4f8eE74b6938A" + "tokenAddress": "0x6A43795941113c2F58EB487001f4f8eE74b6938A", + "pool": { + "address": "0xd2D62AB60A53Bad539CD8e43121c624B246F6302", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stabull Finance", - "poolAddress": "0x057aDAdDa0C63fE48A41dEFFb13B07528b1Bee3b", - "poolType": "burnMint", "symbol": "STABUL", - "tokenAddress": "0xC4420347a4791832bb7b16bF070D5C017D9fABC4" + "tokenAddress": "0xC4420347a4791832bb7b16bF070D5C017D9fABC4", + "pool": { + "address": "0x057aDAdDa0C63fE48A41dEFFb13B07528b1Bee3b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "stBTC": { @@ -5579,19 +8005,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Lorenzo stBTC", - "poolAddress": "0x4B8BdCAdbDbb20330a6f90C8c8B1BA2E363E9BE8", - "poolType": "burnMint", "symbol": "stBTC", - "tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3" + "tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "pool": { + "address": "0x4B8BdCAdbDbb20330a6f90C8c8B1BA2E363E9BE8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Lorenzo stBTC", - "poolAddress": "0x20282C8e5d2d44BaC0E37A3C78a18b3f78EE1d86", - "poolType": "burnMint", "symbol": "stBTC", - "tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3" + "tokenAddress": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "pool": { + "address": "0x20282C8e5d2d44BaC0E37A3C78a18b3f78EE1d86", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "STBU": { @@ -5599,37 +8033,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Stobox Token v.2", - "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", - "poolType": "lockRelease", "symbol": "STBU", - "tokenAddress": "0xb0c4080a8Fa7afa11a09473f3be14d44AF3f8743" + "tokenAddress": "0xb0c4080a8Fa7afa11a09473f3be14d44AF3f8743", + "pool": { + "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Stobox Token v.3", - "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", - "poolType": "burnMint", "symbol": "STBU", - "tokenAddress": "0x1cb9bD2c6E7F4A7DE3778547d46C8D4c22abC093" + "tokenAddress": "0x1cb9bD2c6E7F4A7DE3778547d46C8D4c22abC093", + "pool": { + "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stobox Token v.2", - "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", - "poolType": "lockRelease", "symbol": "STBU", - "tokenAddress": "0xa6422E3E219ee6d4C1B18895275FE43556fd50eD" + "tokenAddress": "0xa6422E3E219ee6d4C1B18895275FE43556fd50eD", + "pool": { + "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Stobox Token v.2", - "poolAddress": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", - "poolType": "lockRelease", "symbol": "STBU", - "tokenAddress": "0xcf403036bc139d30080D2Cf0F5b48066F98191bB" + "tokenAddress": "0xcf403036bc139d30080D2Cf0F5b48066F98191bB", + "pool": { + "address": "0x44e77d8C6Bb9999B036a6F084005E48928d18C74", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "stTAO": { @@ -5637,37 +8087,53 @@ "allowListEnabled": false, "decimals": 9, "name": "Tensorplex Staked TAO", - "poolAddress": "0x4F3eF0574095DeE6f216b9dD9f21Bfb0466a4CCD", - "poolType": "burnMint", "symbol": "stTAO", - "tokenAddress": "0x886C0677D7BB7272C7eD8878dc03EF357aFbb5B5" + "tokenAddress": "0x886C0677D7BB7272C7eD8878dc03EF357aFbb5B5", + "pool": { + "address": "0x4F3eF0574095DeE6f216b9dD9f21Bfb0466a4CCD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 9, "name": "Tensorplex Staked TAO", - "poolAddress": "0x43Fadc7B2929078F0f318E0bEC6b31dC2bF1C309", - "poolType": "burnMint", "symbol": "stTAO", - "tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6" + "tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6", + "pool": { + "address": "0x43Fadc7B2929078F0f318E0bEC6b31dC2bF1C309", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 9, "name": "Tensorplex Staked TAO", - "poolAddress": "0x46083b69F70dDDbd1212e3AAc566DC3D8AdAc4C4", - "poolType": "burnMint", "symbol": "stTAO", - "tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6" + "tokenAddress": "0x806041B6473DA60abbe1b256d9A2749A151be6C6", + "pool": { + "address": "0x46083b69F70dDDbd1212e3AAc566DC3D8AdAc4C4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Tensorplex Staked TAO", - "poolAddress": "0x5c16671f7360E32982691c6A14353D8186C57A59", - "poolType": "lockRelease", "symbol": "stTAO", - "tokenAddress": "0xB60acD2057067DC9ed8c083f5aa227a244044fD6" + "tokenAddress": "0xB60acD2057067DC9ed8c083f5aa227a244044fD6", + "pool": { + "address": "0x5c16671f7360E32982691c6A14353D8186C57A59", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "suBTC": { @@ -5675,28 +8141,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Sumerian BTC", - "poolAddress": "0xd9193B4aFfA057Fa78E0b5C60fAf1bC09df3708b", - "poolType": "burnMint", "symbol": "suBTC", - "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711" + "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711", + "pool": { + "address": "0xd9193B4aFfA057Fa78E0b5C60fAf1bC09df3708b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian BTC", - "poolAddress": "0x13d579664bAAb9ADcC4c6B19956f7b7EADBB036f", - "poolType": "burnMint", "symbol": "suBTC", - "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711" + "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711", + "pool": { + "address": "0x13d579664bAAb9ADcC4c6B19956f7b7EADBB036f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian BTC", - "poolAddress": "0x5Be290d68db372cc487B1356649D906efC4f58Ca", - "poolType": "burnMint", "symbol": "suBTC", - "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711" + "tokenAddress": "0xe85411C030fB32A9D8b14Bbbc6CB19417391F711", + "pool": { + "address": "0x5Be290d68db372cc487B1356649D906efC4f58Ca", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "suETH": { @@ -5704,28 +8182,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Sumerian ETH", - "poolAddress": "0x70544B4E4FcEd9c61BCdb6E0fFa69002cC4d374f", - "poolType": "burnMint", "symbol": "suETH", - "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0" + "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0", + "pool": { + "address": "0x70544B4E4FcEd9c61BCdb6E0fFa69002cC4d374f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian ETH", - "poolAddress": "0xafc7E9fDD13AFF368B1d8d16e04f4977e68128E1", - "poolType": "burnMint", "symbol": "suETH", - "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0" + "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0", + "pool": { + "address": "0xafc7E9fDD13AFF368B1d8d16e04f4977e68128E1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian ETH", - "poolAddress": "0xE58eDBb7Fdd5f2DD5cfAD2667e5D570E1a0a6A84", - "poolType": "burnMint", "symbol": "suETH", - "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0" + "tokenAddress": "0x1c22531AA9747d76fFF8F0A43b37954ca67d28e0", + "pool": { + "address": "0xE58eDBb7Fdd5f2DD5cfAD2667e5D570E1a0a6A84", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "sUSD1+": { @@ -5733,28 +8223,40 @@ "allowListEnabled": false, "decimals": 18, "name": "sUSD1+", - "poolAddress": "0xa58B73a340f3c0d9d65Be8cAaB6C5EfB9331F775", - "poolType": "burnMint", "symbol": "sUSD1+", - "tokenAddress": "0x4F2760B32720F013E900DC92F65480137391199b" + "tokenAddress": "0x4F2760B32720F013E900DC92F65480137391199b", + "pool": { + "address": "0xa58B73a340f3c0d9d65Be8cAaB6C5EfB9331F775", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "sUSD1+", - "poolAddress": "0xBe4fbD980712a800f5e0e7C15a70e097efaCD331", - "poolType": "burnMint", "symbol": "sUSD1+", - "tokenAddress": "0x8F18f2C97d2f5EC0e1d5B91c1D2ce245a9151972" + "tokenAddress": "0x8F18f2C97d2f5EC0e1d5B91c1D2ce245a9151972", + "pool": { + "address": "0xBe4fbD980712a800f5e0e7C15a70e097efaCD331", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plume-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "sUSD1+", - "poolAddress": "0xfF36edF970d1DC4504f608bB02D0Ae0a8a80312A", - "poolType": "burnMint", "symbol": "sUSD1+", - "tokenAddress": "0x8F18f2C97d2f5EC0e1d5B91c1D2ce245a9151972" + "tokenAddress": "0x8F18f2C97d2f5EC0e1d5B91c1D2ce245a9151972", + "pool": { + "address": "0xfF36edF970d1DC4504f608bB02D0Ae0a8a80312A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "suUSD": { @@ -5762,28 +8264,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Sumerian USD", - "poolAddress": "0x6C8Fee5E05E99db417DFEe0B96275B065eA20EAe", - "poolType": "burnMint", "symbol": "suUSD", - "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8" + "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8", + "pool": { + "address": "0x6C8Fee5E05E99db417DFEe0B96275B065eA20EAe", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian USD", - "poolAddress": "0x69797ECF7ACd6CA73a8c42cfb4268F7572047346", - "poolType": "burnMint", "symbol": "suUSD", - "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8" + "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8", + "pool": { + "address": "0x69797ECF7ACd6CA73a8c42cfb4268F7572047346", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Sumerian USD", - "poolAddress": "0x67F4e731f446Ff76716E7E3c955CD5A75C1B1787", - "poolType": "burnMint", "symbol": "suUSD", - "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8" + "tokenAddress": "0x8BF591Eae535f93a242D5A954d3Cde648b48A5A8", + "pool": { + "address": "0x67F4e731f446Ff76716E7E3c955CD5A75C1B1787", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "SWCH": { @@ -5791,19 +8305,27 @@ "allowListEnabled": false, "decimals": 18, "name": "SwissCheese Token", - "poolAddress": "0xbB4bd217aF1161F973792250B59404363866B687", - "poolType": "burnMint", "symbol": "SWCH", - "tokenAddress": "0x280aB1903a06B5badEC1D204F450Ee8D068405d8" + "tokenAddress": "0x280aB1903a06B5badEC1D204F450Ee8D068405d8", + "pool": { + "address": "0xbB4bd217aF1161F973792250B59404363866B687", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "SwissCheese Token", - "poolAddress": "0x5521ceE67Ce3C7ED0e0477522a0085E1af2810d1", - "poolType": "lockRelease", "symbol": "SWCH", - "tokenAddress": "0x3ce1327867077B551ae9A6987bF10C9fd08edCE1" + "tokenAddress": "0x3ce1327867077B551ae9A6987bF10C9fd08edCE1", + "pool": { + "address": "0x5521ceE67Ce3C7ED0e0477522a0085E1af2810d1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "SXT": { @@ -5811,19 +8333,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Space and Time", - "poolAddress": "0x44E787a3a81bbc03Ec2C2a7aDADC5aE7Bc925Db9", - "poolType": "burnMint", "symbol": "SXT", - "tokenAddress": "0xA2c22252cDc8b7cDdEe1B0b2E242818509fCf7b8" + "tokenAddress": "0xA2c22252cDc8b7cDdEe1B0b2E242818509fCf7b8", + "pool": { + "address": "0x44E787a3a81bbc03Ec2C2a7aDADC5aE7Bc925Db9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Space and Time", - "poolAddress": "0x19EE30DE803b921Ecbba64eD1787Cda6d536c26a", - "poolType": "lockRelease", "symbol": "SXT", - "tokenAddress": "0xE6Bfd33F52d82Ccb5b37E16D3dD81f9FFDAbB195" + "tokenAddress": "0xE6Bfd33F52d82Ccb5b37E16D3dD81f9FFDAbB195", + "pool": { + "address": "0x19EE30DE803b921Ecbba64eD1787Cda6d536c26a", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "syrupUSDC": { @@ -5831,55 +8361,66 @@ "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0x660975730059246A68521a3e2FBD4740173100f5", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "0x41CA7586cC1311807B4605fBB748a3B8862b42b5" + "tokenAddress": "0x41CA7586cC1311807B4605fBB748a3B8862b42b5", + "pool": { + "address": "0x660975730059246A68521a3e2FBD4740173100f5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0xA36955b2Bc12Aee77FF7519482D16C7B86DBe42a", - "poolType": "burnMint", - "symbol": "syrupUSDC", - "tokenAddress": "0x660975730059246A68521a3e2FBD4740173100f5" - }, - "ethereum-mainnet-ink-1": { - "allowListEnabled": false, - "decimals": 6, - "name": "Syrup USDC", - "poolAddress": "0xa3361ff0d9cA1cBA31335a3280eECe47f1a08F43", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "0x3c23e6FB09064e9A64829Fa8FEe27Ad19A27Bfa9" + "tokenAddress": "0x660975730059246A68521a3e2FBD4740173100f5", + "pool": { + "address": "0xA36955b2Bc12Aee77FF7519482D16C7B86DBe42a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0x966519C334D895121B61584CAdeBc15571b62983", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "0xd31dB306E5D79F0018Ac92e08492284201493EA1" + "tokenAddress": "0xd31dB306E5D79F0018Ac92e08492284201493EA1", + "pool": { + "address": "0x966519C334D895121B61584CAdeBc15571b62983", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0x20B79D39Bd44dEee4F89B1e9d0e3b945fde06491", - "poolType": "lockRelease", "symbol": "syrupUSDC", - "tokenAddress": "0x80ac24aA929eaF5013f6436cdA2a7ba190f5Cc0b" + "tokenAddress": "0x80ac24aA929eaF5013f6436cdA2a7ba190f5Cc0b", + "pool": { + "address": "0x20B79D39Bd44dEee4F89B1e9d0e3b945fde06491", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "HrTBpF3LqSxXnjnYdR4htnBLyMHNZ6eNaDZGPundvHbm", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "AvZZF1YaZDziPY2RCK4oJrRVrbN3mTD9NL24hPeaZeUj" + "tokenAddress": "AvZZF1YaZDziPY2RCK4oJrRVrbN3mTD9NL24hPeaZeUj", + "pool": { + "address": "HrTBpF3LqSxXnjnYdR4htnBLyMHNZ6eNaDZGPundvHbm", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "syrupUSDT": { @@ -5887,46 +8428,53 @@ "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT", - "poolAddress": "0xEAA7E1f805747ae29d5618b568d1b044A8b37A01", - "poolType": "burnMint", - "symbol": "syrupUSDT", - "tokenAddress": "0x8E9d4cEa39299323FE8eda678cAD449718556c4e" - }, - "ethereum-mainnet-ink-1": { - "allowListEnabled": false, - "decimals": 6, - "name": "Syrup USDT", - "poolAddress": "0x543164a51401a468B6Fee3F7db27a30871448ff5", - "poolType": "burnMint", "symbol": "syrupUSDT", - "tokenAddress": "0x8A76fe7fA6da27f85a626c5C53730B38D13603d7" + "tokenAddress": "0x8E9d4cEa39299323FE8eda678cAD449718556c4e", + "pool": { + "address": "0xEAA7E1f805747ae29d5618b568d1b044A8b37A01", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT", - "poolAddress": "0x0aA145a62153190B8f0D3cA00c441e451529f755", - "poolType": "burnMint", "symbol": "syrupUSDT", - "tokenAddress": "0x051665f2455116e929b9972c36d23070F5054Ce0" + "tokenAddress": "0x051665f2455116e929b9972c36d23070F5054Ce0", + "pool": { + "address": "0x0aA145a62153190B8f0D3cA00c441e451529f755", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT", - "poolAddress": "0xDE76A096C5eadDdf97Af3fE15ee49d32AEDa9822", - "poolType": "lockRelease", "symbol": "syrupUSDT", - "tokenAddress": "0x356B8d89c1e1239Cbbb9dE4815c39A1474d5BA7D" + "tokenAddress": "0x356B8d89c1e1239Cbbb9dE4815c39A1474d5BA7D", + "pool": { + "address": "0xDE76A096C5eadDdf97Af3fE15ee49d32AEDa9822", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT", - "poolAddress": "0x1d952d2f6eE86Ef4940Fa648aA7477c8fF175F09", - "poolType": "burnMint", "symbol": "syrupUSDT", - "tokenAddress": "0xC4374775489CB9C56003BF2C9b12495fC64F0771" + "tokenAddress": "0xC4374775489CB9C56003BF2C9b12495fC64F0771", + "pool": { + "address": "0x1d952d2f6eE86Ef4940Fa648aA7477c8fF175F09", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "tETH": { @@ -5934,46 +8482,66 @@ "allowListEnabled": false, "decimals": 18, "name": "Treehouse ETH", - "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", - "poolType": "burnMint", "symbol": "tETH", - "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003" + "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003", + "pool": { + "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse ETH", - "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", - "poolType": "burnMint", "symbol": "tETH", - "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003" + "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003", + "pool": { + "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse ETH", - "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", - "poolType": "burnMint", "symbol": "tETH", - "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003" + "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003", + "pool": { + "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse ETH", - "poolAddress": "0x8113f001eA456759264317007220cBc939cA8435", - "poolType": "lockRelease", "symbol": "tETH", - "tokenAddress": "0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8" + "tokenAddress": "0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8", + "pool": { + "address": "0x8113f001eA456759264317007220cBc939cA8435", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "tac-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse ETH", - "poolAddress": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", - "poolType": "burnMint", "symbol": "tETH", - "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003" + "tokenAddress": "0xd09ACb80C1E8f2291862c4978A008791c9167003", + "pool": { + "address": "0x0C3603B0c299e680A5Af4dC83a962d66E852903B", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "THE": { @@ -5981,28 +8549,40 @@ "allowListEnabled": false, "decimals": 18, "name": "THENA", - "poolAddress": "0x93cAb7CB2a07477A557754a81971EFeDFa04EdAA", - "poolType": "burnMint", "symbol": "THE", - "tokenAddress": "0x9d94A7fF461e83F161c8c040E78557e31d8Cba72" + "tokenAddress": "0x9d94A7fF461e83F161c8c040E78557e31d8Cba72", + "pool": { + "address": "0x93cAb7CB2a07477A557754a81971EFeDFa04EdAA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "THENA", - "poolAddress": "0xECFF67559c0583027A5fbd85136E33bC4D66eeA0", - "poolType": "lockRelease", "symbol": "THE", - "tokenAddress": "0xF4C8E32EaDEC4BFe97E0F595AdD0f4450a863a11" + "tokenAddress": "0xF4C8E32EaDEC4BFe97E0F595AdD0f4450a863a11", + "pool": { + "address": "0xECFF67559c0583027A5fbd85136E33bC4D66eeA0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "THENA", - "poolAddress": "0x2a9f896660E802c59a3178b2E8CB7FBaCCC04e86", - "poolType": "burnMint", "symbol": "THE", - "tokenAddress": "0x27DfD2D7b85e0010542da35C6EBcD59E45fc949D" + "tokenAddress": "0x27DfD2D7b85e0010542da35C6EBcD59E45fc949D", + "pool": { + "address": "0x2a9f896660E802c59a3178b2E8CB7FBaCCC04e86", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "TRADE": { @@ -6010,37 +8590,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Polytrade", - "poolAddress": "0x7eb93143612CFB6Dda216EBE481e510F3A3b645f", - "poolType": "burnMint", "symbol": "TRADE", - "tokenAddress": "0xb75Ba7eF520A5Bd0A5d01108060bE269642c4601" + "tokenAddress": "0xb75Ba7eF520A5Bd0A5d01108060bE269642c4601", + "pool": { + "address": "0x7eb93143612CFB6Dda216EBE481e510F3A3b645f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Polytrade", - "poolAddress": "0x2bFBA5bD4b0b1180A135Bb6a74423cCB429Fc744", - "poolType": "burnMint", "symbol": "TRADE", - "tokenAddress": "0x72e1868f8EB8f9fb86455c10e72aa4b24774a5a3" + "tokenAddress": "0x72e1868f8EB8f9fb86455c10e72aa4b24774a5a3", + "pool": { + "address": "0x2bFBA5bD4b0b1180A135Bb6a74423cCB429Fc744", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Polytrade", - "poolAddress": "0x520763c1eBDa04DAC9a6077a41CCC703FF22a9f8", - "poolType": "lockRelease", "symbol": "TRADE", - "tokenAddress": "0x6e5970DBd6fc7eb1f29C6D2eDF2bC4c36124C0C1" + "tokenAddress": "0x6e5970DBd6fc7eb1f29C6D2eDF2bC4c36124C0C1", + "pool": { + "address": "0x520763c1eBDa04DAC9a6077a41CCC703FF22a9f8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Polytrade (PoS)", - "poolAddress": "0xbE787bD62c85c2dCB92B662A5d77348eA9A7e461", - "poolType": "lockRelease", "symbol": "TRADE", - "tokenAddress": "0x692AC1e363ae34b6B489148152b12e2785a3d8d6" + "tokenAddress": "0x692AC1e363ae34b6B489148152b12e2785a3d8d6", + "pool": { + "address": "0xbE787bD62c85c2dCB92B662A5d77348eA9A7e461", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "TREE": { @@ -6048,28 +8644,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Treehouse Token", - "poolAddress": "0x229AE3eC539865444404c666f504Be68CeB81E02", - "poolType": "burnMint", "symbol": "TREE", - "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3" + "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3", + "pool": { + "address": "0x229AE3eC539865444404c666f504Be68CeB81E02", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse Token", - "poolAddress": "0x229AE3eC539865444404c666f504Be68CeB81E02", - "poolType": "burnMint", "symbol": "TREE", - "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3" + "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3", + "pool": { + "address": "0x229AE3eC539865444404c666f504Be68CeB81E02", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Treehouse Token", - "poolAddress": "0x407dBD0170A79Bb62a016d4555C656205BbA8a68", - "poolType": "lockRelease", "symbol": "TREE", - "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3" + "tokenAddress": "0x77146784315Ba81904d654466968e3a7c196d1f3", + "pool": { + "address": "0x407dBD0170A79Bb62a016d4555C656205BbA8a68", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "TURBO": { @@ -6077,19 +8685,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Turbo", - "poolAddress": "0xeA771EB68CcfE489cdA2713F4248CD512c880453", - "poolType": "burnMint", "symbol": "TURBO", - "tokenAddress": "0x620a8b7Bd26b21d0d053ee9a05A593f35Bf37d8e" + "tokenAddress": "0x620a8b7Bd26b21d0d053ee9a05A593f35Bf37d8e", + "pool": { + "address": "0xeA771EB68CcfE489cdA2713F4248CD512c880453", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Turbo", - "poolAddress": "0x348540aa7b129b0F3c931FEDE811d009E0e18E60", - "poolType": "lockRelease", "symbol": "TURBO", - "tokenAddress": "0xA35923162C49cF95e6BF26623385eb431ad920D3" + "tokenAddress": "0xA35923162C49cF95e6BF26623385eb431ad920D3", + "pool": { + "address": "0x348540aa7b129b0F3c931FEDE811d009E0e18E60", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "TURTLE": { @@ -6097,28 +8713,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Turtle", - "poolAddress": "0x4559605E3003fdA8c059e14aF4f16ba9a004335a", - "poolType": "burnMint", "symbol": "TURTLE", - "tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd" + "tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd", + "pool": { + "address": "0x4559605E3003fdA8c059e14aF4f16ba9a004335a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Turtle", - "poolAddress": "0x7263Bc9f9D2f94e9a3Bcb3EFB40C79C43aC0C647", - "poolType": "burnMint", "symbol": "TURTLE", - "tokenAddress": "0x56aa6D651bfefA9207B35E508716466359BAe8eF" + "tokenAddress": "0x56aa6D651bfefA9207B35E508716466359BAe8eF", + "pool": { + "address": "0x7263Bc9f9D2f94e9a3Bcb3EFB40C79C43aC0C647", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Turtle", - "poolAddress": "0xD3bD7Db2B40DBEE54cA70a34921fde8A8D2f8BbB", - "poolType": "burnMint", "symbol": "TURTLE", - "tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd" + "tokenAddress": "0x66fD8de541c0594b4DccdFc13Bf3a390E50d3Afd", + "pool": { + "address": "0xD3bD7Db2B40DBEE54cA70a34921fde8A8D2f8BbB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "una.USDC": { @@ -6126,19 +8754,27 @@ "allowListEnabled": false, "decimals": 6, "name": "una USDC", - "poolAddress": "0xcfd0637093193ac909f74F9de95c2d4B92Df23c4", - "poolType": "burnMint", "symbol": "una.USDC", - "tokenAddress": "0x66cC3FD40612F9c591F977ce026Ef1C79520C472" + "tokenAddress": "0x66cC3FD40612F9c591F977ce026Ef1C79520C472", + "pool": { + "address": "0xcfd0637093193ac909f74F9de95c2d4B92Df23c4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "una USDC", - "poolAddress": "0x0c118bE814166fb720f8DDEB119F53B622787918", - "poolType": "burnMint", "symbol": "una.USDC", - "tokenAddress": "0xcdf764933B9a9ebB2C5DA904B9715F3Cf981572A" + "tokenAddress": "0xcdf764933B9a9ebB2C5DA904B9715F3Cf981572A", + "pool": { + "address": "0x0c118bE814166fb720f8DDEB119F53B622787918", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "una.WEMIX": { @@ -6146,64 +8782,92 @@ "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0x2F15F2C9d1E0945C37E3EDCD8914BBd0067e46C8", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x9f1453d0fADC73aE12d4e1BD8311AA2463AE7d0D" + "tokenAddress": "0x9f1453d0fADC73aE12d4e1BD8311AA2463AE7d0D", + "pool": { + "address": "0x2F15F2C9d1E0945C37E3EDCD8914BBd0067e46C8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0x2b975918e804803615131e7de2ca1645B1719ec9", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x98169bF9B7a44EDaD372364063b897E16eBba88e" + "tokenAddress": "0x98169bF9B7a44EDaD372364063b897E16eBba88e", + "pool": { + "address": "0x2b975918e804803615131e7de2ca1645B1719ec9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0x65030ab42BAd6E140ADD01D6998DC7d2eCb34089", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x89F590D8f9c1a306AEB4E939Dc923C80144998Cd" + "tokenAddress": "0x89F590D8f9c1a306AEB4E939Dc923C80144998Cd", + "pool": { + "address": "0x65030ab42BAd6E140ADD01D6998DC7d2eCb34089", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0xFaF7992eB0A1eff0C4cdB070c12512f18E0D6079", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x6ff638E48247b003E003aa3EeDDdF97BaA8f3B64" + "tokenAddress": "0x6ff638E48247b003E003aa3EeDDdF97BaA8f3B64", + "pool": { + "address": "0xFaF7992eB0A1eff0C4cdB070c12512f18E0D6079", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0x9F02c16190691CC4ceCD53A9267Bd24e37B6d06C", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x2624Bd0094f474713AC9c634b37A5ebef4e0b1FE" + "tokenAddress": "0x2624Bd0094f474713AC9c634b37A5ebef4e0b1FE", + "pool": { + "address": "0x9F02c16190691CC4ceCD53A9267Bd24e37B6d06C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0xeDb68F273FC95e1DB951580957c3fE49FF0A8cF7", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0x186d65ceD0693382713437e34EF8723FD6aa9A1E" + "tokenAddress": "0x186d65ceD0693382713437e34EF8723FD6aa9A1E", + "pool": { + "address": "0xeDb68F273FC95e1DB951580957c3fE49FF0A8cF7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "una WEMIX", - "poolAddress": "0x3B1f09b0Ac19fCd3F03A0Bdda70F65Db01626de1", - "poolType": "burnMint", "symbol": "una.WEMIX", - "tokenAddress": "0xF500208d9aB68FeA3cc41bd107811e809C0B6B83" + "tokenAddress": "0xF500208d9aB68FeA3cc41bd107811e809C0B6B83", + "pool": { + "address": "0x3B1f09b0Ac19fCd3F03A0Bdda70F65Db01626de1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "uniBTC": { @@ -6211,181 +8875,261 @@ "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x80ab5314fa37a0c2e10bc490acd7ca83898119accaebac9e7bba61f1f164b8ed", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xf764dbfd6999067ac052a8e722ae359bec389bd7dba19ead586801b99b81b075" + "tokenAddress": "0xf764dbfd6999067ac052a8e722ae359bec389bd7dba19ead586801b99b81b075", + "pool": { + "address": "0x80ab5314fa37a0c2e10bc490acd7ca83898119accaebac9e7bba61f1f164b8ed", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x097Ae334B90F98637899cfcaa7980B13aa497e5E", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90" + "tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90", + "pool": { + "address": "0x097Ae334B90F98637899cfcaa7980B13aa497e5E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x085e4ADc459699a8Ec60c6da5CBdBF715f23831f", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x236f8c0a61dA474dB21B693fB2ea7AAB0c803894" + "tokenAddress": "0x236f8c0a61dA474dB21B693fB2ea7AAB0c803894", + "pool": { + "address": "0x085e4ADc459699a8Ec60c6da5CBdBF715f23831f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bsquared-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x4b75FE6e4a53A510AbC39c7328B0b06E74a3F624", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0xF0b508c7fF394B94BCb73C19007C7102C2d9aa19", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a" + "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a", + "pool": { + "address": "0xF0b508c7fF394B94BCb73C19007C7102C2d9aa19", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "corn-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x085BE2297c1A1A2C2a119b731AF887DD0119D035", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a" + "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a", + "pool": { + "address": "0x085BE2297c1A1A2C2a119b731AF887DD0119D035", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x02042Df6933a2Fb8a7Bfc92117146E7CCf6b260f", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x02042Df6933a2Fb8a7Bfc92117146E7CCf6b260f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0xBf977109Ae4Fd840d23b19454DF1C7414168E9F9", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d" + "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d", + "pool": { + "address": "0xBf977109Ae4Fd840d23b19454DF1C7414168E9F9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x85d4CfFC273b0766bFa1402d890c71DF167CC2AD", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x85d4CfFC273b0766bFa1402d890c71DF167CC2AD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x5A1764254dE62FC55a08E907c712565545615dDb", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a" + "tokenAddress": "0x6B2a01A5f79dEb4c2f3c0eDa7b01DF456FbD726a", + "pool": { + "address": "0x5A1764254dE62FC55a08E907c712565545615dDb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e" + "tokenAddress": "0x93919784C523f39CACaa98Ee0a9d96c3F32b593e", + "pool": { + "address": "0x99D94f528CeA3eE1791ab7B476A1FACb4297CA17", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-unichain-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x30782053a09599eE44C054075A36c4CA1B224Be5", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d" + "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d", + "pool": { + "address": "0x30782053a09599eE44C054075A36c4CA1B224Be5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-xlayer-1": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x5aE00CB3da6d11d525dd7AE288673f3BCB992526", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d" + "tokenAddress": "0xd3c8dA379d71a33BfEE8875F87Ac2748bEB1d58d", + "pool": { + "address": "0x5aE00CB3da6d11d525dd7AE288673f3BCB992526", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0xda57087632409A30876e978450De23A2f55ADA91", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18" + "tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18", + "pool": { + "address": "0xda57087632409A30876e978450De23A2f55ADA91", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x1689C22eD5435e49071CFc208D1Ac6F2A2274490", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0x004E9C3EF86bc1ca1f0bB5C7662861Ee93350568" + "tokenAddress": "0x004E9C3EF86bc1ca1f0bB5C7662861Ee93350568", + "pool": { + "address": "0x1689C22eD5435e49071CFc208D1Ac6F2A2274490", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "A8qxRKqAftbqatfegeiq3yTVmVTPS9DimGWHtgzjC417", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "uniBKsEV37qLRFZD7v3Z9drX6voyiCM8WcaePqeSSLc" + "tokenAddress": "uniBKsEV37qLRFZD7v3Z9drX6voyiCM8WcaePqeSSLc", + "pool": { + "address": "A8qxRKqAftbqatfegeiq3yTVmVTPS9DimGWHtgzjC417", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0x22134617Ae0f6CA8D89451e5Ae091c94f7D743DC", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90" + "tokenAddress": "0xC3827A4BC8224ee2D116637023b124CED6db6e90", + "pool": { + "address": "0x22134617Ae0f6CA8D89451e5Ae091c94f7D743DC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "tac-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "uniBTC", - "poolAddress": "0xA7ee087c961A22aa25eDdaB9c0b43b4a39EAd5ea", - "poolType": "burnMint", "symbol": "uniBTC", - "tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18" + "tokenAddress": "0xF9775085d726E782E83585033B58606f7731AB18", + "pool": { + "address": "0xA7ee087c961A22aa25eDdaB9c0b43b4a39EAd5ea", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "UNIO": { @@ -6393,28 +9137,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Unio Coin", - "poolAddress": "0x5eD97E6938D4074CdFC83a310de2525F0a4e6c73", - "poolType": "burnMint", "symbol": "UNIO", - "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab" + "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab", + "pool": { + "address": "0x5eD97E6938D4074CdFC83a310de2525F0a4e6c73", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Unio Coin", - "poolAddress": "0x8AA50883f5f62EB081D16c90FdAdAD9E227206c6", - "poolType": "burnMint", "symbol": "UNIO", - "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab" + "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab", + "pool": { + "address": "0x8AA50883f5f62EB081D16c90FdAdAD9E227206c6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Unio Coin", - "poolAddress": "0xc576D83eA5D672E220f7B099827E73685Fde5B73", - "poolType": "burnMint", "symbol": "UNIO", - "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab" + "tokenAddress": "0x01aaC2b594F7bdBeC740F0F1AA22910EbB4B74Ab", + "pool": { + "address": "0xc576D83eA5D672E220f7B099827E73685Fde5B73", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USAGI": { @@ -6422,19 +9178,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Usagi", - "poolAddress": "0x7c458207b7b0E4Eca3c54f3353b2dB00A81a04aA", - "poolType": "burnMint", "symbol": "USAGI", - "tokenAddress": "0x760295AA772671f21cd0046d094938d09f2b380D" + "tokenAddress": "0x760295AA772671f21cd0046d094938d09f2b380D", + "pool": { + "address": "0x7c458207b7b0E4Eca3c54f3353b2dB00A81a04aA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Usagi", - "poolAddress": "0xC488be11a33c20bd21f7940D4a5937E8A8c81fEc", - "poolType": "lockRelease", "symbol": "USAGI", - "tokenAddress": "0x3a1adB8Ef2a37Fe127Aa62B2Fc0399a4A6AD9D79" + "tokenAddress": "0x3a1adB8Ef2a37Fe127Aa62B2Fc0399a4A6AD9D79", + "pool": { + "address": "0xC488be11a33c20bd21f7940D4a5937E8A8c81fEc", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "USD+": { @@ -6442,28 +9206,40 @@ "allowListEnabled": false, "decimals": 6, "name": "USD+", - "poolAddress": "0x1a1079CBA4bf83Ef2D90997360231F9599800fB5", - "poolType": "burnMint", "symbol": "USD+", - "tokenAddress": "0xfc90518D5136585ba45e34ED5E1D108BD3950CFa" + "tokenAddress": "0xfc90518D5136585ba45e34ED5E1D108BD3950CFa", + "pool": { + "address": "0x1a1079CBA4bf83Ef2D90997360231F9599800fB5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "USD+", - "poolAddress": "0x1e88d63b8805C36f96C530c37bde113361aC6Cc0", - "poolType": "burnMint", "symbol": "USD+", - "tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3" + "tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3", + "pool": { + "address": "0x1e88d63b8805C36f96C530c37bde113361aC6Cc0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD+", - "poolAddress": "0xCE8342b8eFd4D804B97Df92bC6bb930099098fDE", - "poolType": "burnMint", "symbol": "USD+", - "tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3" + "tokenAddress": "0x98C6616F1CC0D3E938A16200830DD55663dd7DD3", + "pool": { + "address": "0xCE8342b8eFd4D804B97Df92bC6bb930099098fDE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USD0": { @@ -6471,28 +9247,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Usual USD", - "poolAddress": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA", - "poolType": "burnMint", "symbol": "USD0", - "tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270" + "tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270", + "pool": { + "address": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Usual USD", - "poolAddress": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA", - "poolType": "burnMint", "symbol": "USD0", - "tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270" + "tokenAddress": "0x758a3e0b1F842C9306B783f8A4078C6C8C03a270", + "pool": { + "address": "0x8d20F295518B12E63F65aB7cf930AD88e8d17cbA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Usual USD", - "poolAddress": "0xC3d39B77032114c8884276Dae0F02cdF75162782", - "poolType": "lockRelease", "symbol": "USD0", - "tokenAddress": "0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5" + "tokenAddress": "0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5", + "pool": { + "address": "0xC3d39B77032114c8884276Dae0F02cdF75162782", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "USD1": { @@ -6500,91 +9288,131 @@ "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0xEC1276CA704c612A28cb2C873dEdCEba97F65cED", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0xEC1276CA704c612A28cb2C873dEdCEba97F65cED", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "aptos-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "World Liberty Financial USD", - "poolAddress": "0x1eb155d08acc900954b6ccee01659b390399ae81ad4c582b73d41374c475caf6", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2" + "tokenAddress": "0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2", + "pool": { + "address": "0x1eb155d08acc900954b6ccee01659b390399ae81ad4c582b73d41374c475caf6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0xCe3f7378aE409e1CE0dD6fFA70ab683326b73f04", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d" + "tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "pool": { + "address": "0xCe3f7378aE409e1CE0dD6fFA70ab683326b73f04", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0xf58A2e303e519f6A1b772137995871967e30391a", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0xf58A2e303e519f6A1b772137995871967e30391a", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-xlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0x500E140CCb4Ca279aCF585cc53C4613a7D7BCF27", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0x500E140CCb4Ca279aCF585cc53C4613a7D7BCF27", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0x36a72eD0096B414521C45E3ddC9ed657d1D9c141", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d" + "tokenAddress": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d", + "pool": { + "address": "0x36a72eD0096B414521C45E3ddC9ed657d1D9c141", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "World Liberty Financial USD", - "poolAddress": "0x5258D5BEB800DF857D8A4e808EE0C8c7bF567e0E", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0x5258D5BEB800DF857D8A4e808EE0C8c7bF567e0E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "morph-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0x258Fc917b8de98b4aA0d38776E95dcce9e7EC8aC", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0x258Fc917b8de98b4aA0d38776E95dcce9e7EC8aC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plume-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial USD", - "poolAddress": "0x770318D51052871DeF5Eb5c452F4fd28B7960C4e", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61" + "tokenAddress": "0x111111d2bf19e43C34263401e0CAd979eD1cdb61", + "pool": { + "address": "0x770318D51052871DeF5Eb5c452F4fd28B7960C4e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "World Liberty Financial USD", - "poolAddress": "B4PB9qWUW6R18Gbpk5Km8mJ2GoQgCcVpgdqhU7C2n8fh", - "poolType": "burnMint", "symbol": "USD1", - "tokenAddress": "USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB" + "tokenAddress": "USD1ttGY1N17NEEHLmELoaybftRBUSErhqYiQzvEmuB", + "pool": { + "address": "B4PB9qWUW6R18Gbpk5Km8mJ2GoQgCcVpgdqhU7C2n8fh", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDC": { @@ -6592,118 +9420,170 @@ "allowListEnabled": false, "decimals": 6, "name": "Bridged USDC", - "poolAddress": "0x0A3d8eD619ECF1E984488710eB2cEcE4FDbd83CA", - "poolType": "burnMint", "symbol": "USDC.e", - "tokenAddress": "0x1f3AA82227281cA364bFb3d253B0f1af1Da6473E" + "tokenAddress": "0x1f3AA82227281cA364bFb3d253B0f1af1Da6473E", + "pool": { + "address": "0x0A3d8eD619ECF1E984488710eB2cEcE4FDbd83CA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "avalanche-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0x966519C334D895121B61584CAdeBc15571b62983", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" + "tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "pool": { + "address": "0x966519C334D895121B61584CAdeBc15571b62983", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", - "poolType": "burnMint", "symbol": "USDC", - "tokenAddress": "0xf8C374CE88A3BE3d374e8888349C7768B607c755" + "tokenAddress": "0xf8C374CE88A3BE3d374e8888349C7768B607c755", + "pool": { + "address": "0xff170aD8f1d86eFAC90CA7a2E1204bA64aC5e0f9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 6, "name": "Bridged USDC (BOB)", - "poolAddress": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", - "poolType": "burnMint", "symbol": "USDC.e", - "tokenAddress": "0xe75D0fB2C24A55cA1e3F96781a2bCC7bdba058F0" + "tokenAddress": "0xe75D0fB2C24A55cA1e3F96781a2bCC7bdba058F0", + "pool": { + "address": "0x554652E7F10fB8aa3e12226213c6826F98B09CF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0x40530f5305d6Fd6912925C5ec2C36453B85d8F5f", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831" + "tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "pool": { + "address": "0x40530f5305d6Fd6912925C5ec2C36453B85d8F5f", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913" + "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "pool": { + "address": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0xE67E30B1b4F80A35852488757C3efc093903651A", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85" + "tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "pool": { + "address": "0xE67E30B1b4F80A35852488757C3efc093903651A", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-mainnet-unichain-1": { "allowListEnabled": false, "decimals": 6, "name": "USDC", - "poolAddress": "0xf58A2e303e519f6A1b772137995871967e30391a", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x078D782b760474a361dDA0AF3839290b0EF57AD6" + "tokenAddress": "0x078D782b760474a361dDA0AF3839290b0EF57AD6", + "pool": { + "address": "0xf58A2e303e519f6A1b772137995871967e30391a", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0x03D19033AdA17750D5BC2d8E325337D0748F9FEF", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + "tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "pool": { + "address": "0x03D19033AdA17750D5BC2d8E325337D0748F9FEF", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359" + "tokenAddress": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "pool": { + "address": "0x60A97bd9ACf755954Ff0fE85837224f2920a57F3", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C", - "poolType": "burnMint", "symbol": "USDC", - "tokenAddress": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc" + "tokenAddress": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc", + "pool": { + "address": "0xe26D9c68cF6d284367C5e90EC834C6Ec0051f73C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "Gog2wHG7KS8St26d1fPrgNFtta6HK8Xza7SSHzgbWPr5", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" + "tokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "pool": { + "address": "Gog2wHG7KS8St26d1fPrgNFtta6HK8Xza7SSHzgbWPr5", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "wemix-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Bridged USDC", - "poolAddress": "0x5937c7096b054564c6F17B7e61D9Abf1256B0593", - "poolType": "burnMint", "symbol": "USDC.e", - "tokenAddress": "0x44bB111010DfFfb3695F9a1B66aa879976199e7b" + "tokenAddress": "0x44bB111010DfFfb3695F9a1B66aa879976199e7b", + "pool": { + "address": "0x5937c7096b054564c6F17B7e61D9Abf1256B0593", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDf": { @@ -6711,37 +9591,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Falcon USD", - "poolAddress": "0x4b66431F9E5f5Cd026ae48E617902207b43048D4", - "poolType": "burnMint", "symbol": "USDf", - "tokenAddress": "0xb3b02E4A9Fb2bD28CC2ff97B0aB3F6B3Ec1eE9D2" + "tokenAddress": "0xb3b02E4A9Fb2bD28CC2ff97B0aB3F6B3Ec1eE9D2", + "pool": { + "address": "0x4b66431F9E5f5Cd026ae48E617902207b43048D4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Falcon USD", - "poolAddress": "0x33570299e0D73f07c82d005DE75De54cf4582FCC", - "poolType": "burnMint", "symbol": "USDf", - "tokenAddress": "0x8210c0634AB8f273806e4b7866E9Db353773c44B" + "tokenAddress": "0x8210c0634AB8f273806e4b7866E9Db353773c44B", + "pool": { + "address": "0x33570299e0D73f07c82d005DE75De54cf4582FCC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Falcon USD", - "poolAddress": "0xEcf61D6fAA3B9faE7195AF3bc9891450C1733f78", - "poolType": "lockRelease", "symbol": "USDf", - "tokenAddress": "0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2" + "tokenAddress": "0xFa2B947eEc368f42195f24F36d2aF29f7c24CeC2", + "pool": { + "address": "0xEcf61D6fAA3B9faE7195AF3bc9891450C1733f78", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "xdc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Falcon USD", - "poolAddress": "0x33570299e0D73f07c82d005DE75De54cf4582FCC", - "poolType": "burnMint", "symbol": "USDf", - "tokenAddress": "0x8210c0634AB8f273806e4b7866E9Db353773c44B" + "tokenAddress": "0x8210c0634AB8f273806e4b7866E9Db353773c44B", + "pool": { + "address": "0x33570299e0D73f07c82d005DE75De54cf4582FCC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDFI": { @@ -6749,48 +9645,40 @@ "allowListEnabled": false, "decimals": 18, "name": "USDFI", - "poolAddress": "0xDB96110a1d4c447055c71227CE5908AF859c1015", - "poolType": "burnMint", "symbol": "USDFI", - "tokenAddress": "0xC9f5955f6dA20e44A068f3d58FB2404f56f9a6f2" + "tokenAddress": "0xC9f5955f6dA20e44A068f3d58FB2404f56f9a6f2", + "pool": { + "address": "0xDB96110a1d4c447055c71227CE5908AF859c1015", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "USDFI", - "poolAddress": "0x28B57510597c1629ec76f95A2DAcD579e18f1436", - "poolType": "burnMint", "symbol": "USDFI", - "tokenAddress": "0x249c48e22E95514Ca975De31f473F30c2f3C0916" + "tokenAddress": "0x249c48e22E95514Ca975De31f473F30c2f3C0916", + "pool": { + "address": "0x28B57510597c1629ec76f95A2DAcD579e18f1436", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "USDFI", - "poolAddress": "0xE727F7975bEF908C49D0591724669F05F7dAd811", - "poolType": "burnMint", "symbol": "USDFI", - "tokenAddress": "0xa7a0B3Fe94121E366D774d60D075F6386F750884" - } - }, - "USDi": { - "ethereum-mainnet-base-1": { - "allowListEnabled": false, - "decimals": 6, - "name": "USDi Coin", - "poolAddress": "0x752D89df6C2D3F9D2c8CDaA1b44876D2809fAD07", - "poolType": "burnMint", - "symbol": "USDi", - "tokenAddress": "0x30CC9e55bf820f1A9D5d33C7fef8797a434d0b46" - }, - "mainnet": { - "allowListEnabled": false, - "decimals": 6, - "name": "USDi Coin", - "poolAddress": "0x44384E067bf22145746A7637B68A5D465425171d", - "poolType": "lockRelease", - "symbol": "USDi", - "tokenAddress": "0xAf1157149ff040DAd186a0142a796d901bEF1cf1" + "tokenAddress": "0xa7a0B3Fe94121E366D774d60D075F6386F750884", + "pool": { + "address": "0xE727F7975bEF908C49D0591724669F05F7dAd811", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDM": { @@ -6798,64 +9686,92 @@ "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x6a1252A0e3100fDFC3Fe65aE43D6829b6d2125Ba", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0x6a1252A0e3100fDFC3Fe65aE43D6829b6d2125Ba", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x0723Bd0CE11cCFFa3D8bd1649011195fD38EF21E", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0x0723Bd0CE11cCFFa3D8bd1649011195fD38EF21E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x4109f7E577596432458F8D4DC2E78637428D5614", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0x4109f7E577596432458F8D4DC2E78637428D5614", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x028A4Caa308883170C024AcfC367B8B627EceeCb", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0x028A4Caa308883170C024AcfC367B8B627EceeCb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x70139902BC147754221FD59DFf8f8A16b34876F8", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x7715c206A14Ac93Cb1A6c0316A6E5f8aD7c9Dc31" + "tokenAddress": "0x7715c206A14Ac93Cb1A6c0316A6E5f8aD7c9Dc31", + "pool": { + "address": "0x70139902BC147754221FD59DFf8f8A16b34876F8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0x4109f7E577596432458F8D4DC2E78637428D5614", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0x4109f7E577596432458F8D4DC2E78637428D5614", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Mountain Protocol USD", - "poolAddress": "0xA2492283F3016b078129290BAf5293Aea4f9ae48", - "poolType": "burnMint", "symbol": "USDM", - "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C" + "tokenAddress": "0x59D9356E565Ab3A36dD77763Fc0d87fEaf85508C", + "pool": { + "address": "0xA2492283F3016b078129290BAf5293Aea4f9ae48", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDO": { @@ -6863,37 +9779,53 @@ "allowListEnabled": false, "decimals": 18, "name": "OpenEden Open Dollar", - "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3", - "poolType": "burnMint", "symbol": "USDO", - "tokenAddress": "0x302e52AFf9815B9D1682473DBFB9C74F9B750AA8" + "tokenAddress": "0x302e52AFf9815B9D1682473DBFB9C74F9B750AA8", + "pool": { + "address": "0x500d4882938020E939a5666c1B4200873da7EfD3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "OpenEden Open Dollar", - "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3", - "poolType": "burnMint", "symbol": "USDO", - "tokenAddress": "0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0" + "tokenAddress": "0xaD55aebc9b8c03FC43cd9f62260391c13c23e7c0", + "pool": { + "address": "0x500d4882938020E939a5666c1B4200873da7EfD3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "kaia-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "OpenEden Open Dollar", - "poolAddress": "0x05F8B8bC8026cE0B75c36aBB0e96b6baccCFB018", - "poolType": "burnMint", "symbol": "USDO", - "tokenAddress": "0x87e617C7484aDE79FcD90db58BEB82B057facb48" + "tokenAddress": "0x87e617C7484aDE79FcD90db58BEB82B057facb48", + "pool": { + "address": "0x05F8B8bC8026cE0B75c36aBB0e96b6baccCFB018", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "OpenEden Open Dollar", - "poolAddress": "0x500d4882938020E939a5666c1B4200873da7EfD3", - "poolType": "burnMint", "symbol": "USDO", - "tokenAddress": "0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe" + "tokenAddress": "0x8238884Ec9668Ef77B90C6dfF4D1a9F4F4823BFe", + "pool": { + "address": "0x500d4882938020E939a5666c1B4200873da7EfD3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USDT": { @@ -6901,91 +9833,131 @@ "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0xd7502CaBdb70c79382deF58FB6df3CdA69cb2A1b", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0xd7502CaBdb70c79382deF58FB6df3CdA69cb2A1b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 6, "name": "Tether USD", - "poolAddress": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106", - "poolType": "burnMint", "symbol": "USDT", - "tokenAddress": "0xfe9f969faf8Ad72a83b761138bF25dE87eFF9DD2" + "tokenAddress": "0xfe9f969faf8Ad72a83b761138bF25dE87eFF9DD2", + "pool": { + "address": "0x2c3D51c7B454cB045C8cEc92d2F9E717C7519106", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0xAFEd606Bd2CAb6983fC6F10167c98aaC2173D77f", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0xAFEd606Bd2CAb6983fC6F10167c98aaC2173D77f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-botanix": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0x0EEFa8b75587bcD4A909a0F3c36180D4441481a0", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0x0EEFa8b75587bcD4A909a0F3c36180D4441481a0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "celo-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Tether USD", - "poolAddress": "0x47Db76c9c97F4bcFd54D8872FDb848Cab696092d", - "poolType": "burnMint", - "symbol": "USD₮", - "tokenAddress": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e" + "symbol": "USD\u20ae", + "tokenAddress": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", + "pool": { + "address": "0x47Db76c9c97F4bcFd54D8872FDb848Cab696092d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0xa760D20a91C076A57b270D3F7a3150421ab40591", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0xa760D20a91C076A57b270D3F7a3150421ab40591", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-hashkey-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0x55aeb80Aa6Ab34aA83E1F387903F8Bb2Aa9e2F2d", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0x55aeb80Aa6Ab34aA83E1F387903F8Bb2Aa9e2F2d", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Tether USD", - "poolAddress": "0xa3532633401AbFfbd15e6be825a45FB7F141469B", - "poolType": "lockRelease", "symbol": "USDT", - "tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + "tokenAddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "pool": { + "address": "0xa3532633401AbFfbd15e6be825a45FB7F141469B", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "OpenUSDT", - "poolAddress": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de", - "poolType": "burnMint", "symbol": "oUSDT", - "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189" + "tokenAddress": "0x1217BfE6c773EEC6cc4A38b5Dc45B92292B6E189", + "pool": { + "address": "0x6a21a19aD44542d83F7f7FF45Aa31A62a36200de", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "USELESS": { @@ -6993,19 +9965,27 @@ "allowListEnabled": false, "decimals": 6, "name": "USELESS COIN", - "poolAddress": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda", - "poolType": "burnMint", "symbol": "USELESS", - "tokenAddress": "0xbA38B3C706f7A515Ff7C8Db04Daa0A134eC46D2b" + "tokenAddress": "0xbA38B3C706f7A515Ff7C8Db04Daa0A134eC46D2b", + "pool": { + "address": "0x6378c36C44B28f4d1513e7a5510A8481a23eecda", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USELESS COIN", - "poolAddress": "Aunb4sACHkdsqvb5eDHngkPLNLhnA42YUMosFMYDV5pG", - "poolType": "lockRelease", "symbol": "USELESS", - "tokenAddress": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk" + "tokenAddress": "Dz9mQ9NzkBcCsuGPFJ3r1bS4wgqKMHBPiVuniW8Mbonk", + "pool": { + "address": "Aunb4sACHkdsqvb5eDHngkPLNLhnA42YUMosFMYDV5pG", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "USUAL": { @@ -7013,28 +9993,40 @@ "allowListEnabled": false, "decimals": 18, "name": "USUAL", - "poolAddress": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0", - "poolType": "burnMint", "symbol": "USUAL", - "tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5" + "tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5", + "pool": { + "address": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "USUAL", - "poolAddress": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0", - "poolType": "burnMint", "symbol": "USUAL", - "tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5" + "tokenAddress": "0x4ACD4D03af6F9cc0fB7C5f0868B7b6287D7969c5", + "pool": { + "address": "0x30Ea2d525eF7C234F8AA6E3a8909B88f71244cB0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "USUAL", - "poolAddress": "0x72a0203b731EdECE2DdAa506a048c0378C44366a", - "poolType": "lockRelease", "symbol": "USUAL", - "tokenAddress": "0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E" + "tokenAddress": "0xC4441c2BE5d8fA8126822B9929CA0b81Ea0DE38E", + "pool": { + "address": "0x72a0203b731EdECE2DdAa506a048c0378C44366a", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "USX": { @@ -7042,19 +10034,27 @@ "allowListEnabled": false, "decimals": 6, "name": "USX Stablecoin", - "poolAddress": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", - "poolType": "burnMint", "symbol": "USX", - "tokenAddress": "0xad1493B01ced4fAAc409124E667b95259F12fb05" + "tokenAddress": "0xad1493B01ced4fAAc409124E667b95259F12fb05", + "pool": { + "address": "0x193Beb1E11731B8B740b9fbbB62655553c3b4A25", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "USX", - "poolAddress": "BhqsAa1yib3KqRTDX9WfyuKQtwikoUiDNJTLYgNwBtR6", - "poolType": "lockRelease", "symbol": "USX", - "tokenAddress": "6FrrzDk5mQARGc1TDYoyVnSyRdds1t4PbtohCD6p3tgG" + "tokenAddress": "6FrrzDk5mQARGc1TDYoyVnSyRdds1t4PbtohCD6p3tgG", + "pool": { + "address": "BhqsAa1yib3KqRTDX9WfyuKQtwikoUiDNJTLYgNwBtR6", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "VOOI": { @@ -7062,28 +10062,40 @@ "allowListEnabled": false, "decimals": 18, "name": "VOOI", - "poolAddress": "0x4D275A287B86E423E01CceE66F4e3313B5F47Cf7", - "poolType": "burnMint", "symbol": "VOOI", - "tokenAddress": "0x876cEcb73c9ED1B1526F8e35C6a5a51a31BCF341" + "tokenAddress": "0x876cEcb73c9ED1B1526F8e35C6a5a51a31BCF341", + "pool": { + "address": "0x4D275A287B86E423E01CceE66F4e3313B5F47Cf7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "VOOI", - "poolAddress": "0xE43F2F7A4A6010AC3C07B06081Dfbf0255137912", - "poolType": "burnMint", "symbol": "VOOI", - "tokenAddress": "0xd81a4aDea9932a6BDba0bDBc8C5Fd4C78e5A09f1" + "tokenAddress": "0xd81a4aDea9932a6BDba0bDBc8C5Fd4C78e5A09f1", + "pool": { + "address": "0xE43F2F7A4A6010AC3C07B06081Dfbf0255137912", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "VOOI", - "poolAddress": "0x8B8461F822FDb00943C2c7d42aa17e1CDd5626F1", - "poolType": "lockRelease", "symbol": "VOOI", - "tokenAddress": "0xb31561F0e2aaC72406103b1926356D756F07A481" + "tokenAddress": "0xb31561F0e2aaC72406103b1926356D756F07A481", + "pool": { + "address": "0x8B8461F822FDb00943C2c7d42aa17e1CDd5626F1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "VRTX": { @@ -7091,64 +10103,92 @@ "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0xF68fC9ccE79df9719c9801d345fFA38ecDCcad35", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0xFd91eD44Fc13f7FAFF758FE6d339d5790C4a85eC" + "tokenAddress": "0xFd91eD44Fc13f7FAFF758FE6d339d5790C4a85eC", + "pool": { + "address": "0xF68fC9ccE79df9719c9801d345fFA38ecDCcad35", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0x387E40Ed22Ee3396288c874411B00C48f6978653", - "poolType": "lockRelease", "symbol": "VRTX", - "tokenAddress": "0x95146881b86B3ee99e63705eC87AfE29Fcc044D9" + "tokenAddress": "0x95146881b86B3ee99e63705eC87AfE29Fcc044D9", + "pool": { + "address": "0x387E40Ed22Ee3396288c874411B00C48f6978653", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0xCaf4E8ED1cbdD5FB9B1359e98d9185dafE01B943", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0xFB0c734Fc3008683c5efF45bcf8128836C4D97D0" + "tokenAddress": "0xFB0c734Fc3008683c5efF45bcf8128836C4D97D0", + "pool": { + "address": "0xCaf4E8ED1cbdD5FB9B1359e98d9185dafE01B943", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0xdF7F1eb75E0Ae7E4867F06dF3344abcd852C6D23", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0x6CD20f11470e9C9d1458a69c8f7B330B99577EF9" + "tokenAddress": "0x6CD20f11470e9C9d1458a69c8f7B330B99577EF9", + "pool": { + "address": "0xdF7F1eb75E0Ae7E4867F06dF3344abcd852C6D23", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0x06Aa321d88e5bc62Ca86c54342cAeFa6F19FE526", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0xd0728F5b1F53A834F8dcd1B86f62CeB8726eb0a0" + "tokenAddress": "0xd0728F5b1F53A834F8dcd1B86f62CeB8726eb0a0", + "pool": { + "address": "0x06Aa321d88e5bc62Ca86c54342cAeFa6F19FE526", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sei-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0x826Ba9cF4FE04c73A9750aD88B21b6daCb456516", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0x5B8034F6346A81a1387EA21CDD36c48f6e05eb5f" + "tokenAddress": "0x5B8034F6346A81a1387EA21CDD36c48f6e05eb5f", + "pool": { + "address": "0x826Ba9cF4FE04c73A9750aD88B21b6daCb456516", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Vertex", - "poolAddress": "0x293325B3AacE7322BeB03400e302612A2FC5A4E8", - "poolType": "burnMint", "symbol": "VRTX", - "tokenAddress": "0xAd747e3CF4e31B8897B96C81C6C74152De52f614" + "tokenAddress": "0xAd747e3CF4e31B8897B96C81C6C74152De52f614", + "pool": { + "address": "0x293325B3AacE7322BeB03400e302612A2FC5A4E8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "VSN": { @@ -7156,37 +10196,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Vision", - "poolAddress": "0x649f03D6F7ac74F6C13733212Aa5419c890d2db6", - "poolType": "burnMint", "symbol": "VSN", - "tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753" + "tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753", + "pool": { + "address": "0x649f03D6F7ac74F6C13733212Aa5419c890d2db6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Vision", - "poolAddress": "0x96db781A7EF341dA5ca348Ece4B824b3AdC71D55", - "poolType": "burnMint", "symbol": "VSN", - "tokenAddress": "0x6fBBbD8bFB1cd3986B1D05e7861a0f62F87DB74b" + "tokenAddress": "0x6fBBbD8bFB1cd3986B1D05e7861a0f62F87DB74b", + "pool": { + "address": "0x96db781A7EF341dA5ca348Ece4B824b3AdC71D55", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Vision", - "poolAddress": "0x1bb58BA8B6fc5a779EDB2D6421c330d464183c08", - "poolType": "burnMint", "symbol": "VSN", - "tokenAddress": "0x31185950db028eCFc70DF6a35a4B552462A35773" + "tokenAddress": "0x31185950db028eCFc70DF6a35a4B552462A35773", + "pool": { + "address": "0x1bb58BA8B6fc5a779EDB2D6421c330d464183c08", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Vision", - "poolAddress": "0x3DAa89A5AB49DBa691FEA66EB89aC8Cf8BeE2e35", - "poolType": "burnMint", "symbol": "VSN", - "tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753" + "tokenAddress": "0x699Ccf919C1dfdFa4C374292f42CAdC9899BF753", + "pool": { + "address": "0x3DAa89A5AB49DBa691FEA66EB89aC8Cf8BeE2e35", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "W0G": { @@ -7194,64 +10250,92 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0xF6839B313671daE8c1B6AbCaB4eBd0bF41259187", - "poolType": "lockRelease", "symbol": "W0G", - "tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c" + "tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c", + "pool": { + "address": "0xF6839B313671daE8c1B6AbCaB4eBd0bF41259187", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0x467721aD1f05235b84b6c94E012b12C79d9EbfD7", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "0x2C2d4d99F95643C8EC2EbD1d73a6Fd0273068B1e" + "tokenAddress": "0x2C2d4d99F95643C8EC2EbD1d73a6Fd0273068B1e", + "pool": { + "address": "0x467721aD1f05235b84b6c94E012b12C79d9EbfD7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0x22fF19A7307eee6bd6d38C569f8bcb40fD071Ff4", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "0x418176040912d11d9445dd4AEc322772A42f2a59" + "tokenAddress": "0x418176040912d11d9445dd4AEc322772A42f2a59", + "pool": { + "address": "0x22fF19A7307eee6bd6d38C569f8bcb40fD071Ff4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0x049DF7Ed53037C58BCAB45510c153D5CD5564830", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "0x23cd099eB438CcA50349EE2BC809196b1ae00861" + "tokenAddress": "0x23cd099eB438CcA50349EE2BC809196b1ae00861", + "pool": { + "address": "0x049DF7Ed53037C58BCAB45510c153D5CD5564830", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0xE25a97E9e2f1Eeee81d4a7986A018AC3Ae8D857b", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "0x4C1Dab3Be86347977F3DfC4b9688224ef2272939" + "tokenAddress": "0x4C1Dab3Be86347977F3DfC4b9688224ef2272939", + "pool": { + "address": "0xE25a97E9e2f1Eeee81d4a7986A018AC3Ae8D857b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped 0G", - "poolAddress": "0x4c8A1e94C84f9043E26b3bBFf76F670A91e645A1", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "0xB267Cc10fa4c54dB1fD5A6e9cAFbB98C16cC9b97" + "tokenAddress": "0xB267Cc10fa4c54dB1fD5A6e9cAFbB98C16cC9b97", + "pool": { + "address": "0x4c8A1e94C84f9043E26b3bBFf76F670A91e645A1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Wrapped 0G", - "poolAddress": "4owiysYefgqx68wtTzED1tm6QhtcSKKJBgKmwRMbccNZ", - "poolType": "burnMint", "symbol": "W0G", - "tokenAddress": "gNyJyS9pQt33o4y4L3gdWZAF2XHgPrCBRQuaiCZStMe" + "tokenAddress": "gNyJyS9pQt33o4y4L3gdWZAF2XHgPrCBRQuaiCZStMe", + "pool": { + "address": "4owiysYefgqx68wtTzED1tm6QhtcSKKJBgKmwRMbccNZ", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WAB": { @@ -7259,9 +10343,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped AB", - "poolType": "feeTokenOnly", "symbol": "WAB", - "tokenAddress": "0x51dA03503FBBA94B9d0D88C15690D840F02F15F4" + "tokenAddress": "0x51dA03503FBBA94B9d0D88C15690D840F02F15F4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WAPE": { @@ -7269,9 +10358,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped ApeCoin", - "poolType": "feeTokenOnly", "symbol": "WAPE", - "tokenAddress": "0x48b62137EdfA95a428D35C09E44256a739F6B557" + "tokenAddress": "0x48b62137EdfA95a428D35C09E44256a739F6B557", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WASTR": { @@ -7279,28 +10373,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Astar Token", - "poolAddress": "0x98ef4B1Fe8fe9C73Deb07a77c9f861E8558439d7", - "poolType": "burnMint", "symbol": "ASTR", - "tokenAddress": "0xF27441230EADEaC85B764610325Cc9a0D7859689" + "tokenAddress": "0xF27441230EADEaC85B764610325Cc9a0D7859689", + "pool": { + "address": "0x98ef4B1Fe8fe9C73Deb07a77c9f861E8558439d7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "polkadot-mainnet-astar": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped ASTR", - "poolAddress": "0x99B41d3e1529dF578f02d68c0c11a0Ca89a522d0", - "poolType": "lockRelease", "symbol": "WASTR", - "tokenAddress": "0x37795FdD8C165CaB4D6c05771D564d80439CD093" + "tokenAddress": "0x37795FdD8C165CaB4D6c05771D564d80439CD093", + "pool": { + "address": "0x99B41d3e1529dF578f02d68c0c11a0Ca89a522d0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Astar Token", - "poolAddress": "0x2200B5f4fA30a55359Ef0FaE04890113BD73bd16", - "poolType": "burnMint", "symbol": "ASTR", - "tokenAddress": "0x2CAE934a1e84F693fbb78CA5ED3B0A6893259441" + "tokenAddress": "0x2CAE934a1e84F693fbb78CA5ED3B0A6893259441", + "pool": { + "address": "0x2200B5f4fA30a55359Ef0FaE04890113BD73bd16", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WAVAX": { @@ -7308,9 +10414,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped AVAX", - "poolType": "feeTokenOnly", "symbol": "WAVAX", - "tokenAddress": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7" + "tokenAddress": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBERA": { @@ -7318,9 +10429,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Bera", - "poolType": "feeTokenOnly", "symbol": "WBERA", - "tokenAddress": "0x6969696969696969696969696969696969696969" + "tokenAddress": "0x6969696969696969696969696969696969696969", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBNB": { @@ -7328,17 +10444,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped BNB", - "poolType": "feeTokenOnly", "symbol": "WBNB", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped BNB", - "poolType": "feeTokenOnly", "symbol": "WBNB", - "tokenAddress": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c" + "tokenAddress": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBONE": { @@ -7346,9 +10472,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Shibarium Wrapped BONE", - "poolType": "feeTokenOnly", "symbol": "WBONE", - "tokenAddress": "0xC76F4c819D820369Fb2d7C1531aB3Bb18e6fE8d8" + "tokenAddress": "0xC76F4c819D820369Fb2d7C1531aB3Bb18e6fE8d8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBTC": { @@ -7356,52 +10487,66 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0xfF204e2681A6fA0e2C3FaDe68a1B28fb90E4Fc5F" + "tokenAddress": "0xfF204e2681A6fA0e2C3FaDe68a1B28fb90E4Fc5F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-bsquared-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-merlin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA" + "tokenAddress": "0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Wrapped BTC", - "poolAddress": "0xF6698064776D521b0AFE469F30C40B39B4875b93", - "poolType": "lockRelease", "symbol": "WBTC", - "tokenAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + "tokenAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "pool": { + "address": "0xF6698064776D521b0AFE469F30C40B39B4875b93", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Wrapped Bitcoin", - "poolAddress": "0x57C6e9E48476B4d08CeAc0ba885D34f7dE71F323", - "poolType": "burnMint", - "symbol": "WBTC", - "tokenAddress": "0xCa3Eb64F3DFd7861C76070e3d1492eE5ee20cdC3" - }, - "shibarium-mainnet": { - "allowListEnabled": false, - "decimals": 8, - "name": "SOU Wrapped BTC", - "poolAddress": "0x40cb57c0e25A816C7bD120E1b0403bD30fDf47B2", - "poolType": "burnMint", "symbol": "WBTC", - "tokenAddress": "0x8370b2bC5Ff68C1A9dD75780EC39FE5D52BD8846" + "tokenAddress": "0xCa3Eb64F3DFd7861C76070e3d1492eE5ee20cdC3", + "pool": { + "address": "0x57C6e9E48476B4d08CeAc0ba885D34f7dE71F323", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WBTCN": { @@ -7409,9 +10554,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Bitcorn", - "poolType": "feeTokenOnly", "symbol": "WBTCN", - "tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2" + "tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCELO": { @@ -7419,9 +10569,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Celo", - "poolType": "feeTokenOnly", "symbol": "WCELO", - "tokenAddress": "0x2021B12D8138e2D63cF0895eccABC0DFc92416c6" + "tokenAddress": "0x2021B12D8138e2D63cF0895eccABC0DFc92416c6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCORE": { @@ -7429,9 +10584,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped CORE", - "poolType": "feeTokenOnly", "symbol": "WCORE", - "tokenAddress": "0x40375C92d9FAf44d2f9db9Bd9ba41a3317a2404f" + "tokenAddress": "0x40375C92d9FAf44d2f9db9Bd9ba41a3317a2404f", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCRO": { @@ -7439,9 +10599,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped CRO", - "poolType": "feeTokenOnly", "symbol": "WCRO", - "tokenAddress": "0x5C7F8A570d578ED84E63fdFA7b1eE72dEae1AE23" + "tokenAddress": "0x5C7F8A570d578ED84E63fdFA7b1eE72dEae1AE23", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WECO": { @@ -7449,37 +10614,53 @@ "allowListEnabled": false, "decimals": 18, "name": "WECOIN", - "poolAddress": "0x9766a4A5c1F7Eacc5D9aAc1086aec62137e81596", - "poolType": "lockRelease", "symbol": "WECO", - "tokenAddress": "0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F" + "tokenAddress": "0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F", + "pool": { + "address": "0x9766a4A5c1F7Eacc5D9aAc1086aec62137e81596", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "WECOIN", - "poolAddress": "0xf327989Ad11388B1fd943C29eE12ba0ed06f5180", - "poolType": "burnMint", "symbol": "WECO", - "tokenAddress": "0x44ca3E3649Bf8a905b6B07133BaAc43F1A00fa34" + "tokenAddress": "0x44ca3E3649Bf8a905b6B07133BaAc43F1A00fa34", + "pool": { + "address": "0xf327989Ad11388B1fd943C29eE12ba0ed06f5180", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "WECOIN", - "poolAddress": "0x8aC68225b0E80cF7f16EA67639b455d679a158d7", - "poolType": "burnMint", "symbol": "WECO", - "tokenAddress": "0x54Df3076ac0CdC9bC97fA290AB9c5a88E3D23630" + "tokenAddress": "0x54Df3076ac0CdC9bC97fA290AB9c5a88E3D23630", + "pool": { + "address": "0x8aC68225b0E80cF7f16EA67639b455d679a158d7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "WECOIN", - "poolAddress": "0x6e2910e4eCFE573a8e351AdAe4a0d9F095a793CC", - "poolType": "burnMint", "symbol": "WECO", - "tokenAddress": "0x7200e56E62543Ecdba7a7f60A25e305BB88304B5" + "tokenAddress": "0x7200e56E62543Ecdba7a7f60A25e305BB88304B5", + "pool": { + "address": "0x6e2910e4eCFE573a8e351AdAe4a0d9F095a793CC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WETH": { @@ -7487,272 +10668,430 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x3439153EB7AF838Ad19d56E1571FBD09333C2809" + "tokenAddress": "0x3439153EB7AF838Ad19d56E1571FBD09333C2809", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "Ethereum Token", - "poolAddress": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f", - "poolType": "burnMint", "symbol": "ETH", - "tokenAddress": "0xEf63d4E178b3180BeEc9B0E143e0f37F4c93f4C2" + "tokenAddress": "0xEf63d4E178b3180BeEc9B0E143e0f37F4c93f4C2", + "pool": { + "address": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolAddress": "0xb3deA004d4d23b543934DfFb884d699Ee7C99269", - "poolType": "lockRelease", "symbol": "WETH", - "tokenAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1" + "tokenAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "pool": { + "address": "0xb3deA004d4d23b543934DfFb884d699Ee7C99269", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolAddress": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA", - "poolType": "lockRelease", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4300000000000000000000000000000000000004" + "tokenAddress": "0x4300000000000000000000000000000000000004", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolAddress": "0x538dBDcC6902c3fbE109261833c77FA77e8e7f60", - "poolType": "lockRelease", "symbol": "WETH", - "tokenAddress": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f" + "tokenAddress": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f", + "pool": { + "address": "0x538dBDcC6902c3fbE109261833c77FA77e8e7f60", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolAddress": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA", - "poolType": "lockRelease", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "0x0bEB0e87661a15cEEa56D8B7ED99e583459F48bA", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-polygon-zkevm-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9" + "tokenAddress": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x5300000000000000000000000000000000000004" + "tokenAddress": "0x5300000000000000000000000000000000000004", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xA51894664A773981C6C112C43ce576f315d5b1B6" + "tokenAddress": "0xA51894664A773981C6C112C43ce576f315d5b1B6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-unichain-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-worldchain-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-zircuit-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91" + "tokenAddress": "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "everclear-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "WETH", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x2e31ebD2eB114943630Db6ba8c7f7687bdA5835F" + "tokenAddress": "0x2e31ebD2eB114943630Db6ba8c7f7687bdA5835F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hemi-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "jovay-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xeA29Cbb2808CF848C185E4405Bb002F53f92a241" + "tokenAddress": "0xeA29Cbb2808CF848C185E4405Bb002F53f92a241", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "lisk-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolAddress": "0x011Ef1fe26D20077A59F38e9Ad155b166AD87D40", - "poolType": "lockRelease", "symbol": "WETH", - "tokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + "tokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "pool": { + "address": "0x011Ef1fe26D20077A59F38e9Ad155b166AD87D40", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "megaeth-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "memento-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x086917568f9317b68595B7552842de816698D7BD" + "tokenAddress": "0x086917568f9317b68595B7552842de816698D7BD", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "metal-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mind-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b" + "tokenAddress": "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mint-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "morph-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x5300000000000000000000000000000000000011" + "tokenAddress": "0x5300000000000000000000000000000000000011", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polygon-mainnet-katana": { "allowListEnabled": false, "decimals": 18, "name": "Vault Bridge ETH", - "poolType": "feeTokenOnly", "symbol": "vbETH", - "tokenAddress": "0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62" + "tokenAddress": "0xEE7D8BCFb72bC1880D0Cf19822eB0A2e6577aB62", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Ronin Wrapped Ether", - "poolAddress": "0x16d313Bd248Bf3A9513719c1A9d188FE7Ff65cF8", - "poolType": "burnMint", "symbol": "WETH", - "tokenAddress": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5" + "tokenAddress": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5", + "pool": { + "address": "0x16d313Bd248Bf3A9513719c1A9d188FE7Ff65cF8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "superseed-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "zora-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WFRAGSOL": { @@ -7760,28 +11099,40 @@ "allowListEnabled": false, "decimals": 9, "name": "Wrapped Fragmetric Restaked SOL", - "poolAddress": "0x414024b789097c9a81Ec2D34f95B009718f44365", - "poolType": "burnMint", "symbol": "WFRAGSOL", - "tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946" + "tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946", + "pool": { + "address": "0x414024b789097c9a81Ec2D34f95B009718f44365", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Wrapped Fragmetric Restaked SOL", - "poolAddress": "0x789428528A842053b52cd0D77692125829406712", - "poolType": "burnMint", "symbol": "WFRAGSOL", - "tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946" + "tokenAddress": "0x8624b87F9b766d82CdaDDE8Cf4192df76682F946", + "pool": { + "address": "0x789428528A842053b52cd0D77692125829406712", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 9, "name": "Wrapped Fragmetric Restaked SOL", - "poolAddress": "5a37uszDg5q34tvCpuFikEwSYiUWD78nPr3cUFsNQ2kK", - "poolType": "lockRelease", "symbol": "wfragSOL", - "tokenAddress": "WFRGSWjaz8tbAxsJitmbfRuFV2mSNwy7BMWcCwaA28U" + "tokenAddress": "WFRGSWjaz8tbAxsJitmbfRuFV2mSNwy7BMWcCwaA28U", + "pool": { + "address": "5a37uszDg5q34tvCpuFikEwSYiUWD78nPr3cUFsNQ2kK", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WFRAX": { @@ -7789,9 +11140,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Frax", - "poolType": "feeTokenOnly", "symbol": "WFRAX", - "tokenAddress": "0xFc00000000000000000000000000000000000002" + "tokenAddress": "0xFc00000000000000000000000000000000000002", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WGHO": { @@ -7799,9 +11155,29 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Gho Token", - "poolType": "feeTokenOnly", "symbol": "WGHO", - "tokenAddress": "0x6bDc36E20D267Ff0dd6097799f82e78907105e2F" + "tokenAddress": "0x6bDc36E20D267Ff0dd6097799f82e78907105e2F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } + } + }, + "WgUSDT": { + "stable-mainnet": { + "allowListEnabled": false, + "decimals": 18, + "name": "Wrapped gUSDT", + "symbol": "WgUSDT", + "tokenAddress": "0x817997Ca8394E26CCE3dE3A076a4889b27DbF9dE", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WHBAR": { @@ -7809,9 +11185,14 @@ "allowListEnabled": false, "decimals": 8, "name": "Wrapped HBAR", - "poolType": "feeTokenOnly", "symbol": "WHBAR", - "tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed" + "tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WHLP": { @@ -7819,19 +11200,27 @@ "allowListEnabled": false, "decimals": 6, "name": "Wrapped HLP", - "poolAddress": "0x051665f2455116e929b9972c36d23070F5054Ce0", - "poolType": "lockRelease", "symbol": "WHLP", - "tokenAddress": "0x1359b05241cA5076c9F59605214f4F84114c0dE8" + "tokenAddress": "0x1359b05241cA5076c9F59605214f4F84114c0dE8", + "pool": { + "address": "0x051665f2455116e929b9972c36d23070F5054Ce0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped HLP", - "poolAddress": "JCPtaQkKFwBbjAfBbDrDF1wHpMfoEDEXJbwDfXvgs3j3", - "poolType": "burnMint", "symbol": "wHLP", - "tokenAddress": "wHLPX7ChYUnbR5G8JKqPjZyeLwSY8Mdo4kXZpQubRnJ" + "tokenAddress": "wHLPX7ChYUnbR5G8JKqPjZyeLwSY8Mdo4kXZpQubRnJ", + "pool": { + "address": "JCPtaQkKFwBbjAfBbDrDF1wHpMfoEDEXJbwDfXvgs3j3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WHSK": { @@ -7839,28 +11228,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped HSK", - "poolAddress": "0xaF6db93135F5820201e9E9b048Dd5e7Ef3dCf866", - "poolType": "burnMint", "symbol": "WHSK", - "tokenAddress": "0xC080b24a11fdAaf01548e384757b4c905993aF1a" + "tokenAddress": "0xC080b24a11fdAaf01548e384757b4c905993aF1a", + "pool": { + "address": "0xaF6db93135F5820201e9E9b048Dd5e7Ef3dCf866", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped HSK", - "poolAddress": "0x71821F883E8f8F4D17889bF1E0bF548c2CFD9096", - "poolType": "burnMint", "symbol": "WHSK", - "tokenAddress": "0x54b92Ae9C9b8ce75fa958191649bC20B7e6c54C7" + "tokenAddress": "0x54b92Ae9C9b8ce75fa958191649bC20B7e6c54C7", + "pool": { + "address": "0x71821F883E8f8F4D17889bF1E0bF548c2CFD9096", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-hashkey-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped HSK", - "poolAddress": "0x0B004c8e028495dC94e53e432810FAa4E66EfEe1", - "poolType": "lockRelease", "symbol": "WHSK", - "tokenAddress": "0xB210D2120d57b758EE163cFfb43e73728c471Cf1" + "tokenAddress": "0xB210D2120d57b758EE163cFfb43e73728c471Cf1", + "pool": { + "address": "0x0B004c8e028495dC94e53e432810FAa4E66EfEe1", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WHY": { @@ -7868,28 +11269,40 @@ "allowListEnabled": false, "decimals": 18, "name": "why", - "poolAddress": "0x5156b61beb12eCdbB6caA4a49f41Db2203943702", - "poolType": "lockRelease", "symbol": "WHY", - "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27" + "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27", + "pool": { + "address": "0x5156b61beb12eCdbB6caA4a49f41Db2203943702", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "why", - "poolAddress": "0xf00986Ebb280A1B06bfDA84700ff4cEc9696E8c0", - "poolType": "burnMint", "symbol": "WHY", - "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27" + "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27", + "pool": { + "address": "0xf00986Ebb280A1B06bfDA84700ff4cEc9696E8c0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "why", - "poolAddress": "0xCfee3d8CBc7dFdea23608E73b48B1b83Af8603a9", - "poolType": "burnMint", "symbol": "WHY", - "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27" + "tokenAddress": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27", + "pool": { + "address": "0xCfee3d8CBc7dFdea23608E73b48B1b83Af8603a9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WHYPE": { @@ -7897,9 +11310,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped HYPE", - "poolType": "feeTokenOnly", "symbol": "WHYPE", - "tokenAddress": "0x5555555555555555555555555555555555555555" + "tokenAddress": "0x5555555555555555555555555555555555555555", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WKAIA": { @@ -7907,9 +11325,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Klay", - "poolType": "feeTokenOnly", "symbol": "WKLAY", - "tokenAddress": "0x19Aac5f612f524B754CA7e7c41cbFa2E981A4432" + "tokenAddress": "0x19Aac5f612f524B754CA7e7c41cbFa2E981A4432", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WLD": { @@ -7917,19 +11340,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Worldcoin", - "poolAddress": "0xc751E86208F0F8aF2d5CD0e29716cA7AD98B5eF5", - "poolType": "lockRelease", "symbol": "WLD", - "tokenAddress": "0x2cFc85d8E48F8EAB294be644d9E25C3030863003" + "tokenAddress": "0x2cFc85d8E48F8EAB294be644d9E25C3030863003", + "pool": { + "address": "0xc751E86208F0F8aF2d5CD0e29716cA7AD98B5eF5", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Worldcoin", - "poolAddress": "0x10c9a3c76bDbDB8600d726De621b941fd26F6058", - "poolType": "lockRelease", "symbol": "WLD", - "tokenAddress": "0x163f8C2467924be0ae7B5347228CABF260318753" + "tokenAddress": "0x163f8C2467924be0ae7B5347228CABF260318753", + "pool": { + "address": "0x10c9a3c76bDbDB8600d726De621b941fd26F6058", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WLFI": { @@ -7937,28 +11368,40 @@ "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial", - "poolAddress": "0xa92261171d09aea90Bbf86c75A7322519F014c78", - "poolType": "burnMint", "symbol": "WLFI", - "tokenAddress": "0x47474747477b199288bF72a1D702f7Fe0Fb1DEeA" + "tokenAddress": "0x47474747477b199288bF72a1D702f7Fe0Fb1DEeA", + "pool": { + "address": "0xa92261171d09aea90Bbf86c75A7322519F014c78", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "World Liberty Financial", - "poolAddress": "0xc785D05961B3C537cAC11f1D496876a255F6D650", - "poolType": "lockRelease", "symbol": "WLFI", - "tokenAddress": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6" + "tokenAddress": "0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6", + "pool": { + "address": "0xc785D05961B3C537cAC11f1D496876a255F6D650", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "World Liberty Financial", - "poolAddress": "7QziXoi8PodowR8XxGMN8TfdYnJzmQ8i4HcCk4LWovb7", - "poolType": "burnMint", "symbol": "WLFI", - "tokenAddress": "WLFinEv6ypjkczcS83FZqFpgFZYwQXutRbxGe7oC16g" + "tokenAddress": "WLFinEv6ypjkczcS83FZqFpgFZYwQXutRbxGe7oC16g", + "pool": { + "address": "7QziXoi8PodowR8XxGMN8TfdYnJzmQ8i4HcCk4LWovb7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WMETIS": { @@ -7966,9 +11409,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped METIS", - "poolType": "feeTokenOnly", "symbol": "WMETIS", - "tokenAddress": "0x75cb093E4D61d2A2e65D8e0BBb01DE8d89b53481" + "tokenAddress": "0x75cb093E4D61d2A2e65D8e0BBb01DE8d89b53481", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMNT": { @@ -7976,9 +11424,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Mantle", - "poolType": "feeTokenOnly", "symbol": "WMNT", - "tokenAddress": "0x78c1b0C915c4FAA5FffA6CAbf0219DA63d7f4cb8" + "tokenAddress": "0x78c1b0C915c4FAA5FffA6CAbf0219DA63d7f4cb8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMON": { @@ -7986,9 +11439,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped MON", - "poolType": "feeTokenOnly", "symbol": "WMON", - "tokenAddress": "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A" + "tokenAddress": "0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMTX": { @@ -7996,46 +11454,66 @@ "allowListEnabled": false, "decimals": 6, "name": "WorldMobileToken", - "poolAddress": "0x0C03636614fe25278786e363643Ee5D4260C9eFE", - "poolType": "burnMint", "symbol": "WMTX", - "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7" + "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "pool": { + "address": "0x0C03636614fe25278786e363643Ee5D4260C9eFE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "WorldMobileToken", - "poolAddress": "0xF32C2942Cb14Dc47DB8d0387A089948171Bb8F05", - "poolType": "burnMint", "symbol": "WMTX", - "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7" + "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "pool": { + "address": "0xF32C2942Cb14Dc47DB8d0387A089948171Bb8F05", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "WorldMobileToken", - "poolAddress": "0x7adF83556CE7141BaB0eFdA46DB40C5d5840eBe7", - "poolType": "burnMint", "symbol": "WMTX", - "tokenAddress": "0x3e31966d4f81C72D2a55310A6365A56A4393E98D" + "tokenAddress": "0x3e31966d4f81C72D2a55310A6365A56A4393E98D", + "pool": { + "address": "0x7adF83556CE7141BaB0eFdA46DB40C5d5840eBe7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "WorldMobileToken", - "poolAddress": "0x229a1956929489870A31b01854a80EF9B0fd27c9", - "poolType": "burnMint", "symbol": "WMTX", - "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7" + "tokenAddress": "0xDBB5Cf12408a3Ac17d668037Ce289f9eA75439D7", + "pool": { + "address": "0x229a1956929489870A31b01854a80EF9B0fd27c9", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "World Mobile Token", - "poolAddress": "4B9Yvea3RNJ7pJQfdDxz18yzPV5sKSpvQBxoMYgLnzuK", - "poolType": "burnMint", "symbol": "WMTX", - "tokenAddress": "WMTXyYKUMTG3VuZA5beXuHVRLpyTwwaoP7h2i8YpuRH" + "tokenAddress": "WMTXyYKUMTG3VuZA5beXuHVRLpyTwwaoP7h2i8YpuRH", + "pool": { + "address": "4B9Yvea3RNJ7pJQfdDxz18yzPV5sKSpvQBxoMYgLnzuK", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WNXPC": { @@ -8043,9 +11521,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped NXPC", - "poolType": "feeTokenOnly", "symbol": "WNXPC", - "tokenAddress": "0x150869eac5C58d3655f860C4316107fB626244d0" + "tokenAddress": "0x150869eac5C58d3655f860C4316107fB626244d0", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "wOETH": { @@ -8053,28 +11536,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped OETH", - "poolAddress": "0xbC92233eca3c53c002Ab80eAc8b6F9f84Fa27DBE", - "poolType": "burnMint", "symbol": "WOETH", - "tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839" + "tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839", + "pool": { + "address": "0xbC92233eca3c53c002Ab80eAc8b6F9f84Fa27DBE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped OETH", - "poolAddress": "0xFE8671c82036b1afEF2Fd423d1aadeF5dC735A43", - "poolType": "burnMint", "symbol": "wOETH", - "tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839" + "tokenAddress": "0xD8724322f44E5c58D7A815F542036fb17DbbF839", + "pool": { + "address": "0xFE8671c82036b1afEF2Fd423d1aadeF5dC735A43", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped OETH", - "poolAddress": "0x75a852478792E5a99bc4cdd0aDBd97129B0d9799", - "poolType": "lockRelease", "symbol": "wOETH", - "tokenAddress": "0xDcEe70654261AF21C44c093C300eD3Bb97b78192" + "tokenAddress": "0xDcEe70654261AF21C44c093C300eD3Bb97b78192", + "pool": { + "address": "0x75a852478792E5a99bc4cdd0aDBd97129B0d9799", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WOKB": { @@ -8082,9 +11577,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped OKB", - "poolType": "feeTokenOnly", "symbol": "WOKB", - "tokenAddress": "0xe538905cf8410324e03A5A23C1c177a474D59b2b" + "tokenAddress": "0xe538905cf8410324e03A5A23C1c177a474D59b2b", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WOLF": { @@ -8092,28 +11592,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Landwolf", - "poolAddress": "0x158fbCD99c333afD5838aeF6ee3236c3e0a7041c", - "poolType": "burnMint", "symbol": "WOLF", - "tokenAddress": "0xe760fc2c7B94075Ae010216a539dcE7f91AF0e13" + "tokenAddress": "0xe760fc2c7B94075Ae010216a539dcE7f91AF0e13", + "pool": { + "address": "0x158fbCD99c333afD5838aeF6ee3236c3e0a7041c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Landwolf", - "poolAddress": "0x89C13177406982051baC3305D14180F763422CE2", - "poolType": "burnMint", "symbol": "WOLF", - "tokenAddress": "0x77Ca224436B132CD83581826669025Ed9cfd9b94" + "tokenAddress": "0x77Ca224436B132CD83581826669025Ed9cfd9b94", + "pool": { + "address": "0x89C13177406982051baC3305D14180F763422CE2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Landwolf", - "poolAddress": "0xfaFcaC5F48A7E034fec3264A6c42F88ef705638a", - "poolType": "lockRelease", "symbol": "WOLF", - "tokenAddress": "0x67466BE17df832165F8C80a5A120CCc652bD7E69" + "tokenAddress": "0x67466BE17df832165F8C80a5A120CCc652bD7E69", + "pool": { + "address": "0xfaFcaC5F48A7E034fec3264A6c42F88ef705638a", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WOW": { @@ -8121,19 +11633,27 @@ "allowListEnabled": false, "decimals": 18, "name": "WOW", - "poolAddress": "0x0563f39D663D44B64677ead7D75CdC7ADA842eCf", - "poolType": "burnMint", "symbol": "WOW", - "tokenAddress": "0xc97Cb00245a50c607b57D9b6d2e854FcA3B33F9c" + "tokenAddress": "0xc97Cb00245a50c607b57D9b6d2e854FcA3B33F9c", + "pool": { + "address": "0x0563f39D663D44B64677ead7D75CdC7ADA842eCf", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "shibarium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "WOW", - "poolAddress": "0xB858917F2dA9253736c7869eD40f1212015AF4DE", - "poolType": "lockRelease", "symbol": "WOW", - "tokenAddress": "0x8f4b11d923BbAA6206f3Dd3ff84e8e31bafB49b7" + "tokenAddress": "0x8f4b11d923BbAA6206f3Dd3ff84e8e31bafB49b7", + "pool": { + "address": "0xB858917F2dA9253736c7869eD40f1212015AF4DE", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WPLUME": { @@ -8141,9 +11661,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Plume", - "poolType": "feeTokenOnly", "symbol": "WPLUME", - "tokenAddress": "0xEa237441c92CAe6FC17Caaf9a7acB3f953be4bd1" + "tokenAddress": "0xEa237441c92CAe6FC17Caaf9a7acB3f953be4bd1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WPOL": { @@ -8151,19 +11676,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Polygon Ecosystem Token", - "poolType": "feeTokenOnly", "symbol": "WPOL", - "tokenAddress": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" - } - }, - "WPROS": { - "pharos-mainnet": { - "allowListEnabled": false, - "decimals": 18, - "name": "Wrapped PROS", - "poolType": "feeTokenOnly", - "symbol": "WPROS", - "tokenAddress": "0x52C48d4213107b20bC583832b0d951FB9CA8F0B0" + "tokenAddress": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WRBTC": { @@ -8171,9 +11691,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC", - "poolType": "feeTokenOnly", "symbol": "WRBTC", - "tokenAddress": "0x542fDA317318eBF1d3DEAf76E0b632741A7e677d" + "tokenAddress": "0x542fDA317318eBF1d3DEAf76E0b632741A7e677d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WRON": { @@ -8181,9 +11706,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ronin", - "poolType": "feeTokenOnly", "symbol": "WRON", - "tokenAddress": "0xe514d9DEB7966c8BE0ca922de8a064264eA6bcd4" + "tokenAddress": "0xe514d9DEB7966c8BE0ca922de8a064264eA6bcd4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WS": { @@ -8191,9 +11721,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Sonic", - "poolType": "feeTokenOnly", "symbol": "wS", - "tokenAddress": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38" + "tokenAddress": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WSDM": { @@ -8201,37 +11736,53 @@ "allowListEnabled": false, "decimals": 6, "name": "Wisdomise", - "poolAddress": "0x862428cA8C8108486e0c6e66a897Aa0166841349", - "poolType": "burnMint", "symbol": "WSDM", - "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220" + "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220", + "pool": { + "address": "0x862428cA8C8108486e0c6e66a897Aa0166841349", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "Wisdomise", - "poolAddress": "0xCF241Cdd2dee05Ef1Bd7F3FdAEf1bEc143E4f87c", - "poolType": "burnMint", "symbol": "WSDM", - "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220" + "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220", + "pool": { + "address": "0xCF241Cdd2dee05Ef1Bd7F3FdAEf1bEc143E4f87c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Wisdomise", - "poolAddress": "0x8ee28906BA9E482d881d28E825118b8b8e46A4a5", - "poolType": "burnMint", "symbol": "WSDM", - "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220" + "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220", + "pool": { + "address": "0x8ee28906BA9E482d881d28E825118b8b8e46A4a5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Wisdomise", - "poolAddress": "0x2DeBF941D469709853d96Df09dEF1DD8151D44D3", - "poolType": "lockRelease", "symbol": "WSDM", - "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220" + "tokenAddress": "0x5F2F8818002dc64753daeDF4A6CB2CcB757CD220", + "pool": { + "address": "0x2DeBF941D469709853d96Df09dEF1DD8151D44D3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "WSEI": { @@ -8239,9 +11790,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped SEI", - "poolType": "feeTokenOnly", "symbol": "WSEI", - "tokenAddress": "0xE30feDd158A2e3b13e9badaeABaFc5516e95e8C7" + "tokenAddress": "0xE30feDd158A2e3b13e9badaeABaFc5516e95e8C7", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WSOL": { @@ -8249,9 +11805,14 @@ "allowListEnabled": false, "decimals": 9, "name": "Wrapped Solana", - "poolType": "feeTokenOnly", "symbol": "WSOL", - "tokenAddress": "So11111111111111111111111111111111111111112" + "tokenAddress": "So11111111111111111111111111111111111111112", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "wstETH": { @@ -8259,82 +11820,118 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped stETH", - "poolAddress": "0xFEe991bB8695a336f5C4ab00062BEEd4b5783f4F", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x161a128567BF0C005b58211757F7e46eed983F02" + "tokenAddress": "0x161a128567BF0C005b58211757F7e46eed983F02", + "pool": { + "address": "0xFEe991bB8695a336f5C4ab00062BEEd4b5783f4F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "abstract-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0x38Ad0414B523Fa344429ff14dAC305e4fB6Ab248", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x313F663E79ef202251a28F0252c254842D5ABC6a" + "tokenAddress": "0x313F663E79ef202251a28F0252c254842D5ABC6a", + "pool": { + "address": "0x38Ad0414B523Fa344429ff14dAC305e4fB6Ab248", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x5659b4C62897Fa36C05780cD96c2D5c0a5602488" + "tokenAddress": "0x5659b4C62897Fa36C05780cD96c2D5c0a5602488", + "pool": { + "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0xE561152E8d3f618b386EF4dD6E3fb980Eb2f9e61" + "tokenAddress": "0xE561152E8d3f618b386EF4dD6E3fb980Eb2f9e61", + "pool": { + "address": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "jovay-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0x1c2F528e3BEeFF81Bc03CC63E64dB131d18be7fA", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD" + "tokenAddress": "0x2dC99af320BC317c567f24eE95811dcbd5983DfD", + "pool": { + "address": "0x1c2F528e3BEeFF81Bc03CC63E64dB131d18be7fA", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0xA586a732394A1AFfCF15b972cd47C936033C9FA7", - "poolType": "lockRelease", "symbol": "wstETH", - "tokenAddress": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0" + "tokenAddress": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "pool": { + "address": "0xA586a732394A1AFfCF15b972cd47C936033C9FA7", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "megaeth-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x601aC63637933D88285A025C685AC4e9a92a98dA" + "tokenAddress": "0x601aC63637933D88285A025C685AC4e9a92a98dA", + "pool": { + "address": "0x15C03488B29e27d62BAf10E30b0c474bf60E0264", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0x2f2E55517aac64c4066f6eB333b4Cb072eD00E8A", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417" + "tokenAddress": "0x10Aeaf63194db8d453d4D85a06E5eFE1dd0b5417", + "pool": { + "address": "0x2f2E55517aac64c4066f6eB333b4Cb072eD00E8A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped liquid staked Ether 2.0", - "poolAddress": "0xa4b1d393104a5eF340154c337009156aA0E83Bd8", - "poolType": "burnMint", "symbol": "wstETH", - "tokenAddress": "0x481e638105407Be40c2f2E2e006DE272d05930d0" + "tokenAddress": "0x481e638105407Be40c2f2E2e006DE272d05930d0", + "pool": { + "address": "0xa4b1d393104a5eF340154c337009156aA0E83Bd8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "wstLINK": { @@ -8342,46 +11939,66 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped stLINK", - "poolAddress": "0x04be180c1c3468c86EB68939aB53dbDC7306aDc7", - "poolType": "burnMint", "symbol": "wstLINK", - "tokenAddress": "0x601486C8Fdc3aD22745b01c920037d6c036A38B9" + "tokenAddress": "0x601486C8Fdc3aD22745b01c920037d6c036A38B9", + "pool": { + "address": "0x04be180c1c3468c86EB68939aB53dbDC7306aDc7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stLINK", - "poolAddress": "0x5406e9d1CEF8f54eb675bd41139A5E3D83bFf80c", - "poolType": "burnMint", "symbol": "wstLINK", - "tokenAddress": "0x3106E2e148525b3DB36795b04691D444c24972fB" + "tokenAddress": "0x3106E2e148525b3DB36795b04691D444c24972fB", + "pool": { + "address": "0x5406e9d1CEF8f54eb675bd41139A5E3D83bFf80c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stLINK", - "poolAddress": "0xc80088D32830Cdb869eBA08bb25Bb6D7B17467FF", - "poolType": "burnMint", "symbol": "wstLINK", - "tokenAddress": "0xF2f7901B7bbA5799493B617B06EAd1862F771297" + "tokenAddress": "0xF2f7901B7bbA5799493B617B06EAd1862F771297", + "pool": { + "address": "0xc80088D32830Cdb869eBA08bb25Bb6D7B17467FF", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stLINK", - "poolAddress": "0xF6403CF6E954a43699097322e0867C63d653C2D0", - "poolType": "lockRelease", "symbol": "wstLINK", - "tokenAddress": "0x911D86C72155c33993d594B0Ec7E6206B4C803da" + "tokenAddress": "0x911D86C72155c33993d594B0Ec7E6206B4C803da", + "pool": { + "address": "0xF6403CF6E954a43699097322e0867C63d653C2D0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stLINK", - "poolAddress": "0x97f40E42e4aE3BA12b5856F685136f6747Fa49a5", - "poolType": "burnMint", "symbol": "wstLINK", - "tokenAddress": "0xc271A17DB5cE6F53745A3F466077Ec816bC20a9C" + "tokenAddress": "0xc271A17DB5cE6F53745A3F466077Ec816bC20a9C", + "pool": { + "address": "0x97f40E42e4aE3BA12b5856F685136f6747Fa49a5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "wstPOL": { @@ -8389,28 +12006,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped stPOL", - "poolAddress": "0x481242B7846FA88fA76f2Ee73157aAa3AE2B280b", - "poolType": "burnMint", "symbol": "wstPOL", - "tokenAddress": "0x9178baB5362282a861922Ce641F4f3b7D4Bb9EF3" + "tokenAddress": "0x9178baB5362282a861922Ce641F4f3b7D4Bb9EF3", + "pool": { + "address": "0x481242B7846FA88fA76f2Ee73157aAa3AE2B280b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stPOL", - "poolAddress": "0x553636e52059B0339592f545D25a4C0A86E3a1Bc", - "poolType": "lockRelease", "symbol": "wstPOL", - "tokenAddress": "0x2091d83592D79B4De5fD2ce3D98679c32A9555e6" + "tokenAddress": "0x2091d83592D79B4De5fD2ce3D98679c32A9555e6", + "pool": { + "address": "0x553636e52059B0339592f545D25a4C0A86E3a1Bc", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped stPOL", - "poolAddress": "0xb4D2C033Ea68674E56F6071B0d826D03152376dB", - "poolType": "burnMint", "symbol": "wstPOL", - "tokenAddress": "0x1d0347C535C88Cf6BB72df75AED34363edB4B2AE" + "tokenAddress": "0x1d0347C535C88Cf6BB72df75AED34363edB4B2AE", + "pool": { + "address": "0xb4D2C033Ea68674E56F6071B0d826D03152376dB", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WTAC": { @@ -8418,9 +12047,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped TAC", - "poolType": "feeTokenOnly", "symbol": "WTAC", - "tokenAddress": "0xB63B9f0eb4A6E6f191529D71d4D88cc8900Df2C9" + "tokenAddress": "0xB63B9f0eb4A6E6f191529D71d4D88cc8900Df2C9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WTAO": { @@ -8428,19 +12062,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Tao", - "poolType": "feeTokenOnly", "symbol": "WTAO", - "tokenAddress": "0x5F3B70e0c089a1e3020B1990823Bc241a7bF3522" - } - }, - "WUSDT0": { - "stable-mainnet": { - "allowListEnabled": false, - "decimals": 18, - "name": "Wrapped USDT0", - "poolType": "feeTokenOnly", - "symbol": "WUSDT0", - "tokenAddress": "0xB23540d08122C634a839F0143267BeA9936Dd466" + "tokenAddress": "0x5F3B70e0c089a1e3020B1990823Bc241a7bF3522", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "wUSDx": { @@ -8448,64 +12077,92 @@ "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0xa843652dF6Bda4d4B2894a28505963F595AEdBe3", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0x2d7e22Fb0fb7A7F0d1fef70ad8873A9ffDe18007" + "tokenAddress": "0x2d7e22Fb0fb7A7F0d1fef70ad8873A9ffDe18007", + "pool": { + "address": "0xa843652dF6Bda4d4B2894a28505963F595AEdBe3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0xf6C3874a0a535B616d4528263B796255949D0135", - "poolType": "lockRelease", "symbol": "wxUSD", - "tokenAddress": "0xB86fb1047A955C0186c77ff6263819b37B32440D" + "tokenAddress": "0xB86fb1047A955C0186c77ff6263819b37B32440D", + "pool": { + "address": "0xf6C3874a0a535B616d4528263B796255949D0135", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0x335CAd1ea3aB44fe800Da89Fc31e0071E044EF34", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0x1EaE7Ca39192a2B6E3EA2E852A0D4D20bCe89d14" + "tokenAddress": "0x1EaE7Ca39192a2B6E3EA2E852A0D4D20bCe89d14", + "pool": { + "address": "0x335CAd1ea3aB44fe800Da89Fc31e0071E044EF34", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-mode-1": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0x7211e50394Fa9c29373cf95987Fc381f35f8b8D8", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203" + "tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203", + "pool": { + "address": "0x7211e50394Fa9c29373cf95987Fc381f35f8b8D8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0xCF4f83859845594aC0e7a9da26df5e47cf5474fd", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0xe49465604e25cd5167005e0cEbD8Af461e833b83" + "tokenAddress": "0xe49465604e25cd5167005e0cEbD8Af461e833b83", + "pool": { + "address": "0xCF4f83859845594aC0e7a9da26df5e47cf5474fd", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0xe9bFB4fe6E403985c5f2b968f883A9590Aac54aC", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203" + "tokenAddress": "0xAe770d24ec1580A13392E0B71067571351029203", + "pool": { + "address": "0xe9bFB4fe6E403985c5f2b968f883A9590Aac54aC", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Wrapped xUSD", - "poolAddress": "0x04c5046A1f4E3fFf094c26dFCAA75eF293932f18", - "poolType": "burnMint", "symbol": "wxUSD", - "tokenAddress": "0x29A0dc4f509873673B7682B60598d393A1e591b7" + "tokenAddress": "0x29A0dc4f509873673B7682B60598d393A1e591b7", + "pool": { + "address": "0x04c5046A1f4E3fFf094c26dFCAA75eF293932f18", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "WWEMIX": { @@ -8513,9 +12170,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Wemix", - "poolType": "feeTokenOnly", "symbol": "WWEMIX", - "tokenAddress": "0x7D72b22a74A216Af4a002a1095C8C707d6eC1C5f" + "tokenAddress": "0x7D72b22a74A216Af4a002a1095C8C707d6eC1C5f", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXDAI": { @@ -8523,9 +12185,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XDAI", - "poolType": "feeTokenOnly", "symbol": "WXDAI", - "tokenAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d" + "tokenAddress": "0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXDC": { @@ -8533,9 +12200,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XDC", - "poolType": "feeTokenOnly", "symbol": "WXDC", - "tokenAddress": "0x951857744785E80e2De051c32EE7b25f9c458C42" + "tokenAddress": "0x951857744785E80e2De051c32EE7b25f9c458C42", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXPL": { @@ -8543,9 +12215,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XPL", - "poolType": "feeTokenOnly", "symbol": "WXPL", - "tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873" + "tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXTZ": { @@ -8553,9 +12230,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XTZ", - "poolType": "feeTokenOnly", "symbol": "WXTZ", - "tokenAddress": "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb" + "tokenAddress": "0xc9B53AB2679f573e480d01e0f49e2B5CFB7a3EAb", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "wzkCRO": { @@ -8563,9 +12245,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped zkCRO", - "poolType": "feeTokenOnly", "symbol": "wzkCRO", - "tokenAddress": "0xC1bF55EE54E16229d9b369a5502Bfe5fC9F20b6d" + "tokenAddress": "0xC1bF55EE54E16229d9b369a5502Bfe5fC9F20b6d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "xGold": { @@ -8573,55 +12260,79 @@ "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0xe199E1C5201CCDd3792ed902aD3f610Ce5629B59", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0x281A83ee4819068C40937A066d801aAD7C6e0400" + "tokenAddress": "0x281A83ee4819068C40937A066d801aAD7C6e0400", + "pool": { + "address": "0xe199E1C5201CCDd3792ed902aD3f610Ce5629B59", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0x055860f40533c4d9E7CD38105F4c0d1EB0593072", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0x5D84B92A34635e5C21b7885fB29D6a4B60287ab7" + "tokenAddress": "0x5D84B92A34635e5C21b7885fB29D6a4B60287ab7", + "pool": { + "address": "0x055860f40533c4d9E7CD38105F4c0d1EB0593072", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hedera-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0x2110679A2155534b7674349273741a537495C50C", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0x3FA41d2b29c69F8DA6E2D0bFc4f83C62D6582750" + "tokenAddress": "0x3FA41d2b29c69F8DA6E2D0bFc4f83C62D6582750", + "pool": { + "address": "0x2110679A2155534b7674349273741a537495C50C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0x5B806bA13B8B66F83339A63496C2f914BDd4Eb13", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0x74FC58Ba6FE27771589Be4b405D88Ab1521CD143" + "tokenAddress": "0x74FC58Ba6FE27771589Be4b405D88Ab1521CD143", + "pool": { + "address": "0x5B806bA13B8B66F83339A63496C2f914BDd4Eb13", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0x55585FFBd94471925252C13ade6A81604C781C5D", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0x5E75a1aD7b10523f7ed98C1C7CA0b4A79B1bBDee" + "tokenAddress": "0x5E75a1aD7b10523f7ed98C1C7CA0b4A79B1bBDee", + "pool": { + "address": "0x55585FFBd94471925252C13ade6A81604C781C5D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xGold", - "poolAddress": "0x9EC2F7DBEB9dC7fc72F8476D8a5770E89e13D385", - "poolType": "burnMint", "symbol": "xGold", - "tokenAddress": "0xDCFdCa64194945a44F092F8eD000245146aFcDd6" + "tokenAddress": "0xDCFdCa64194945a44F092F8eD000245146aFcDd6", + "pool": { + "address": "0x9EC2F7DBEB9dC7fc72F8476D8a5770E89e13D385", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "XLAB": { @@ -8629,19 +12340,27 @@ "allowListEnabled": false, "decimals": 6, "name": "Dexlab", - "poolAddress": "0xbf5d2a9e48C51c5945A7975c2b294A8A3e5330f2", - "poolType": "burnMint", "symbol": "XLAB", - "tokenAddress": "0x5BA9bfFFB868859064C33D4f995A0828b2B1d2d3" + "tokenAddress": "0x5BA9bfFFB868859064C33D4f995A0828b2B1d2d3", + "pool": { + "address": "0xbf5d2a9e48C51c5945A7975c2b294A8A3e5330f2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "Dexlab", - "poolAddress": "2F9v1hYeB247wJzBgjsz8zYAQUhFSPDzr1PDs6srMGtU", - "poolType": "lockRelease", "symbol": "XLAB", - "tokenAddress": "XLnpFRQ3rSWupCRjuQfx74mgVoT3ezVJKE1CogRZxhH" + "tokenAddress": "XLnpFRQ3rSWupCRjuQfx74mgVoT3ezVJKE1CogRZxhH", + "pool": { + "address": "2F9v1hYeB247wJzBgjsz8zYAQUhFSPDzr1PDs6srMGtU", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "xrETH": { @@ -8649,28 +12368,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Constellation ETH", - "poolAddress": "0x2d009c84770a3981613Ce5d1eD8F8a67BEc7411e", - "poolType": "burnMint", "symbol": "xrETH", - "tokenAddress": "0x4d26b028D8C255794671fd120a94231A80A2E2C9" + "tokenAddress": "0x4d26b028D8C255794671fd120a94231A80A2E2C9", + "pool": { + "address": "0x2d009c84770a3981613Ce5d1eD8F8a67BEc7411e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Constellation ETH", - "poolAddress": "0xf50B3be14ed2cF2CfE9aC239b763088E2463C11f", - "poolType": "burnMint", "symbol": "xrETH", - "tokenAddress": "0xaD09085191216a94FA1Fd2A790E48e734602a869" + "tokenAddress": "0xaD09085191216a94FA1Fd2A790E48e734602a869", + "pool": { + "address": "0xf50B3be14ed2cF2CfE9aC239b763088E2463C11f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Constellation ETH", - "poolAddress": "0xEDe803B34B30C8De6a128DE57B855263Cd8C55bc", - "poolType": "lockRelease", "symbol": "xrETH", - "tokenAddress": "0xBB22d59B73D7a6F3A8a83A214BECc67Eb3b511fE" + "tokenAddress": "0xBB22d59B73D7a6F3A8a83A214BECc67Eb3b511fE", + "pool": { + "address": "0xEDe803B34B30C8De6a128DE57B855263Cd8C55bc", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "xRPL": { @@ -8678,28 +12409,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Constellation RPL", - "poolAddress": "0x1dBD6224Cf535F624FcB41C4Ad8c065f10BDF3E3", - "poolType": "burnMint", "symbol": "xRPL", - "tokenAddress": "0xd3Bb9E4e9aE431888873d3E51b3c03dA909e868A" + "tokenAddress": "0xd3Bb9E4e9aE431888873d3E51b3c03dA909e868A", + "pool": { + "address": "0x1dBD6224Cf535F624FcB41C4Ad8c065f10BDF3E3", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Constellation RPL", - "poolAddress": "0xDdEDeb125315ba7b6539A6C18478ccf8b59ACEaE", - "poolType": "burnMint", "symbol": "xRPL", - "tokenAddress": "0x2775DeeB4FaDCc486562CAa777dE70AD6CCD82c6" + "tokenAddress": "0x2775DeeB4FaDCc486562CAa777dE70AD6CCD82c6", + "pool": { + "address": "0xDdEDeb125315ba7b6539A6C18478ccf8b59ACEaE", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Constellation RPL", - "poolAddress": "0x8d9F0185c49752d626ef0c318B24Bba83931D639", - "poolType": "lockRelease", "symbol": "xRPL", - "tokenAddress": "0x1DB1Afd9552eeB28e2e36597082440598B7F1320" + "tokenAddress": "0x1DB1Afd9552eeB28e2e36597082440598B7F1320", + "pool": { + "address": "0x8d9F0185c49752d626ef0c318B24Bba83931D639", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "xSILO": { @@ -8707,37 +12450,53 @@ "allowListEnabled": false, "decimals": 18, "name": "xSILO", - "poolAddress": "0x902CD33780288CD0Bfff42AE174511d378DfE728", - "poolType": "burnMint", "symbol": "xSILO", - "tokenAddress": "0xbB4287da728532C78bAF246B12A10be3ace2Dc70" + "tokenAddress": "0xbB4287da728532C78bAF246B12A10be3ace2Dc70", + "pool": { + "address": "0x902CD33780288CD0Bfff42AE174511d378DfE728", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "xSILO", - "poolAddress": "0x9D1cDE77b0720D78aBBD03EdF9abF7D5E0EE4b3A", - "poolType": "burnMint", "symbol": "xSILO", - "tokenAddress": "0xf3775f959bc64923BD809085299dBC984D3e6C8A" + "tokenAddress": "0xf3775f959bc64923BD809085299dBC984D3e6C8A", + "pool": { + "address": "0x9D1cDE77b0720D78aBBD03EdF9abF7D5E0EE4b3A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSILO", - "poolAddress": "0xC201a236258Ec170dE5255A9507bb4f70c7caf31", - "poolType": "burnMint", "symbol": "xSILO", - "tokenAddress": "0xdd4c6FD31Ccf66E250790643947675153c221A91" + "tokenAddress": "0xdd4c6FD31Ccf66E250790643947675153c221A91", + "pool": { + "address": "0xC201a236258Ec170dE5255A9507bb4f70c7caf31", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSILO", - "poolAddress": "0x4F91b984B03B09Fdd60f9ed02279020eF930B2B0", - "poolType": "lockRelease", "symbol": "xSILO", - "tokenAddress": "0x4451765739b2D7BCe5f8BC95Beaf966c45E1Dcc9" + "tokenAddress": "0x4451765739b2D7BCe5f8BC95Beaf966c45E1Dcc9", + "pool": { + "address": "0x4F91b984B03B09Fdd60f9ed02279020eF930B2B0", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "xSolvBTC": { @@ -8745,163 +12504,235 @@ "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x2AB9cD10aC8077a554511FbcBCB0c94D833e0cC5", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0x2AB9cD10aC8077a554511FbcBCB0c94D833e0cC5", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "berachain-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x3539F2E214d8BC7E611056383323aC6D1b01943c", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0x3539F2E214d8BC7E611056383323aC6D1b01943c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x3f2Be15aEA9F68f63ADE10440C6fE00753300b68", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0x3f2Be15aEA9F68f63ADE10440C6fE00753300b68", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xf0314c4B42cd6fCA8772bDE359E0A7d3b5E70f88", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0x1346b618dC92810EC74163e4c27004c921D446a5" + "tokenAddress": "0x1346b618dC92810EC74163e4c27004c921D446a5", + "pool": { + "address": "0xf0314c4B42cd6fCA8772bDE359E0A7d3b5E70f88", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0x346c574C56e1A4aAa8dc88Cda8F7EB12b39947aB" + "tokenAddress": "0x346c574C56e1A4aAa8dc88Cda8F7EB12b39947aB", + "pool": { + "address": "0x0Cd252108EF0CE50f95F75045a97C72A0A8d3118", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x1b019366e7fD47425c7E3D07C18D52D77c0B72bf", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xC26C9099BD3789107888c35bb41178079B282561" + "tokenAddress": "0xC26C9099BD3789107888c35bb41178079B282561", + "pool": { + "address": "0x1b019366e7fD47425c7E3D07C18D52D77c0B72bf", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xdb9E8DF31cE12817DdD1C4d2c3acef038580f586", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077" + "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077", + "pool": { + "address": "0xdb9E8DF31cE12817DdD1C4d2c3acef038580f586", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xd25987B0712FA66D05aA2F7A35bA4B01fB60D22E", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0xd25987B0712FA66D05aA2F7A35bA4B01fB60D22E", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xDed2A972feB2AA8FE531D8C4E290C12FFE6Be9D6", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0xDed2A972feB2AA8FE531D8C4E290C12FFE6Be9D6", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x97810368dE6F7213Cf54f2918A267cEa25449F81", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0x2878295D69Aa3BDcf9004FCf362F0959992D801c" + "tokenAddress": "0x2878295D69Aa3BDcf9004FCf362F0959992D801c", + "pool": { + "address": "0x97810368dE6F7213Cf54f2918A267cEa25449F81", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "hyperliquid-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xb5829e1f8078860969950852546B947f37855ef1", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077" + "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077", + "pool": { + "address": "0xb5829e1f8078860969950852546B947f37855ef1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x99bb52AAF045F63F74d0a3FbE6Cf3e7B23aeD212", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xd9D920AA40f578ab794426F5C90F6C731D159DEf" + "tokenAddress": "0xd9D920AA40f578ab794426F5C90F6C731D159DEf", + "pool": { + "address": "0x99bb52AAF045F63F74d0a3FbE6Cf3e7B23aeD212", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x44F2B4dE683f5225704376699fD1eF3E2769107b", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077" + "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077", + "pool": { + "address": "0x44F2B4dE683f5225704376699fD1eF3E2769107b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "monad-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x8A76fe7fA6da27f85a626c5C53730B38D13603d7", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077" + "tokenAddress": "0xc99F5c922DAE05B6e2ff83463ce705eF7C91F077", + "pool": { + "address": "0x8A76fe7fA6da27f85a626c5C53730B38D13603d7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sei-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xd2bdD1E01fd2F8d7d42b209c111c7b32158b5a42", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0xd2bdD1E01fd2F8d7d42b209c111c7b32158b5a42", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "xSolvBTC", - "poolAddress": "JBxSefWbahYApU5DVsqXcHugDVGFNUaaZgWh3u7wESVn", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "SoLvAiHLF7LGEaiTN5KGZt1bNnraoWTi5mjcvRoDAX4" + "tokenAddress": "SoLvAiHLF7LGEaiTN5KGZt1bNnraoWTi5mjcvRoDAX4", + "pool": { + "address": "JBxSefWbahYApU5DVsqXcHugDVGFNUaaZgWh3u7wESVn", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "soneium-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0xEf53137aF78Afc63b312f0af64fe3c24804d2441", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0xEf53137aF78Afc63b312f0af64fe3c24804d2441", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "xSolvBTC", - "poolAddress": "0x2B4d8FAD49A3276853560A9cAFaa59392a99cDbD", - "poolType": "burnMint", "symbol": "xSolvBTC", - "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c" + "tokenAddress": "0xCC0966D8418d412c599A6421b760a847eB169A8c", + "pool": { + "address": "0x2B4d8FAD49A3276853560A9cAFaa59392a99cDbD", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "XSWAP": { @@ -8909,19 +12740,27 @@ "allowListEnabled": false, "decimals": 18, "name": "XSwap", - "poolAddress": "0x4d87CBff8187C4B3E00FDF534cb310724536EA4c", - "poolType": "burnMint", "symbol": "XSWAP", - "tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c" + "tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c", + "pool": { + "address": "0x4d87CBff8187C4B3E00FDF534cb310724536EA4c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "XSwap", - "poolAddress": "0x916D7d960B119bb6c4AbE381f7677eCEed866d44", - "poolType": "burnMint", "symbol": "XSWAP", - "tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c" + "tokenAddress": "0x8Fe815417913a93Ea99049FC0718ee1647A2a07c", + "pool": { + "address": "0x916D7d960B119bb6c4AbE381f7677eCEed866d44", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "XTFBRICK1": { @@ -8929,28 +12768,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Real Estate Panama Fund", - "poolAddress": "0x38b771383823A442fF3943706d6541A253298c8e", - "poolType": "burnMint", "symbol": "XTFBRICK1", - "tokenAddress": "0x8d944193Cdeb7c4767fB1B3c43Fb9E1E1Df3158A" + "tokenAddress": "0x8d944193Cdeb7c4767fB1B3c43Fb9E1E1Df3158A", + "pool": { + "address": "0x38b771383823A442fF3943706d6541A253298c8e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Real Estate Panama Fund", - "poolAddress": "0x07f49dC315E6F567a824Db364E834E3391E976a8", - "poolType": "burnMint", "symbol": "XTFBRICK1", - "tokenAddress": "0x268Cf1A0d1723eff452a2df8208172F8768Aa001" + "tokenAddress": "0x268Cf1A0d1723eff452a2df8208172F8768Aa001", + "pool": { + "address": "0x07f49dC315E6F567a824Db364E834E3391E976a8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "memento-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Real Estate Panama Fund", - "poolAddress": "0x71cC4E6858bA934Da2F6F825807118160FADFDA8", - "poolType": "lockRelease", "symbol": "XTFBRICK1", - "tokenAddress": "0x2D7f7da70F8c36A2ef47BAbbc4D0be4B4274F72D" + "tokenAddress": "0x2D7f7da70F8c36A2ef47BAbbc4D0be4B4274F72D", + "pool": { + "address": "0x71cC4E6858bA934Da2F6F825807118160FADFDA8", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "XTFCLOBOND": { @@ -8958,28 +12809,40 @@ "allowListEnabled": false, "decimals": 18, "name": "Avenida CLO Bond Fund", - "poolAddress": "0xDc274b09d624EE22079F187E8dFf11Bf599cd2A1", - "poolType": "burnMint", "symbol": "XTFCLOBOND", - "tokenAddress": "0x9E1B4B2e870bD894e7457D18bA620E0cf3e37F90" + "tokenAddress": "0x9E1B4B2e870bD894e7457D18bA620E0cf3e37F90", + "pool": { + "address": "0xDc274b09d624EE22079F187E8dFf11Bf599cd2A1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "matic-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Avenida CLO Bond Fund", - "poolAddress": "0x8680bf9D1d132DF66d9CeDcB0a0bA068cD94998A", - "poolType": "burnMint", "symbol": "XTFCLOBOND", - "tokenAddress": "0xD012151eA9352f477895e0a4f88Efe15f0e8855a" + "tokenAddress": "0xD012151eA9352f477895e0a4f88Efe15f0e8855a", + "pool": { + "address": "0x8680bf9D1d132DF66d9CeDcB0a0bA068cD94998A", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "memento-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Avenida CLO Bond Fund", - "poolAddress": "0x8C66197BDbeAc351590F93447A1CD4186553970E", - "poolType": "lockRelease", "symbol": "XTFCLOBOND", - "tokenAddress": "0xe5097376a585565038D2CF05D2Eb04e9Db1902AD" + "tokenAddress": "0xe5097376a585565038D2CF05D2Eb04e9Db1902AD", + "pool": { + "address": "0x8C66197BDbeAc351590F93447A1CD4186553970E", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "YBTC.B": { @@ -8987,73 +12850,105 @@ "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0xC78210649aF8A450C0f6E98107a0b614a3198359", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0xC78210649aF8A450C0f6E98107a0b614a3198359", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "bitcoin-mainnet-bitlayer-1": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51", - "poolType": "lockRelease", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0xfed13D0c40790220fbdE712987079Eda1Ed75C51", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "bsc-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0x448eEF4A0EF5171F9B9C973017C9621C914591Ad", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0x448eEF4A0EF5171F9B9C973017C9621C914591Ad", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-ink-1": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0x9aCd2ffD56E278a560Cc4E12dCA2B7D2B3359Ac2", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0x9aCd2ffD56E278a560Cc4E12dCA2B7D2B3359Ac2", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plasma-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0x5416050533Bc83533Fc7e7BC50A651DC7C762D07", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "plume-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335" + "tokenAddress": "0x2cd3CdB3bd68Eea0d3BE81DA707bC0c8743D7335", + "pool": { + "address": "0xe96cC12AA0E2e545621bcbE1E035D91a7871fE8f", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "Yield BTC.B", - "poolAddress": "FV7RjzzPxaVXEtkR9NsPREHBEzPoiVvQBtzQY97PGe3Z", - "poolType": "burnMint", "symbol": "YBTC.B", - "tokenAddress": "3VcKofugG1SPJmjuiEZCJL5mk1JkyqGZ19ByeMWXVWfK" + "tokenAddress": "3VcKofugG1SPJmjuiEZCJL5mk1JkyqGZ19ByeMWXVWfK", + "pool": { + "address": "FV7RjzzPxaVXEtkR9NsPREHBEzPoiVvQBtzQY97PGe3Z", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "YGG": { @@ -9061,19 +12956,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Yield Guild Games Token", - "poolAddress": "0x799A356069Ca6D91BBE5d0407De625A969874aE4", - "poolType": "lockRelease", "symbol": "YGG", - "tokenAddress": "0x25f8087EAD173b73D6e8B84329989A8eEA16CF73" + "tokenAddress": "0x25f8087EAD173b73D6e8B84329989A8eEA16CF73", + "pool": { + "address": "0x799A356069Ca6D91BBE5d0407De625A969874aE4", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Yield Guild Games Token", - "poolAddress": "0x2b200Ca34f70d39464A0881BC45fC5fb858b3d5F", - "poolType": "burnMint", "symbol": "YGG", - "tokenAddress": "0x1c306872bC82525d72Bf3562E8F0aA3f8F26e857" + "tokenAddress": "0x1c306872bC82525d72Bf3562E8F0aA3f8F26e857", + "pool": { + "address": "0x2b200Ca34f70d39464A0881BC45fC5fb858b3d5F", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "YNE": { @@ -9081,19 +12984,27 @@ "allowListEnabled": false, "decimals": 6, "name": "yesnoerror", - "poolAddress": "0xd8F5e7FAc317c638d2Fe4d07ab3f436ca6b5e5c7", - "poolType": "burnMint", "symbol": "YNE", - "tokenAddress": "0xE2f9db0186b13668AeC9fe0e15dbD13004ed8d6f" + "tokenAddress": "0xE2f9db0186b13668AeC9fe0e15dbD13004ed8d6f", + "pool": { + "address": "0xd8F5e7FAc317c638d2Fe4d07ab3f436ca6b5e5c7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 6, "name": "yesnoerror", - "poolAddress": "AyxbrQHM1sPx17HKWP1x13E8PBFxpvMQiMERvoG4ub53", - "poolType": "lockRelease", "symbol": "YNE", - "tokenAddress": "7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump" + "tokenAddress": "7D1iYWfhw2cr9yBZBFE6nZaaSUvXHqG5FizFFEZwpump", + "pool": { + "address": "AyxbrQHM1sPx17HKWP1x13E8PBFxpvMQiMERvoG4ub53", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "zBTC": { @@ -9101,37 +13012,53 @@ "allowListEnabled": false, "decimals": 8, "name": "zBTC", - "poolAddress": "0x7B58df98a12F54813fDec73B5791642Fa35a52a4", - "poolType": "burnMint", "symbol": "zBTC", - "tokenAddress": "0x7F544C3a1a16059dd3bbc23AA3BC5c4f5B6969D0" + "tokenAddress": "0x7F544C3a1a16059dd3bbc23AA3BC5c4f5B6969D0", + "pool": { + "address": "0x7B58df98a12F54813fDec73B5791642Fa35a52a4", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 8, "name": "zBTC", - "poolAddress": "0xe3f4B78cdd20f6B8AE8644064656d3E2bF08c4B8", - "poolType": "burnMint", "symbol": "zBTC", - "tokenAddress": "0x24eCd41CE6646ADa857995A682e1a5c42732cAbc" + "tokenAddress": "0x24eCd41CE6646ADa857995A682e1a5c42732cAbc", + "pool": { + "address": "0xe3f4B78cdd20f6B8AE8644064656d3E2bF08c4B8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "zBTC", - "poolAddress": "9EvWTQvZafNxEgpt6snY2sTFT7hARk4tU5QtdRPqoisX", - "poolType": "lockRelease", "symbol": "zBTC", - "tokenAddress": "zBTCug3er3tLyffELcvDNrKkCymbPWysGcWihESYfLg" + "tokenAddress": "zBTCug3er3tLyffELcvDNrKkCymbPWysGcWihESYfLg", + "pool": { + "address": "9EvWTQvZafNxEgpt6snY2sTFT7hARk4tU5QtdRPqoisX", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "sonic-mainnet": { "allowListEnabled": false, "decimals": 8, "name": "zBTC", - "poolAddress": "0x66d78C6AF776350F89DA8D63b66008122236ab3e", - "poolType": "burnMint", "symbol": "zBTC", - "tokenAddress": "0x006A22D3120eaD503F0654Be855BCDfbba5Ced72" + "tokenAddress": "0x006A22D3120eaD503F0654Be855BCDfbba5Ced72", + "pool": { + "address": "0x66d78C6AF776350F89DA8D63b66008122236ab3e", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ZENT": { @@ -9139,19 +13066,27 @@ "allowListEnabled": false, "decimals": 18, "name": "Zentry", - "poolAddress": "0x55c47DE8bCfA02B3989f2B6F9542900E3A2EC6c3", - "poolType": "lockRelease", "symbol": "ZENT", - "tokenAddress": "0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa" + "tokenAddress": "0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa", + "pool": { + "address": "0x55c47DE8bCfA02B3989f2B6F9542900E3A2EC6c3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ronin-mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Zentry", - "poolAddress": "0x52fEd5115D8B7397C09eb4ce2f0a99739891D6B8", - "poolType": "burnMint", "symbol": "ZENT", - "tokenAddress": "0x9f28c9C2dA4A833cbFaAacbf7eB62267334d7149" + "tokenAddress": "0x9f28c9C2dA4A833cbFaAacbf7eB62267334d7149", + "pool": { + "address": "0x52fEd5115D8B7397C09eb4ce2f0a99739891D6B8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "ZeUSD": { @@ -9159,19 +13094,27 @@ "allowListEnabled": false, "decimals": 6, "name": "ZeUSD", - "poolAddress": "0x04c4032CBCdFDa3c676FA86B5F4b61edE6c8286b", - "poolType": "burnMint", "symbol": "ZeUSD", - "tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761" + "tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761", + "pool": { + "address": "0x04c4032CBCdFDa3c676FA86B5F4b61edE6c8286b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 6, "name": "ZeUSD", - "poolAddress": "0x99874400820c354eE07bC8b165C605632BdCeae3", - "poolType": "lockRelease", "symbol": "ZeUSD", - "tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761" + "tokenAddress": "0x7DC9748DA8E762e569F9269f48F69A1a9F8Ea761", + "pool": { + "address": "0x99874400820c354eE07bC8b165C605632BdCeae3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "ZUN": { @@ -9179,37 +13122,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Zunami Token", - "poolAddress": "0x090D3978b8CaF2832b3CDB0d9d5D34EA0c6Cbd99", - "poolType": "burnMint", "symbol": "ZUN", - "tokenAddress": "0x346E74Dc9935a9b02Eb34fB84658a66010fA056D" + "tokenAddress": "0x346E74Dc9935a9b02Eb34fB84658a66010fA056D", + "pool": { + "address": "0x090D3978b8CaF2832b3CDB0d9d5D34EA0c6Cbd99", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Token", - "poolAddress": "0xBFCFF67cc8a236B25Fc043a4a2b8Bf5B122AdC44", - "poolType": "burnMint", "symbol": "ZUN", - "tokenAddress": "0x1db0Fc8933f545648b54A9eE4326209a9A259643" + "tokenAddress": "0x1db0Fc8933f545648b54A9eE4326209a9A259643", + "pool": { + "address": "0xBFCFF67cc8a236B25Fc043a4a2b8Bf5B122AdC44", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Token", - "poolAddress": "0xa01bBE327951B2e441Ed38638927098A272e0F5C", - "poolType": "burnMint", "symbol": "ZUN", - "tokenAddress": "0x25193034153AfB4251a8E02a8Db0DeaeF4C876F6" + "tokenAddress": "0x25193034153AfB4251a8E02a8Db0DeaeF4C876F6", + "pool": { + "address": "0xa01bBE327951B2e441Ed38638927098A272e0F5C", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Token", - "poolAddress": "0x9c79223e8ce037c39b534891b41b3f306a8FE192", - "poolType": "lockRelease", "symbol": "ZUN", - "tokenAddress": "0x6b5204B0Be36771253Cc38e88012E02B752f0f36" + "tokenAddress": "0x6b5204B0Be36771253Cc38e88012E02B752f0f36", + "pool": { + "address": "0x9c79223e8ce037c39b534891b41b3f306a8FE192", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "zunETH": { @@ -9217,37 +13176,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni ETH", - "poolAddress": "0x07d7A985832369eF32F0491aA4CD44fFA9dD4200", - "poolType": "burnMint", "symbol": "zunETH", - "tokenAddress": "0xC9eE652953D8069c5eD37bbB3F8142c6243EFDA0" + "tokenAddress": "0xC9eE652953D8069c5eD37bbB3F8142c6243EFDA0", + "pool": { + "address": "0x07d7A985832369eF32F0491aA4CD44fFA9dD4200", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni ETH", - "poolAddress": "0x9C764e7db0962d5528Bd043109E52c477bafe5db", - "poolType": "burnMint", "symbol": "zunETH", - "tokenAddress": "0x24CB2B89844604C57350776D81e14765D03b91dE" + "tokenAddress": "0x24CB2B89844604C57350776D81e14765D03b91dE", + "pool": { + "address": "0x9C764e7db0962d5528Bd043109E52c477bafe5db", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni ETH", - "poolAddress": "0xC381C7CffD07Fa22f871ae9Ec1025Cee86693B3b", - "poolType": "burnMint", "symbol": "zunETH", - "tokenAddress": "0x2d691C2492e056ADCAE7cA317569af25910fC4cb" + "tokenAddress": "0x2d691C2492e056ADCAE7cA317569af25910fC4cb", + "pool": { + "address": "0xC381C7CffD07Fa22f871ae9Ec1025Cee86693B3b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Zunami ETH", - "poolAddress": "0xe4832022873C69E14731fd9436eb7FB9538Ae86F", - "poolType": "lockRelease", "symbol": "zunETH", - "tokenAddress": "0xc2e660C62F72c2ad35AcE6DB78a616215E2F2222" + "tokenAddress": "0xc2e660C62F72c2ad35AcE6DB78a616215E2F2222", + "pool": { + "address": "0xe4832022873C69E14731fd9436eb7FB9538Ae86F", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "zunUSD": { @@ -9255,37 +13230,68 @@ "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni USD", - "poolAddress": "0x68b49DC715214A2D138B0d73A2fC82a87dC8F1C0", - "poolType": "burnMint", "symbol": "zunUSD", - "tokenAddress": "0xBfEB8B6813491bb4fB823b8f451b62eF535420D1" + "tokenAddress": "0xBfEB8B6813491bb4fB823b8f451b62eF535420D1", + "pool": { + "address": "0x68b49DC715214A2D138B0d73A2fC82a87dC8F1C0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni USD", - "poolAddress": "0x5800177Ab2cEFd1f7704A4e7eA8A309D98072fCb", - "poolType": "burnMint", "symbol": "zunUSD", - "tokenAddress": "0xD5B9dDB04f20eA773C9b56607250149B26049B1F" + "tokenAddress": "0xD5B9dDB04f20eA773C9b56607250149B26049B1F", + "pool": { + "address": "0x5800177Ab2cEFd1f7704A4e7eA8A309D98072fCb", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-mainnet-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Zunami Omni USD", - "poolAddress": "0xD4DC5f4573FE1E39a33C4e4aF8292b925B2E81Fd", - "poolType": "burnMint", "symbol": "zunUSD", - "tokenAddress": "0xdC30b3bdE2734A0Bc55AF01B38943ef04aaCB423" + "tokenAddress": "0xdC30b3bdE2734A0Bc55AF01B38943ef04aaCB423", + "pool": { + "address": "0xD4DC5f4573FE1E39a33C4e4aF8292b925B2E81Fd", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "mainnet": { "allowListEnabled": false, "decimals": 18, "name": "Zunami USD", - "poolAddress": "0x45af366C76a8C8f18806A8C404FE3E3bbA4F8AA3", - "poolType": "lockRelease", "symbol": "zunUSD", - "tokenAddress": "0x8C0D76C9B18779665475F3E212D9Ca1Ed6A1A0e6" + "tokenAddress": "0x8C0D76C9B18779665475F3E212D9Ca1Ed6A1A0e6", + "pool": { + "address": "0x45af366C76a8C8f18806A8C404FE3E3bbA4F8AA3", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } + } + }, + "WPROS": { + "pharos-mainnet": { + "allowListEnabled": false, + "decimals": 18, + "name": "Wrapped PROS", + "symbol": "WPROS", + "tokenAddress": "0x52C48d4213107b20bC583832b0d951FB9CA8F0B0", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "" + } } } } 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 208e765a076..9f58206481f 100644 --- a/src/config/data/ccip/v1_2_0/testnet/lanes.json +++ b/src/config/data/ccip/v1_2_0/testnet/lanes.json @@ -502,50 +502,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-base-1": { "offRamp": { @@ -557,36 +514,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": { @@ -653,22 +581,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"] }, "wemix-testnet": { "offRamp": { @@ -1131,50 +1044,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"] }, "celo-testnet-alfajores": { "offRamp": { @@ -1296,64 +1166,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", "syrupUSDC", "USDC"] }, "ethereum-testnet-sepolia-base-1": { "offRamp": { @@ -1365,64 +1178,7 @@ "enforceOutOfOrder": false, "version": "1.6.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", "syrupUSDC", "USDC"] }, "ethereum-testnet-sepolia-blast-1": { "offRamp": { @@ -1522,50 +1278,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": { @@ -1885,50 +1598,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", "syrupUSDC", "USDC"] }, "sonic-testnet": { "offRamp": { @@ -1940,22 +1610,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"] }, "superseed-testnet": { "offRamp": { @@ -2125,64 +1780,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", "syrupUSDC", "USDC"] }, "ethereum-testnet-sepolia-andromeda-1": { "offRamp": { @@ -2205,36 +1803,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": { @@ -2257,36 +1826,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": { @@ -2331,22 +1871,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": { @@ -2426,36 +1951,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": { @@ -2489,64 +1985,7 @@ "enforceOutOfOrder": false, "version": "1.6.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", "syrupUSDC", "USDC"] }, "ethereum-testnet-sepolia-arbitrum-1": { "offRamp": { @@ -2558,36 +1997,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": { @@ -2621,36 +2031,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": { @@ -2706,22 +2087,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"] }, "wemix-testnet": { "offRamp": { @@ -3006,50 +2372,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": { @@ -3061,36 +2384,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": { @@ -3102,36 +2396,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": { @@ -3187,36 +2452,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": { @@ -4100,22 +3336,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": { @@ -4127,50 +3348,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", "syrupUSDC", "USDC"] }, "ethereum-testnet-sepolia-arbitrum-1": { "offRamp": { @@ -4182,22 +3360,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": { @@ -4209,22 +3372,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": { @@ -4236,36 +3384,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": { @@ -4367,22 +3486,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"] } }, "superseed-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 0c8add21ee0..ff56a7c5d3a 100644 --- a/src/config/data/ccip/v1_2_0/testnet/tokens.json +++ b/src/config/data/ccip/v1_2_0/testnet/tokens.json @@ -4,9 +4,14 @@ "allowListEnabled": false, "decimals": 6, "name": "AlphaUSD", - "poolType": "feeTokenOnly", "symbol": "AlphaUSD", - "tokenAddress": "0x20C0000000000000000000000000000000000001" + "tokenAddress": "0x20C0000000000000000000000000000000000001", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "APT": { @@ -14,9 +19,14 @@ "allowListEnabled": false, "decimals": 8, "name": "Aptos Coin", - "poolType": "feeTokenOnly", "symbol": "APT", - "tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A" + "tokenAddress": "0x000000000000000000000000000000000000000000000000000000000000000A", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "BetaUSD": { @@ -24,9 +34,14 @@ "allowListEnabled": false, "decimals": 6, "name": "BetaUSD", - "poolType": "feeTokenOnly", "symbol": "BetaUSD", - "tokenAddress": "0x20C0000000000000000000000000000000000002" + "tokenAddress": "0x20C0000000000000000000000000000000000002", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "CCIP-BnM": { @@ -34,64 +49,92 @@ "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0x9F49971B7c86E258f25f5A2E1fe740c0e1B903F1", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0xbFA2ACd33ED6EEc0ed3Cc06bF1ac38d22b36B9e9" + "tokenAddress": "0xbFA2ACd33ED6EEc0ed3Cc06bF1ac38d22b36B9e9", + "pool": { + "address": "0x9F49971B7c86E258f25f5A2E1fe740c0e1B903F1", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0x4CcbDd6CF18800360161E4D2A519A2047176bDF0", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05" + "tokenAddress": "0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05", + "pool": { + "address": "0x4CcbDd6CF18800360161E4D2A519A2047176bDF0", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0x4d27Ff41AeC442562215a2CE1407cE252807890c", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0xA8C0c11bf64AF62CDCA6f93D3769B88BdD7cb93D" + "tokenAddress": "0xA8C0c11bf64AF62CDCA6f93D3769B88BdD7cb93D", + "pool": { + "address": "0x4d27Ff41AeC442562215a2CE1407cE252807890c", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0x3C12a7dA5234d1080C46baABC05efB8Fde00816b", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0x88A2d74F47a237a62e7A51cdDa67270CE381555e" + "tokenAddress": "0x88A2d74F47a237a62e7A51cdDa67270CE381555e", + "pool": { + "address": "0x3C12a7dA5234d1080C46baABC05efB8Fde00816b", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0x95A7B37D1958D25eD1758edc930B47e5616b7226", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0x8aF4204e30565DF93352fE8E1De78925F6664dA7" + "tokenAddress": "0x8aF4204e30565DF93352fE8E1De78925F6664dA7", + "pool": { + "address": "0x95A7B37D1958D25eD1758edc930B47e5616b7226", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-devnet": { "allowListEnabled": false, "decimals": 9, "name": "CCIP-BnM", - "poolAddress": "BqGg42v35Ghuigi4smWU9KKQTUnQb5ATocDbJikHjocS", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "3PjyGzj1jGVgHSKS4VR1Hr1memm63PmN8L9rtPDKwzZ6" + "tokenAddress": "3PjyGzj1jGVgHSKS4VR1Hr1memm63PmN8L9rtPDKwzZ6", + "pool": { + "address": "BqGg42v35Ghuigi4smWU9KKQTUnQb5ATocDbJikHjocS", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "sonic-testnet": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-BnM", - "poolAddress": "0xe4F5e01F25B9f7F7609dDa1FC32294a26c9Bfc41", - "poolType": "burnMint", "symbol": "CCIP-BnM", - "tokenAddress": "0xBc393E3499047B24213338C24B8E8185250dc1Cb" + "tokenAddress": "0xBc393E3499047B24213338C24B8E8185250dc1Cb", + "pool": { + "address": "0xe4F5e01F25B9f7F7609dDa1FC32294a26c9Bfc41", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "CCIP-LnM": { @@ -99,46 +142,66 @@ "allowListEnabled": false, "decimals": 18, "name": "clCCIP-LnM", - "poolAddress": "0xc3b32Cc1e0207648d174d38AfD659332D4d11341", - "poolType": "burnMint", "symbol": "clCCIP-LnM", - "tokenAddress": "0x79a4Fc27f69323660f5Bfc12dEe21c3cC14f5901" + "tokenAddress": "0x79a4Fc27f69323660f5Bfc12dEe21c3cC14f5901", + "pool": { + "address": "0xc3b32Cc1e0207648d174d38AfD659332D4d11341", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "CCIP-LnM", - "poolAddress": "0x658FdaC59a197D5166151640b7a673F7dF1Ba324", - "poolType": "lockRelease", "symbol": "CCIP-LnM", - "tokenAddress": "0x466D489b6d36E7E3b824ef491C225F5830E81cC1" + "tokenAddress": "0x466D489b6d36E7E3b824ef491C225F5830E81cC1", + "pool": { + "address": "0x658FdaC59a197D5166151640b7a673F7dF1Ba324", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "clCCIP-LnM", - "poolAddress": "0x056B16D54bCAea1C14036Bb78Fe8338d892F0262", - "poolType": "burnMint", "symbol": "clCCIP-LnM", - "tokenAddress": "0x139E99f0ab4084E14e6bb7DacA289a91a2d92927" + "tokenAddress": "0x139E99f0ab4084E14e6bb7DacA289a91a2d92927", + "pool": { + "address": "0x056B16D54bCAea1C14036Bb78Fe8338d892F0262", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 18, "name": "clCCIP-LnM", - "poolAddress": "0xB8937715574FC00a88408582C8406653a16495D7", - "poolType": "burnMint", "symbol": "clCCIP-LnM", - "tokenAddress": "0xA98FA8A008371b9408195e52734b1768c0d1Cb5c" + "tokenAddress": "0xA98FA8A008371b9408195e52734b1768c0d1Cb5c", + "pool": { + "address": "0xB8937715574FC00a88408582C8406653a16495D7", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "clCCIP-LnM", - "poolAddress": "0x69B5126A10582063B17fa3b614C5Ac6b0f1D23Ba", - "poolType": "burnMint", "symbol": "clCCIP-LnM", - "tokenAddress": "0x044a6B4b561af69D2319A2f4be5Ec327a6975D0a" + "tokenAddress": "0x044a6B4b561af69D2319A2f4be5Ec327a6975D0a", + "pool": { + "address": "0x69B5126A10582063B17fa3b614C5Ac6b0f1D23Ba", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "frxETH": { @@ -146,9 +209,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Frax Ether", - "poolType": "feeTokenOnly", "symbol": "frxETH", - "tokenAddress": "0xFC00000000000000000000000000000000000006" + "tokenAddress": "0xFC00000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "LINK": { @@ -156,625 +224,1002 @@ "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xd211Bd4ff8fd68C16016C5c7a66b6e10F6227C49" + "tokenAddress": "0xd211Bd4ff8fd68C16016C5c7a66b6e10F6227C49", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "abstract-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb" - }, - "adi-testnet": { - "allowListEnabled": false, - "decimals": 18, - "name": "ChainLink Token", - "poolType": "feeTokenOnly", - "symbol": "LINK", - "tokenAddress": "0x64c12A9Bfdb4DEB5F37A0eC4c5fae0405669612A" + "tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "apechain-testnet-curtis": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E" + "tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "aptos-testnet": { "allowListEnabled": false, "decimals": 8, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3d5d565c271d6b9c52f1a963f2b7bddad3453b0de2ace5e254b8db6549cc335e" + "tokenAddress": "0x3d5d565c271d6b9c52f1a963f2b7bddad3453b0de2ace5e254b8db6549cc335e", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "arc-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3F1f176e347235858DD6Db905DDBA09Eaf25478a" + "tokenAddress": "0x3F1f176e347235858DD6Db905DDBA09Eaf25478a", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "avalanche-fuji-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846" + "tokenAddress": "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "berachain-testnet-bartio": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271" + "tokenAddress": "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "binance-smart-chain-testnet-opbnb-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x56E16E648c51609A14Eb14B99BAB771Bee797045" + "tokenAddress": "0x56E16E648c51609A14Eb14B99BAB771Bee797045", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-bitlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48" + "tokenAddress": "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-botanix": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2" + "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-bsquared-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45" + "tokenAddress": "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-merlin": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50" + "tokenAddress": "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-rootstock": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x39dD98CcCC3a51b2c0007e23517488e363581264" + "tokenAddress": "0x39dD98CcCC3a51b2c0007e23517488e363581264", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-sepolia-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183" + "tokenAddress": "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bsc-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06" + "tokenAddress": "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "celo-testnet-alfajores": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x32E08557B14FaD8908025619797221281D439071" + "tokenAddress": "0x32E08557B14FaD8908025619797221281D439071", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "core-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x6C475841d1D7871940E93579E5DBaE01634e17aA" + "tokenAddress": "0x6C475841d1D7871940E93579E5DBaE01634e17aA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "cronos-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262" + "tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "cronos-zkevm-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827" + "tokenAddress": "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "dogeos-testnet-chikyu": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-holesky": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B" + "tokenAddress": "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-holesky-fraxtal-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF" + "tokenAddress": "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-holesky-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c" + "tokenAddress": "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-hoodi": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x76c00B055414de203B79B4955E28119BF459033e" + "tokenAddress": "0x76c00B055414de203B79B4955E28119BF459033e", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-hoodi-morph": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x779877A7B0D9E8603169DdbD7836e478b4624789" + "tokenAddress": "0x779877A7B0D9E8603169DdbD7836e478b4624789", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-andromeda-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x9870D6a0e05F867EAAe696e106741843F7fD116D" + "tokenAddress": "0x9870D6a0e05F867EAAe696e106741843F7fD116D", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E" + "tokenAddress": "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410" + "tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32" + "tokenAddress": "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-corn-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1" + "tokenAddress": "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-hashkey-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57" + "tokenAddress": "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-kroma-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8" + "tokenAddress": "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-lens-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36" + "tokenAddress": "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xF64E6E064a71B45514691D397ad4204972cD6508" + "tokenAddress": "0xF64E6E064a71B45514691D397ad4204972cD6508", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-lisk-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb" + "tokenAddress": "0x6641415a61bCe80D97a715054d1334360Ab833Eb", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-mantle-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04" + "tokenAddress": "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d" + "tokenAddress": "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410" + "tokenAddress": "0xE4aB69C077896252FAFBD49EFD26B5D171A32410", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-polygon-zkevm-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x5576815a38A3706f37bf815b261cCc7cCA77e975" + "tokenAddress": "0x5576815a38A3706f37bf815b261cCc7cCA77e975", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x231d45b53C905c3d6201318156BDC725c9c3B9B1" + "tokenAddress": "0x231d45b53C905c3d6201318156BDC725c9c3B9B1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-soneium-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2" + "tokenAddress": "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-unichain-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xda40816f278Cd049c137F6612822D181065EBfB4" + "tokenAddress": "0xda40816f278Cd049c137F6612822D181065EBfB4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-worldchain-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801" + "tokenAddress": "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-xlayer-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55" + "tokenAddress": "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e" + "tokenAddress": "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hedera-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6" + "tokenAddress": "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hemi-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x5246409a2e09134824c4E709602205B176491e57" + "tokenAddress": "0x5246409a2e09134824c4E709602205B176491e57", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ink-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4" + "tokenAddress": "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "janction-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2" + "tokenAddress": "0x7311DED199CC28D80E58e81e8589aa160199FCD2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "jovay-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xd3e461C55676B10634a5F81b747c324B85686Dd1" + "tokenAddress": "0xd3e461C55676B10634a5F81b747c324B85686Dd1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "kaia-testnet-kairos": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xAF3243f975afe2269Da8Ffa835CA3A8F8B6A5A36" + "tokenAddress": "0xAF3243f975afe2269Da8Ffa835CA3A8F8B6A5A36", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "megaeth-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x4d03398C2588D92B220578dAEde29814E41c8033" + "tokenAddress": "0x4d03398C2588D92B220578dAEde29814E41c8033", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "memento-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "metal-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237" + "tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mind-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4" + "tokenAddress": "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mint-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237" + "tokenAddress": "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "monad-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "neox-testnet-t4": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x7F85bAC57B5D4b81F866F495c30AB8C8c453f6FD" + "tokenAddress": "0x7F85bAC57B5D4b81F866F495c30AB8C8c453f6FD", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "pharos-atlantic-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x2f79e049f552E600D5d8118923278Aa0fCD67179" + "tokenAddress": "0x2f79e049f552E600D5d8118923278Aa0fCD67179", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "plasma-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "plume-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068" + "tokenAddress": "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polkadot-testnet-astar-shibuya": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe74037112db8807B3B4B3895F5790e5bc1866a29" + "tokenAddress": "0xe74037112db8807B3B4B3895F5790e5bc1866a29", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polygon-testnet-amoy": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904" + "tokenAddress": "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polygon-testnet-tatara": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x29261B6Fb93097885bEB714ee253Da63A52dFc46" + "tokenAddress": "0x29261B6Fb93097885bEB714ee253Da63A52dFc46", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "sei-testnet-atlantic": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B" + "tokenAddress": "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "shibarium-testnet-puppynet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x44637eEfD71A090990f89faEC7022fc74B2969aD" + "tokenAddress": "0x44637eEfD71A090990f89faEC7022fc74B2969aD", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "solana-devnet": { "allowListEnabled": false, "decimals": 9, "name": "Chainlink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L" + "tokenAddress": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "sonic-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x19e696e75ccbB3155EEbB579BFa555Fab22293bA" + "tokenAddress": "0x19e696e75ccbB3155EEbB579BFa555Fab22293bA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "superseed-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956" + "tokenAddress": "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "tac-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "tempo-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x384C8843411f725e800E625d5d1B659256D629dF" + "tokenAddress": "0x384C8843411f725e800E625d5d1B659256D629dF", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "treasure-testnet-topaz": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5" + "tokenAddress": "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "wemix-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093" + "tokenAddress": "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "xdai-testnet-chiado": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xDCA67FD8324990792C0bfaE95903B8A64097754F" + "tokenAddress": "0xDCA67FD8324990792C0bfaE95903B8A64097754F", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "xdc-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54" + "tokenAddress": "0xe5e3a4fF1773d043a387b16Ceb3c91cC49bAFD54", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "zora-testnet": { "allowListEnabled": false, "decimals": 18, "name": "ChainLink Token", - "poolType": "feeTokenOnly", "symbol": "LINK", - "tokenAddress": "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e" + "tokenAddress": "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "OG": { @@ -782,9 +1227,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped A0GI", - "poolType": "feeTokenOnly", "symbol": "WA0GI", - "tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c" + "tokenAddress": "0x1Cd0690fF9a693f5EF2dD976660a8dAFc81A109c", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "syrupUSDC": { @@ -792,37 +1242,53 @@ "allowListEnabled": false, "decimals": 6, "name": "S-USDCircle", - "poolAddress": "0x98C80d0235Eaae38200720Ae86e2D6a62b3B19c9", - "poolType": "lockRelease", "symbol": "syrupUSDCircle", - "tokenAddress": "0xb1206B74F612F478c12A647D12E7e822AF5D8244" + "tokenAddress": "0xb1206B74F612F478c12A647D12E7e822AF5D8244", + "pool": { + "address": "0x98C80d0235Eaae38200720Ae86e2D6a62b3B19c9", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0xB2F73a7540A000b383e8a9ffb3BdEECc4709Dc4D", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "0xbc9A4b299741CBf2A8eD5D2078A426027C31B2A3" + "tokenAddress": "0xbc9A4b299741CBf2A8eD5D2078A426027C31B2A3", + "pool": { + "address": "0xB2F73a7540A000b383e8a9ffb3BdEECc4709Dc4D", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "0xB6bD6e3e56a8E28CCbE44b6442cA8b586B964Af8", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "0x183F67cE6CCCeaBB5D79c69C2d92e78111736B62" + "tokenAddress": "0x183F67cE6CCCeaBB5D79c69C2d92e78111736B62", + "pool": { + "address": "0xB6bD6e3e56a8E28CCbE44b6442cA8b586B964Af8", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "solana-devnet": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDC", - "poolAddress": "B3rp2RHbuZeDeSSZLXww3EbaMr1TVtn9kF2a2FAobnxi", - "poolType": "burnMint", "symbol": "syrupUSDC", - "tokenAddress": "95Er6pcK2agiTa2Jctp1BBnQtuDfX1d78XSTZKWZyXKk" + "tokenAddress": "95Er6pcK2agiTa2Jctp1BBnQtuDfX1d78XSTZKWZyXKk", + "pool": { + "address": "B3rp2RHbuZeDeSSZLXww3EbaMr1TVtn9kF2a2FAobnxi", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } } }, "syrupUSDT": { @@ -830,19 +1296,27 @@ "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT", - "poolAddress": "0xC35b5f794ba3Fd629E642Eb0d80e0ecc84da7B96", - "poolType": "burnMint", "symbol": "syrupUSDT", - "tokenAddress": "0x7e4Df3e1bB9b5E42dc334670F1844cD6037b8685" + "tokenAddress": "0x7e4Df3e1bB9b5E42dc334670F1844cD6037b8685", + "pool": { + "address": "0xC35b5f794ba3Fd629E642Eb0d80e0ecc84da7B96", + "rawType": "BurnMint", + "type": "burnMint", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia": { "allowListEnabled": false, "decimals": 6, "name": "Syrup USDT Demo", - "poolAddress": "0x83703f6601eDF05Bf9A30F03ba1F1B195BFdDEe9", - "poolType": "lockRelease", "symbol": "syrupUSDT", - "tokenAddress": "0x7679CBe9aE66298114AC6dAC73487B63ac023c0b" + "tokenAddress": "0x7679CBe9aE66298114AC6dAC73487B63ac023c0b", + "pool": { + "address": "0x83703f6601eDF05Bf9A30F03ba1F1B195BFdDEe9", + "rawType": "LockRelease", + "type": "lockRelease", + "version": "1.6.0" + } } }, "ThetaUSD": { @@ -850,9 +1324,14 @@ "allowListEnabled": false, "decimals": 6, "name": "ThetaUSD", - "poolType": "feeTokenOnly", "symbol": "ThetaUSD", - "tokenAddress": "0x20C0000000000000000000000000000000000003" + "tokenAddress": "0x20C0000000000000000000000000000000000003", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "USDC": { @@ -860,56 +1339,66 @@ "allowListEnabled": false, "decimals": 6, "name": "USDC", - "poolAddress": "0x02eef4b366225362180d704C917c50f6c46af9e0", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238" + "tokenAddress": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", + "pool": { + "address": "0x02eef4b366225362180d704C917c50f6c46af9e0", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "0xeA2912f446Ff28663D2E5A971da751A84E409292", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d" + "tokenAddress": "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d", + "pool": { + "address": "0xeA2912f446Ff28663D2E5A971da751A84E409292", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 6, "name": "USDC", - "poolAddress": "0x63d023db6e9b2a838Cf4cc54903d2C2D825A2967", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e" + "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", + "pool": { + "address": "0x63d023db6e9b2a838Cf4cc54903d2C2D825A2967", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-optimism-1": { "allowListEnabled": false, "decimals": 6, "name": "USDC", - "poolAddress": "0x8E9066E66bF1B8A4eAF2344589De9ff82CE47C2d", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "0x5fd84259d66Cd46123540766Be93DFE6D43130D7" + "tokenAddress": "0x5fd84259d66Cd46123540766Be93DFE6D43130D7", + "pool": { + "address": "0x8E9066E66bF1B8A4eAF2344589De9ff82CE47C2d", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } }, "solana-devnet": { "allowListEnabled": false, "decimals": 6, "name": "USD Coin", - "poolAddress": "7hCNZAWQNSq49CCA1KtjLuZbK5cWguRSVVsJcMa3C5zL", - "poolType": "usdc", "symbol": "USDC", - "tokenAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU" - } - }, - "WADI": { - "adi-testnet": { - "allowListEnabled": false, - "decimals": 18, - "name": "Wrapped ADI", - "poolType": "feeTokenOnly", - "symbol": "WADI", - "tokenAddress": "0xddeA1446FD21e3d2CB934A78Fe200a266739fad4" + "tokenAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU", + "pool": { + "address": "7hCNZAWQNSq49CCA1KtjLuZbK5cWguRSVVsJcMa3C5zL", + "rawType": "usdc", + "type": "usdc", + "version": "1.6.0" + } } }, "WAPE": { @@ -917,9 +1406,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped ApeCoin", - "poolType": "feeTokenOnly", "symbol": "WAPE", - "tokenAddress": "0x1762A2B15f63ca4E1165A9385cB40412CF545aC3" + "tokenAddress": "0x1762A2B15f63ca4E1165A9385cB40412CF545aC3", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WAVAX": { @@ -927,9 +1421,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped AVAX", - "poolType": "feeTokenOnly", "symbol": "WAVAX", - "tokenAddress": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c" + "tokenAddress": "0xd00ae08403B9bbb9124bB305C09058E32C39A48c", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBERA": { @@ -937,27 +1436,29 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Bera", - "poolType": "feeTokenOnly", "symbol": "WBERA", - "tokenAddress": "0x7507c1dc16935B82698e4C63f2746A2fCf994dF8" + "tokenAddress": "0x7507c1dc16935B82698e4C63f2746A2fCf994dF8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBNB": { - "binance-smart-chain-testnet-opbnb-1": { - "allowListEnabled": false, - "decimals": 18, - "name": "Wrapped BNB", - "poolType": "feeTokenOnly", - "symbol": "WBNB", - "tokenAddress": "0x4200000000000000000000000000000000000006" - }, "bsc-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped BNB", - "poolType": "feeTokenOnly", "symbol": "WBNB", - "tokenAddress": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd" + "tokenAddress": "0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBONE": { @@ -965,9 +1466,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Shibarium Wrapped BONE", - "poolType": "feeTokenOnly", "symbol": "WBONE", - "tokenAddress": "0x41c3F37587EBcD46C0F85eF43E38BcfE1E70Ab56" + "tokenAddress": "0x41c3F37587EBcD46C0F85eF43E38BcfE1E70Ab56", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBTC": { @@ -975,33 +1481,53 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0x3e57d6946f893314324C975AA9CEBBdF3232967E" + "tokenAddress": "0x3e57d6946f893314324C975AA9CEBBdF3232967E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-botanix": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped BTC TOKEN", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0x233631132FD56c8f86D1FC97F0b82420a8d20af3" + "tokenAddress": "0x233631132FD56c8f86D1FC97F0b82420a8d20af3", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-bsquared-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-merlin": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Bitcoin", - "poolType": "feeTokenOnly", "symbol": "WBTC", - "tokenAddress": "0x1A6357313BA1B6bc92e7325A9BAf241Ca3e493dD" + "tokenAddress": "0x1A6357313BA1B6bc92e7325A9BAf241Ca3e493dD", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WBTCN": { @@ -1009,9 +1535,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Bitcorn", - "poolType": "feeTokenOnly", "symbol": "WBTCN", - "tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2" + "tokenAddress": "0xda5dDd7270381A7C2717aD10D1c0ecB19e3CDFb2", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCELO": { @@ -1019,9 +1550,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Celo", - "poolType": "feeTokenOnly", "symbol": "WCELO", - "tokenAddress": "0x99604d0e2EfE7ABFb58BdE565b5330Bb46Ab3Dca" + "tokenAddress": "0x99604d0e2EfE7ABFb58BdE565b5330Bb46Ab3Dca", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCORE": { @@ -1029,9 +1565,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped CORE", - "poolType": "feeTokenOnly", "symbol": "WCORE", - "tokenAddress": "0x7Ce5fCfFd1296d870b3578809B31D8CA8bF5aC3d" + "tokenAddress": "0x7Ce5fCfFd1296d870b3578809B31D8CA8bF5aC3d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WCRO": { @@ -1039,9 +1580,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped CRO", - "poolType": "feeTokenOnly", "symbol": "WCRO", - "tokenAddress": "0x5C50653Ada833D649a718ba4D1Fb9e2EE49c202d" + "tokenAddress": "0x5C50653Ada833D649a718ba4D1Fb9e2EE49c202d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WDOGE": { @@ -1049,9 +1595,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Doge", - "poolType": "feeTokenOnly", "symbol": "WDOGE", - "tokenAddress": "0xF6BDB158A5ddF77F1B83bC9074F6a472c58D78aE" + "tokenAddress": "0xF6BDB158A5ddF77F1B83bC9074F6a472c58D78aE", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WETH": { @@ -1059,289 +1610,469 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x9EDCde0257F2386Ce177C3a7FCdd97787F0D841d" + "tokenAddress": "0x9EDCde0257F2386Ce177C3a7FCdd97787F0D841d", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-bsquared-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "bitcoin-testnet-sepolia-bob-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-holesky": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x94373a4919B3240D86eA41593D5eBa789FEF3848" + "tokenAddress": "0x94373a4919B3240D86eA41593D5eBa789FEF3848", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-holesky-taiko-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xae2C46ddb314B9Ba743C6dEE4878F151881333D9" + "tokenAddress": "0xae2C46ddb314B9Ba743C6dEE4878F151881333D9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-hoodi": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped ETH", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xF0b60c40554fE9d385EB5F1Ec03471f0d66EC589" + "tokenAddress": "0xF0b60c40554fE9d385EB5F1Ec03471f0d66EC589", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-hoodi-morph": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x5300000000000000000000000000000000000011" + "tokenAddress": "0x5300000000000000000000000000000000000011", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x097D90c9d3E0B50Ca60e1ae45F6A81010f9FB534" + "tokenAddress": "0x097D90c9d3E0B50Ca60e1ae45F6A81010f9FB534", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-arbitrum-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xE591bf0A0CF924A0674d7792db046B23CEbF5f34" + "tokenAddress": "0xE591bf0A0CF924A0674d7792db046B23CEbF5f34", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-base-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-blast-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000023" + "tokenAddress": "0x4200000000000000000000000000000000000023", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-kroma-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000001" + "tokenAddress": "0x4200000000000000000000000000000000000001", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-linea-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x06565ed324Ee9fb4DB0FF80B7eDbE4Cb007555a3" + "tokenAddress": "0x06565ed324Ee9fb4DB0FF80B7eDbE4Cb007555a3", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-lisk-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-mode-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-optimism-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-polygon-zkevm-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x1CE28d5C81B229c77C5651feB49c4C489f8c52C4" + "tokenAddress": "0x1CE28d5C81B229c77C5651feB49c4C489f8c52C4", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-scroll-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x5300000000000000000000000000000000000004" + "tokenAddress": "0x5300000000000000000000000000000000000004", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-soneium-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-unichain-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-worldchain-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ethereum-testnet-sepolia-zksync-1": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4317b2eCD41851173175005783322D29E9bAee9E" + "tokenAddress": "0x4317b2eCD41851173175005783322D29E9bAee9E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "hemi-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x0C8aFD1b58aa2A5bAd2414B861D8A7fF898eDC3A" + "tokenAddress": "0x0C8aFD1b58aa2A5bAd2414B861D8A7fF898eDC3A", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "ink-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "janction-testnet-sepolia": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "jovay-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xFe06d41BA962A74209845f938c387b363a931505" + "tokenAddress": "0xFe06d41BA962A74209845f938c387b363a931505", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "megaeth-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E" + "tokenAddress": "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "memento-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x85Be6b6ff4e61C3bEB0Fb73a2A9dC3A80e279c86" + "tokenAddress": "0x85Be6b6ff4e61C3bEB0Fb73a2A9dC3A80e279c86", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "metal-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mind-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x12e3b49DF7dD40792EFbB1B3eAB1295951Bad5EE" + "tokenAddress": "0x12e3b49DF7dD40792EFbB1B3eAB1295951Bad5EE", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "mint-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "monad-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xdE4E7FED43FAC37EB21aA0643d9852f75332eab8" + "tokenAddress": "0xdE4E7FED43FAC37EB21aA0643d9852f75332eab8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "plasma-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xc2e1B8e9a765A19315cD9BbbD84a1BB6DC3FC335" + "tokenAddress": "0xc2e1B8e9a765A19315cD9BbbD84a1BB6DC3FC335", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "polygon-testnet-tatara": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "superseed-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } }, "zora-testnet": { "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WFRXETH": { @@ -1349,9 +2080,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Frax Ether", - "poolType": "feeTokenOnly", "symbol": "wfrxETH", - "tokenAddress": "0xFC00000000000000000000000000000000000006" + "tokenAddress": "0xFC00000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WGAS10": { @@ -1359,9 +2095,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped GAS v10", - "poolType": "feeTokenOnly", "symbol": "WGAS10", - "tokenAddress": "0x1CE16390FD09040486221e912B87551E4e44Ab17" + "tokenAddress": "0x1CE16390FD09040486221e912B87551E4e44Ab17", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WGRASS": { @@ -1369,9 +2110,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Grass", - "poolType": "feeTokenOnly", "symbol": "WGRASS", - "tokenAddress": "0xeee5a340Cdc9c179Db25dea45AcfD5FE8d4d3eB8" + "tokenAddress": "0xeee5a340Cdc9c179Db25dea45AcfD5FE8d4d3eB8", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WHBAR": { @@ -1379,9 +2125,14 @@ "allowListEnabled": false, "decimals": 8, "name": "Wrapped HBAR", - "poolType": "feeTokenOnly", "symbol": "WHBAR", - "tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed" + "tokenAddress": "0xb1F616b8134F602c3Bb465fB5b5e6565cCAd37Ed", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WHSK": { @@ -1389,9 +2140,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Hashkey", - "poolType": "feeTokenOnly", "symbol": "WHSK", - "tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262" + "tokenAddress": "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WKAIA": { @@ -1399,9 +2155,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Ether", - "poolType": "feeTokenOnly", "symbol": "WETH", - "tokenAddress": "0xF04fcEC93DEB6191B704a0ec5d0FFF2A8B2c39be" + "tokenAddress": "0xF04fcEC93DEB6191B704a0ec5d0FFF2A8B2c39be", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMAGIC": { @@ -1409,9 +2170,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped MAGIC", - "poolType": "feeTokenOnly", "symbol": "WMAGIC", - "tokenAddress": "0x095ded714d42cBD5fb2E84A0FfbFb140E38dC9E1" + "tokenAddress": "0x095ded714d42cBD5fb2E84A0FfbFb140E38dC9E1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMETIS": { @@ -1419,9 +2185,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Metis", - "poolType": "feeTokenOnly", "symbol": "WMETIS", - "tokenAddress": "0x5c48e07062aC4E2Cf4b9A768a711Aef18e8fbdA0" + "tokenAddress": "0x5c48e07062aC4E2Cf4b9A768a711Aef18e8fbdA0", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMNT": { @@ -1429,9 +2200,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Mantle", - "poolType": "feeTokenOnly", "symbol": "WMNT", - "tokenAddress": "0x19f5557E23e9914A18239990f6C70D68FDF0deD5" + "tokenAddress": "0x19f5557E23e9914A18239990f6C70D68FDF0deD5", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WMON": { @@ -1439,9 +2215,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped MON", - "poolType": "feeTokenOnly", "symbol": "WMON", - "tokenAddress": "0xFb8bf4c1CC7a94c73D209a149eA2AbEa852BC541" + "tokenAddress": "0xFb8bf4c1CC7a94c73D209a149eA2AbEa852BC541", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WOKB": { @@ -1449,9 +2230,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped OKB", - "poolType": "feeTokenOnly", "symbol": "WOKB", - "tokenAddress": "0xa7b9C3a116b20bEDDdBE4d90ff97157f67F0bD97" + "tokenAddress": "0xa7b9C3a116b20bEDDdBE4d90ff97157f67F0bD97", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WPHRS": { @@ -1459,9 +2245,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Pharos", - "poolType": "feeTokenOnly", "symbol": "WPHRS", - "tokenAddress": "0x838800b758277CC111B2d48Ab01e5E164f8E9471" + "tokenAddress": "0x838800b758277CC111B2d48Ab01e5E164f8E9471", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WPLUME": { @@ -1469,9 +2260,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Plume", - "poolType": "feeTokenOnly", "symbol": "WPLUME", - "tokenAddress": "0xC1FD14775c8665B31c7154074f537338774351EB" + "tokenAddress": "0xC1FD14775c8665B31c7154074f537338774351EB", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WPOL": { @@ -1479,9 +2275,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Polygon Ecosystem Token", - "poolType": "feeTokenOnly", "symbol": "WPOL", - "tokenAddress": "0x360ad4f9a9A8EFe9A8DCB5f461c4Cc1047E1Dcf9" + "tokenAddress": "0x360ad4f9a9A8EFe9A8DCB5f461c4Cc1047E1Dcf9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WRBTC": { @@ -1489,9 +2290,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped RBTC", - "poolType": "feeTokenOnly", "symbol": "WRBTC", - "tokenAddress": "0x09B6Ca5E4496238a1F176aEA6bB607db96C2286E" + "tokenAddress": "0x09B6Ca5E4496238a1F176aEA6bB607db96C2286E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WS": { @@ -1499,9 +2305,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Sonic", - "poolType": "feeTokenOnly", "symbol": "WS", - "tokenAddress": "0x4C344A0E257bF949D67A89be8B4516306D90E23E" + "tokenAddress": "0x4C344A0E257bF949D67A89be8B4516306D90E23E", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WSBY": { @@ -1509,9 +2320,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Shibuya", - "poolType": "feeTokenOnly", "symbol": "WSBY", - "tokenAddress": "0xbd5F3751856E11f3e80dBdA567Ef91Eb7e874791" + "tokenAddress": "0xbd5F3751856E11f3e80dBdA567Ef91Eb7e874791", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WSEI": { @@ -1519,9 +2335,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped SEI", - "poolType": "feeTokenOnly", "symbol": "WSEI", - "tokenAddress": "0x3921eA6Cf927BE80211Bb57f19830700285b0AdA" + "tokenAddress": "0x3921eA6Cf927BE80211Bb57f19830700285b0AdA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WSOL": { @@ -1529,9 +2350,14 @@ "allowListEnabled": false, "decimals": 9, "name": "Wrapped Solana", - "poolType": "feeTokenOnly", "symbol": "WSOL", - "tokenAddress": "So11111111111111111111111111111111111111112" + "tokenAddress": "So11111111111111111111111111111111111111112", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WTAC": { @@ -1539,9 +2365,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped TAC", - "poolType": "feeTokenOnly", "symbol": "WTAC", - "tokenAddress": "0xCf61405b7525F09f4E7501fc831fE7cbCc823d4c" + "tokenAddress": "0xCf61405b7525F09f4E7501fc831fE7cbCc823d4c", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WTBNB": { @@ -1549,9 +2380,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped BNB", - "poolType": "feeTokenOnly", "symbol": "WBNB", - "tokenAddress": "0x4200000000000000000000000000000000000006" + "tokenAddress": "0x4200000000000000000000000000000000000006", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WTEMP": { @@ -1559,9 +2395,14 @@ "allowListEnabled": false, "decimals": 18, "name": "WTEMP", - "poolType": "feeTokenOnly", "symbol": "WTEMP", - "tokenAddress": "0xe875EB5437E55B74D18f6C090a5A14e4804dB2d9" + "tokenAddress": "0xe875EB5437E55B74D18f6C090a5A14e4804dB2d9", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WUSDC": { @@ -1569,9 +2410,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped USDC", - "poolType": "feeTokenOnly", "symbol": "WUSDC", - "tokenAddress": "0xbf4B839A7939a52acbF8fC52D5Bd5BFE69a064EA" + "tokenAddress": "0xbf4B839A7939a52acbF8fC52D5Bd5BFE69a064EA", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WWEMIX": { @@ -1579,9 +2425,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped Wemix", - "poolType": "feeTokenOnly", "symbol": "WWEMIX", - "tokenAddress": "0xbE3686643c05f00eC46e73da594c78098F7a9Ae7" + "tokenAddress": "0xbE3686643c05f00eC46e73da594c78098F7a9Ae7", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXDAI": { @@ -1589,9 +2440,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XDAI", - "poolType": "feeTokenOnly", "symbol": "WXDAI", - "tokenAddress": "0x18c8a7ec7897177E4529065a7E7B0878358B3BfF" + "tokenAddress": "0x18c8a7ec7897177E4529065a7E7B0878358B3BfF", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXDC": { @@ -1599,9 +2455,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XDC", - "poolType": "feeTokenOnly", "symbol": "WXDC", - "tokenAddress": "0x56408DC41E35d3E8E92A16bc94787438df9387a1" + "tokenAddress": "0x56408DC41E35d3E8E92A16bc94787438df9387a1", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WXPL": { @@ -1609,9 +2470,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped XPL", - "poolType": "feeTokenOnly", "symbol": "WXPL", - "tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873" + "tokenAddress": "0x6100E367285b01F48D07953803A2d8dCA5D19873", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } }, "WZKCRO": { @@ -1619,9 +2485,14 @@ "allowListEnabled": false, "decimals": 18, "name": "Wrapped zkCRO", - "poolType": "feeTokenOnly", "symbol": "wzkCRO", - "tokenAddress": "0xeD73b53197189BE3Ff978069cf30eBc28a8B5837" + "tokenAddress": "0xeD73b53197189BE3Ff978069cf30eBc28a8B5837", + "pool": { + "address": "", + "rawType": "feeTokenOnly", + "type": "feeTokenOnly", + "version": "1.6.0" + } } } } 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 792bbc2f6d7..90f951aaf24 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" } @@ -174,10 +175,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/__tests__/validate-internal-id-format.test.ts b/src/lib/ccip/__tests__/validate-internal-id-format.test.ts new file mode 100644 index 00000000000..f5d22ab6f1d --- /dev/null +++ b/src/lib/ccip/__tests__/validate-internal-id-format.test.ts @@ -0,0 +1,65 @@ +import { describe, it, expect } from "@jest/globals" +import { validateInternalIdFormat, CCIPError } from "~/lib/ccip/utils.ts" + +describe("validateInternalIdFormat", () => { + describe("valid inputs", () => { + it("should accept 'selector' format", () => { + expect(validateInternalIdFormat("selector")).toBe("selector") + }) + + it("should accept 'directory' format", () => { + expect(validateInternalIdFormat("directory")).toBe("directory") + }) + }) + + describe("default behavior", () => { + it("should default to 'selector' when undefined", () => { + expect(validateInternalIdFormat(undefined)).toBe("selector") + }) + + it("should default to 'selector' for empty string", () => { + // Empty string is falsy, should trigger default + expect(validateInternalIdFormat("")).toBe("selector") + }) + }) + + describe("invalid inputs", () => { + it("should throw CCIPError for 'invalid'", () => { + expect(() => validateInternalIdFormat("invalid")).toThrow(CCIPError) + }) + + it("should throw CCIPError for 'chainId'", () => { + expect(() => validateInternalIdFormat("chainId")).toThrow(CCIPError) + }) + + it("should throw CCIPError for 'selectorName'", () => { + expect(() => validateInternalIdFormat("selectorName")).toThrow(CCIPError) + }) + + it("should throw CCIPError for 'internal'", () => { + expect(() => validateInternalIdFormat("internal")).toThrow(CCIPError) + }) + + it("should throw CCIPError for 'SELECTOR' (case-sensitive)", () => { + expect(() => validateInternalIdFormat("SELECTOR")).toThrow(CCIPError) + }) + + it("should throw CCIPError for 'DIRECTORY' (case-sensitive)", () => { + expect(() => validateInternalIdFormat("DIRECTORY")).toThrow(CCIPError) + }) + }) + + describe("error details", () => { + it("should throw CCIPError with correct message", () => { + try { + validateInternalIdFormat("invalid") + fail("Expected CCIPError to be thrown") + } catch (error) { + expect(error).toBeInstanceOf(CCIPError) + const ccipError = error as CCIPError + expect(ccipError.message).toBe('internalIdFormat must be "directory" or "selector".') + expect(ccipError.statusCode).toBe(400) + } + }) + }) +}) diff --git a/src/lib/ccip/services-api/faucet/error-handler.ts b/src/lib/ccip/services-api/faucet/error-handler.ts index a34b6e00c1c..228b478cb38 100644 --- a/src/lib/ccip/services-api/faucet/error-handler.ts +++ b/src/lib/ccip/services-api/faucet/error-handler.ts @@ -254,9 +254,9 @@ export async function handleFaucetError( APIErrorType.VALIDATION_ERROR, `You can request tokens again in ${timeInfo.displayTime}`, 429, // Rate limit status + requestId, { code: "RATE_LIMIT_ACTIVE", - traceId: requestId, remainingSeconds: timeInfo.remainingSeconds, nextAvailable: timeInfo.nextAvailable.toISOString(), displayTime: timeInfo.displayTime, @@ -279,37 +279,33 @@ export async function handleFaucetError( if (errorMessage.includes(pattern)) { const responseData = { code: mapping.code, - traceId: requestId, ...(mapping.retryAfter && { retryAfter: mapping.retryAfter }), } - return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, responseData) + return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, requestId, responseData) } } // Check for partial matches for compound error messages if (errorMessage.includes("insufficient") && errorMessage.includes("funds")) { const mapping = ERROR_MAPPINGS["insufficient funds"] - return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, { + return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, requestId, { code: mapping.code, - traceId: requestId, retryAfter: mapping.retryAfter, }) } if (errorMessage.includes("invalid") && errorMessage.includes("mint")) { const mapping = ERROR_MAPPINGS["invalid mint"] - return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, { + return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, requestId, { code: mapping.code, - traceId: requestId, }) } if (errorMessage.includes("timeout") || errorMessage.includes("deadline")) { const mapping = ERROR_MAPPINGS["timeout exceeded"] - return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, { + return createErrorResponse(mapping.errorType, mapping.userMessage, mapping.httpStatus, requestId, { code: mapping.code, - traceId: requestId, }) } @@ -318,9 +314,9 @@ export async function handleFaucetError( APIErrorType.SERVER_ERROR, "We encountered an issue processing your request. Please try again or contact support if this continues.", 500, + requestId, { code: "UNEXPECTED_FAUCET_ERROR", - traceId: requestId, } ) } diff --git a/src/lib/ccip/services/chain-identifier.ts b/src/lib/ccip/services/chain-identifier.ts new file mode 100644 index 00000000000..7290931a9dc --- /dev/null +++ b/src/lib/ccip/services/chain-identifier.ts @@ -0,0 +1,196 @@ +import { loadReferenceData, Version } from "@config/data/ccip/index.ts" +import type { ChainConfig } from "@config/data/ccip/types.ts" +import { getSelectorEntry } from "@config/data/ccip/selectors.ts" +import { getChainId, getChainTypeAndFamily, directoryToSupportedChain } from "~/features/utils/index.ts" +import { Environment, NamingConvention } from "~/lib/ccip/types/index.ts" +import { logger } from "@lib/logging/index.js" + +/** + * Result of resolving a chain identifier + */ +export interface ResolvedChain { + directoryKey: string // Key in chains.json (for internal data lookups) + selectorName: string // Name in selectors.yml (canonical form) + inputConvention: NamingConvention // Which convention was used in the input +} + +/** + * Service for handling chain identifier resolution and formatting. + * Supports bidirectional mapping between directory keys and selector names. + * + * This enables the API to: + * 1. Accept both naming conventions as input + * 2. Mirror the user's chosen convention in responses + * 3. Maintain backward compatibility (default to selector names) + */ +export class ChainIdentifierService { + private directoryToSelector: Map = new Map() + private selectorToDirectory: Map = new Map() + private directoryKeys: Set = new Set() + private readonly requestId: string + + constructor( + private readonly environment: Environment, + private readonly defaultConvention: NamingConvention = "selector" + ) { + this.requestId = crypto.randomUUID() + this.buildMappings() + } + + /** + * Build bidirectional mappings between directory keys and selector names + */ + private buildMappings(): void { + const { chainsReferenceData } = loadReferenceData({ + environment: this.environment, + version: Version.V1_2_0, + }) + + for (const [directoryKey] of Object.entries(chainsReferenceData as Record)) { + this.directoryKeys.add(directoryKey) + + try { + // Get chain ID and type to look up the selector entry + const supportedChain = directoryToSupportedChain(directoryKey) + const chainId = getChainId(supportedChain) + const { chainType } = getChainTypeAndFamily(supportedChain) + + if (chainId) { + const selectorEntry = getSelectorEntry(chainId, chainType) + if (selectorEntry?.name) { + const selectorName = selectorEntry.name + + // Only add mapping if names are different + if (selectorName !== directoryKey) { + this.directoryToSelector.set(directoryKey, selectorName) + this.selectorToDirectory.set(selectorName, directoryKey) + } + } + } + } catch { + // Skip chains that can't be resolved + logger.debug({ + message: "Could not resolve chain for mapping", + requestId: this.requestId, + directoryKey, + }) + } + } + + logger.debug({ + message: "Chain identifier mappings built", + requestId: this.requestId, + mappingCount: this.directoryToSelector.size, + directoryKeyCount: this.directoryKeys.size, + }) + } + + /** + * Check if an identifier is a directory key (chains.json key) + */ + isDirectoryKey(identifier: string): boolean { + return this.directoryKeys.has(identifier) + } + + /** + * Check if an identifier is a selector name (selectors.yml name) + */ + isSelectorName(identifier: string): boolean { + // It's a selector name if: + // 1. It maps to a directory key, OR + // 2. It's a directory key that has no different selector name (they're the same) + return this.selectorToDirectory.has(identifier) || this.directoryKeys.has(identifier) + } + + /** + * Resolve a chain identifier to both directory key and selector name. + * Detects which convention was used in the input. + * + * @param identifier - Chain identifier (directory key or selector name) + * @returns Resolved chain info or null if not found + */ + resolve(identifier: string): ResolvedChain | null { + // Check if it's a directory key + if (this.directoryKeys.has(identifier)) { + const selectorName = this.directoryToSelector.get(identifier) ?? identifier + return { + directoryKey: identifier, + selectorName, + inputConvention: "directory", + } + } + + // Check if it's a selector name that maps to a directory key + if (this.selectorToDirectory.has(identifier)) { + const directoryKey = this.selectorToDirectory.get(identifier)! + return { + directoryKey, + selectorName: identifier, + inputConvention: "selector", + } + } + + // Not found + return null + } + + /** + * Format a directory key using the specified naming convention. + * + * @param directoryKey - The chains.json key + * @param convention - Which format to output + * @returns Formatted identifier + */ + format(directoryKey: string, convention: NamingConvention): string { + if (convention === "directory") { + return directoryKey + } + + // Return selector name, or directory key if no mapping exists + return this.directoryToSelector.get(directoryKey) ?? directoryKey + } + + /** + * Detect the naming convention from a list of identifiers. + * Returns the convention of the first resolvable identifier. + * + * @param identifiers - List of identifiers to check + * @returns Detected convention or default + */ + detectConvention(...identifiers: (string | undefined)[]): NamingConvention { + for (const identifier of identifiers) { + if (!identifier) continue + + const resolved = this.resolve(identifier) + if (resolved) { + return resolved.inputConvention + } + } + + return this.defaultConvention + } + + /** + * Get the default naming convention + */ + getDefaultConvention(): NamingConvention { + return this.defaultConvention + } + + /** + * Get the directory key for a given identifier (either format) + * This is useful for internal data lookups + */ + getDirectoryKey(identifier: string): string | null { + const resolved = this.resolve(identifier) + return resolved?.directoryKey ?? null + } + + /** + * Get the selector name for a given identifier (either format) + */ + getSelectorName(identifier: string): string | null { + const resolved = this.resolve(identifier) + return resolved?.selectorName ?? null + } +} diff --git a/src/lib/ccip/services/lane-data.ts b/src/lib/ccip/services/lane-data.ts index 360173bb6b4..72da3d63250 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, + TokenLaneData, + 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" @@ -22,6 +28,10 @@ import { } from "../../../features/utils/index.ts" import { getSelectorEntry } from "@config/data/ccip/selectors.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 /** @@ -284,9 +294,16 @@ export class LaneDataService { filterType: "chainId" | "selector" | "internalId" ): 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 + // For chain_id, also check generated chain key format if (filterType === "chainId") { const generatedKey = generateChainKey(chain.chainId, chain.chainType, "chainId") return filterValues.includes(chainValue) || filterValues.includes(generatedKey) @@ -303,15 +320,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" ? generateChainKey(sourceChain.chainId, sourceChain.chainType, outputKey) - : sourceChain[outputKey].toString() + : sourceChain[propertyName].toString() const destKey = outputKey === "chainId" ? generateChainKey(destChain.chainId, destChain.chainType, outputKey) - : destChain[outputKey].toString() + : destChain[propertyName].toString() return `${sourceKey}_to_${destKey}` } @@ -359,13 +384,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 } /** @@ -395,4 +419,439 @@ 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 } + } + } + + /** + * Builds a mapping from selector names (e.g., "ethereum-mainnet") to chains.json keys (e.g., "mainnet") + * This enables the API to accept both naming conventions. + * + * @param chainsReferenceData - Chain configuration data + * @returns Map of selector name → chains.json key + */ + private buildSelectorNameToChainKeyMap(chainsReferenceData: Record): Map { + const map = new Map() + + for (const [chainKey] of Object.entries(chainsReferenceData)) { + try { + // Get the chain ID and type to look up the selector entry + const supportedChain = directoryToSupportedChain(chainKey) + const chainId = getChainId(supportedChain) + const { chainType } = getChainTypeAndFamily(supportedChain) + + if (chainId) { + const selectorEntry = getSelectorEntry(chainId, chainType) + if (selectorEntry?.name && selectorEntry.name !== chainKey) { + // Map selector name to chains.json key + map.set(selectorEntry.name, chainKey) + } + } + } catch { + // Skip chains that can't be resolved + } + } + + return map + } + + /** + * Resolves a chain identifier to its internal ID (chains.json key) + * + * Accepts both: + * - chains.json keys (e.g., "mainnet", "bsc-mainnet") + * - selector names (e.g., "ethereum-mainnet", "binance_smart_chain-mainnet") + * + * @param identifier - Chain identifier (chainId, selector, or internalId) + * @param inputKeyType - Type of identifier + * @param chainsReferenceData - Chain configuration data + * @returns Internal ID (chains.json key) or null if not found + */ + resolveToInternalId( + identifier: string, + inputKeyType: LaneInputKeyType, + chainsReferenceData: Record + ): string | null { + // If already an internal_id, check both chains.json key and selector name + if (inputKeyType === "internalId") { + // First, try direct lookup in chains.json keys + if (chainsReferenceData[identifier]) { + return identifier + } + + // If not found, check if identifier is a selector name and map to chains.json key + const selectorNameMap = this.buildSelectorNameToChainKeyMap(chainsReferenceData) + const chainKey = selectorNameMap.get(identifier) + if (chainKey && chainsReferenceData[chainKey]) { + return chainKey + } + + return null + } + + // Search through chains to find matching chain_id or selector + if (inputKeyType === "chainId") { + // Collect all matching chains (chainId can have collisions across chain families) + const matches: Array<{ internalId: string; chainType: ChainType; chainFamily: ChainFamily }> = [] + + for (const [internalId] of Object.entries(chainsReferenceData)) { + try { + const supportedChain = directoryToSupportedChain(internalId) + const chainId = getChainId(supportedChain) + if (chainId && chainId.toString() === identifier) { + const { chainType, chainFamily } = getChainTypeAndFamily(supportedChain) + matches.push({ internalId, chainType, chainFamily }) + } + } catch { + // Skip chains that can't be resolved + } + } + + if (matches.length === 0) { + return null + } + + // Prioritize EVM chains since by-chain-id is typically used for EVM chain IDs + const evmMatch = matches.find((m) => m.chainFamily === "evm") + if (evmMatch) { + return evmMatch.internalId + } + + // Fall back to first match if no EVM chain found + return matches[0].internalId + } + + // For selector, there should be no collisions + for (const [internalId, chainConfig] of Object.entries(chainsReferenceData)) { + if (inputKeyType === "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 and fees + 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] = { + rateLimits: { + standard: destData.standard, + custom: destData.custom, + }, + fees: destData.fees || null, + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: null, + } + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: null, + } + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: 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 and fees + 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] = { + rateLimits: { + standard: destData.standard, + custom: destData.custom, + }, + fees: destData.fees || null, + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: null, + } + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: null, + } + } + } else { + supportedTokensWithRateLimits[tokenSymbol] = { + rateLimits: { standard: null, custom: null }, + fees: 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..6145c9aab3e --- /dev/null +++ b/src/lib/ccip/services/rate-limits-data.ts @@ -0,0 +1,382 @@ +import { + Environment, + RateLimitsFilterType, + RateLimitsServiceResponse, + RateLimitsData, + TokenLaneData, + RawTokenRateLimits, + 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 reference data to resolve chain identifiers + const { chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Resolve chain identifiers to chains.json keys (handles both short names and selector names) + const laneDataService = new LaneDataService() + const resolvedSourceId = + laneDataService.resolveToInternalId( + filters.sourceInternalId, + "internalId", + chainsReferenceData as Record + ) || filters.sourceInternalId + const resolvedDestId = + laneDataService.resolveToInternalId( + filters.destinationInternalId, + "internalId", + chainsReferenceData as Record + ) || filters.destinationInternalId + + // Create resolved filters + const resolvedFilters: RateLimitsFilterType = { + ...filters, + sourceInternalId: resolvedSourceId, + destinationInternalId: resolvedDestId, + } + + // 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, resolvedFilters) + + 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: RawTokenRateLimits, + direction?: "in" | "out", + rateType?: "standard" | "custom" + ): TokenLaneData | null { + const filteredStandard = this.applyDirectionFilter(rateLimits.standard, direction) + const filteredCustom = this.applyDirectionFilter(rateLimits.custom, direction) + const fees = rateLimits.fees ?? null + + if (rateType === "standard") { + if (!filteredStandard) { + return null + } + return { + rateLimits: { standard: filteredStandard, custom: null }, + fees, + } + } + + if (rateType === "custom") { + if (!filteredCustom) { + return null + } + return { + rateLimits: { standard: null, custom: filteredCustom }, + fees, + } + } + + if (!filteredStandard && !filteredCustom) { + return null + } + + return { + rateLimits: { + standard: filteredStandard ?? null, + custom: filteredCustom ?? null, + }, + fees, + } + } + + /** + * 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..31c92df3971 100644 --- a/src/lib/ccip/services/token-data.ts +++ b/src/lib/ccip/services/token-data.ts @@ -6,15 +6,31 @@ import { TokenChainData, TokenDataResponse, TokenServiceResponse, + TokenDetailChainData, + TokenDetailDataResponse, + TokenDetailServiceResponse, + RateLimitsData, + CCVConfigData, + CCVConfig, + CustomFinalityConfig, } from "~/lib/ccip/types/index.ts" import { Version } from "@config/data/ccip/types.ts" import { SupportedChain } from "@config/index.ts" import { getAllSupportedTokens, getAllTokenLanes, getTokenData } from "@config/data/ccip/data.ts" import { resolveChainOrThrow, generateChainKey } from "~/lib/ccip/utils.ts" +import { getEffectivePoolVersion, shouldEnableCCVFeatures } from "~/lib/ccip/utils/pool-version.ts" 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" } + +// Import CCV config mock data for threshold amounts +import ccvConfigMainnet from "~/__mocks__/ccv-config-mainnet.json" with { type: "json" } +import ccvConfigTestnet from "~/__mocks__/ccv-config-testnet.json" with { type: "json" } + export const prerender = false /** @@ -99,11 +115,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, @@ -176,8 +192,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, }, @@ -361,4 +381,287 @@ 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 = "chainId" + ): 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) + + // Load CCV config data for threshold amounts + const ccvConfigData = this.loadCCVConfigData(environment) + + // Get raw token data with directory keys for reverse lookup + const rawTokenData = this.getRawTokenData(environment, tokenCanonicalSymbol) + + // Get token's rate limits by internal ID + const tokenRateLimits = rateLimitsData[tokenCanonicalSymbol] + + // Get token's CCV config by directory key + const tokenCCVConfig = ccvConfigData[tokenCanonicalSymbol] + + // Merge token data with custom finality and CCV config information + const result: TokenDetailDataResponse = {} + + for (const [chainKey, chainData] of Object.entries(tokenData)) { + // Get directory key for version and config lookups + const directoryKey = rawTokenData ? this.findDirectoryKeyByChainId(rawTokenData, chainData.chainId) : null + + // Check if this pool supports CCV features (v2.0+ only) + const actualPoolVersion = chainData.pool?.version || "1.0.0" + const isCCVEnabled = directoryKey + ? shouldEnableCCVFeatures(environment, tokenCanonicalSymbol, directoryKey, actualPoolVersion) + : false + + // Both customFinality and ccvConfig are v2.0+ pool features only + let minBlockConfirmation: number | null = null + let hasCustomFinality: boolean | null = null + let ccvConfig: CCVConfig | null = null + let customFinalityDataAvailable = false + + if (isCCVEnabled) { + // Look up minBlockConfirmation using directory key (consistent with token-directory.ts) + // Rate limits mock data uses directory keys (e.g., "mainnet") not selector names (e.g., "ethereum-mainnet") + if (tokenRateLimits && directoryKey && tokenRateLimits[directoryKey]) { + customFinalityDataAvailable = true + minBlockConfirmation = tokenRateLimits[directoryKey].minBlockConfirmation + + // Derive hasCustomFinality from minBlockConfirmation + // null in mock data = downstream API error + if (minBlockConfirmation === null) { + hasCustomFinality = null // Downstream API error + } else if (minBlockConfirmation > 0) { + hasCustomFinality = true + } else { + hasCustomFinality = false + } + } + + // Look up CCV config using directory key + // For v2 pools: + // - Entry with thresholdAmount value: configured → {thresholdAmount: "value"} + // - Entry with thresholdAmount null: downstream error → {thresholdAmount: null} + // - No entry: not configured → {thresholdAmount: "0"} + if (tokenCCVConfig && directoryKey && tokenCCVConfig[directoryKey]) { + // Entry exists - use the value (could be a string or null for downstream error) + ccvConfig = { + thresholdAmount: tokenCCVConfig[directoryKey].thresholdAmount, + } + } else { + // No entry for this v2 pool - CCV not configured + ccvConfig = { + thresholdAmount: "0", + } + } + } + + // Build customFinality response: + // - v1 pool (isCCVEnabled=false): null (feature not supported) + // - v2 pool with data: { hasCustomFinality, minBlockConfirmation } + // - v2 pool without data (no entry in mock): { hasCustomFinality: null, minBlockConfirmation: null } (downstream error) + let customFinality: CustomFinalityConfig | null = null + if (isCCVEnabled) { + if (customFinalityDataAvailable) { + customFinality = { hasCustomFinality, minBlockConfirmation } + } else { + // v2 pool but no data available - downstream API error + customFinality = { hasCustomFinality: null, minBlockConfirmation: null } + } + } + + const detailChainData: TokenDetailChainData = { + ...chainData, + customFinality, + ccvConfig, + pool: chainData.pool + ? { + address: chainData.pool.address, + rawType: chainData.pool.rawType, + type: chainData.pool.type, + version: directoryKey + ? getEffectivePoolVersion( + environment, + tokenCanonicalSymbol, + directoryKey, + chainData.pool.version || "1.0.0" + ) + : chainData.pool.version || "1.0.0", + advancedPoolHooks: chainData.pool.advancedPoolHooks || null, + supportsV2Features: isCCVEnabled, + } + : null, + } + + 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 + } + + /** + * Loads CCV config data for the specified environment + */ + private loadCCVConfigData(environment: Environment): CCVConfigData { + if (environment === Environment.Mainnet) { + return ccvConfigMainnet as CCVConfigData + } + return ccvConfigTestnet as CCVConfigData + } + + /** + * Gets raw token data with directory keys (chains.json keys) as keys + * Used for looking up data that uses directory keys (like CCV config) + * Only includes EVM chains to avoid chain ID collisions with non-EVM chains + */ + private getRawTokenData( + environment: Environment, + tokenCanonicalSymbol: string + ): Record | null { + try { + const tokenData = getTokenData({ + environment, + version: Version.V1_2_0, + tokenId: tokenCanonicalSymbol, + }) + + if (!tokenData || Object.keys(tokenData).length === 0) { + return null + } + + // Build a mapping of directory key -> chainId for reverse lookup + // Only include EVM chains to avoid chain ID collisions (e.g., Aptos also has chainId=1) + const result: Record = {} + + for (const [directoryKey] of Object.entries(tokenData)) { + try { + const supportedChain = resolveChainOrThrow(directoryKey) + const { chainType } = getChainTypeAndFamily(supportedChain) + + // Only include EVM chains for reverse lookup + if (chainType !== "evm") { + continue + } + + const numericChainId = getChainId(supportedChain) + if (numericChainId) { + result[directoryKey] = { chainId: numericChainId } + } + } catch { + // Skip chains that can't be resolved + } + } + + return result + } catch { + return null + } + } + + /** + * Finds the directory key for a given numeric chainId + */ + private findDirectoryKeyByChainId( + rawTokenData: Record, + targetChainId: number | string + ): string | null { + const targetNumeric = typeof targetChainId === "string" ? parseInt(targetChainId, 10) : targetChainId + + for (const [directoryKey, data] of Object.entries(rawTokenData)) { + const dataNumeric = typeof data.chainId === "string" ? parseInt(data.chainId, 10) : data.chainId + if (dataNumeric === targetNumeric) { + return directoryKey + } + } + + return null + } + + /** + * 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, + }) + return null + } + } } diff --git a/src/lib/ccip/services/token-directory.ts b/src/lib/ccip/services/token-directory.ts new file mode 100644 index 00000000000..b257565e9e2 --- /dev/null +++ b/src/lib/ccip/services/token-directory.ts @@ -0,0 +1,701 @@ +import { + Environment, + TokenDirectoryData, + TokenDirectoryLane, + TokenDirectoryServiceResponse, + CCVConfigData, + CCVChainConfig, + LaneVerifiers, + TokenRateLimits, + TokenFees, + NamingConvention, + OutputKeyType, + RateLimitsData, + CustomFinalityConfig, +} 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" +import { logger } from "@lib/logging/index.js" +import { getTokenData } from "@config/data/ccip/data.ts" +import { getChainId, getChainTypeAndFamily, directoryToSupportedChain } from "../../../features/utils/index.ts" +import { getSelectorEntry } from "@config/data/ccip/selectors.ts" +import { ChainIdentifierService } from "./chain-identifier.ts" +import { getEffectivePoolVersion, shouldEnableCCVFeatures } from "~/lib/ccip/utils/pool-version.ts" + +// Import CCV config mock data +import ccvConfigMainnet from "~/__mocks__/ccv-config-mainnet.json" with { type: "json" } +import ccvConfigTestnet from "~/__mocks__/ccv-config-testnet.json" with { type: "json" } + +// 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 + +/** + * Service class for handling token directory data operations + * Provides detailed token information including CCV configuration for a specific chain + */ +export class TokenDirectoryService { + private readonly requestId: string + + constructor(requestId?: string) { + this.requestId = requestId ?? crypto.randomUUID() + + logger.debug({ + message: "TokenDirectoryService initialized", + requestId: this.requestId, + }) + } + + /** + * Retrieves detailed token directory data for a specific token and chain + * + * @param environment - Network environment (mainnet/testnet) + * @param tokenSymbol - Token canonical symbol + * @param chainIdentifier - Chain identifier (can be directory key or selector name) + * @param outputKey - Format to use for displaying chain keys + * @param internalIdFormat - Format for internalId values (selector or directory) + * @returns Token directory data or null if not found + */ + async getTokenDirectory( + environment: Environment, + tokenSymbol: string, + chainIdentifier: string, + outputKey: OutputKeyType, + internalIdFormat: NamingConvention + ): Promise { + logger.info({ + message: "Getting token directory data", + requestId: this.requestId, + environment, + tokenSymbol, + chainIdentifier, + outputKey, + internalIdFormat, + }) + + try { + // Load reference data + const { lanesReferenceData, chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Use ChainIdentifierService to resolve the chain identifier + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + const resolved = chainIdService.resolve(chainIdentifier) + + if (!resolved) { + logger.warn({ + message: "Could not resolve chain identifier", + requestId: this.requestId, + chainIdentifier, + }) + return { data: null } + } + + const directoryKey = resolved.directoryKey + + // Check if chain exists in reference data + const chainConfig = chainsReferenceData[directoryKey] as ChainConfig | undefined + if (!chainConfig) { + logger.warn({ + message: "Chain not found in reference data", + requestId: this.requestId, + directoryKey, + }) + return { data: null } + } + + // Get token data for this chain + const tokenData = getTokenData({ + environment, + version: Version.V1_2_0, + tokenId: tokenSymbol, + }) + + if (!tokenData) { + logger.warn({ + message: "Token not found", + requestId: this.requestId, + tokenSymbol, + }) + return { data: null } + } + + // Find token data for the specific chain + // tokenData keys are directory keys (e.g., "mainnet", "arbitrum-mainnet") + const chainTokenData = tokenData[directoryKey] + + if (!chainTokenData || !chainTokenData.pool?.address) { + logger.warn({ + message: "Token not found on specified chain", + requestId: this.requestId, + tokenSymbol, + chainIdentifier: directoryKey, + }) + return { data: null } + } + + // Get selector name for later use + const selectorName = resolved.selectorName + + // Get chain info + const chainInfo = this.resolveChainInfo(directoryKey, chainConfig) + if (!chainInfo) { + return { data: null } + } + + // Check if this pool supports CCV features (v2.0+ only) + const actualPoolVersion = chainTokenData.pool.version || "1.0.0" + const isCCVEnabled = shouldEnableCCVFeatures(environment, tokenSymbol, directoryKey, actualPoolVersion) + + // Load CCV config (only used for v2.0+ pools) + const ccvConfigData = this.loadCCVConfigData(environment) + const ccvConfig = isCCVEnabled ? ccvConfigData[tokenSymbol]?.[directoryKey] || null : null + + // Load rate limits data + const rateLimitsData = this.loadRateLimitsData(environment) + const tokenRateLimits = rateLimitsData[tokenSymbol]?.[directoryKey] + + // Get outbound lanes (from this chain to others) + const outboundLanes = this.getOutboundLanes( + directoryKey, + selectorName, + tokenSymbol, + lanesReferenceData, + chainsReferenceData as Record, + ccvConfig, + tokenRateLimits, + outputKey, + internalIdFormat, + chainIdService, + isCCVEnabled + ) + + // Get inbound lanes (from others to this chain) + const inboundLanes = this.getInboundLanes( + directoryKey, + selectorName, + tokenSymbol, + lanesReferenceData, + chainsReferenceData as Record, + ccvConfig, + rateLimitsData, + outputKey, + internalIdFormat, + chainIdService, + isCCVEnabled + ) + + // Format output based on outputKey and internalIdFormat + const formattedInternalId = chainIdService.format(directoryKey, internalIdFormat) + + // Build custom finality config from rate limits data (v2.0+ pools only) + // For v2 pools without data in mock, return { hasCustomFinality: null, minBlockConfirmation: null } to indicate downstream error + let customFinality: CustomFinalityConfig | null = null + if (isCCVEnabled) { + if (tokenRateLimits !== undefined) { + // Data entry exists in mock - use actual values (may still have null if downstream error for that specific chain) + customFinality = this.buildCustomFinalityConfig(tokenRateLimits.minBlockConfirmation) + } else { + // v2 pool but no data entry in mock - downstream API error + customFinality = { hasCustomFinality: null, minBlockConfirmation: null } + } + } + + const data: TokenDirectoryData = { + internalId: formattedInternalId, + chainId: chainInfo.chainId, + selector: chainInfo.selector, + token: { + address: chainTokenData.tokenAddress, + decimals: chainTokenData.decimals, + }, + pool: { + address: chainTokenData.pool.address, + rawType: chainTokenData.pool.rawType, + type: chainTokenData.pool.type, + version: getEffectivePoolVersion( + environment, + tokenSymbol, + directoryKey, + chainTokenData.pool.version || "1.0.0" + ), + advancedPoolHooks: chainTokenData.pool.advancedPoolHooks || null, + supportsV2Features: isCCVEnabled, + }, + // ccvConfig handling: + // - v1.x pool (isCCVEnabled=false): null (feature not supported) + // - v2.x pool with config entry: {thresholdAmount: value} (could be null for downstream error) + // - v2.x pool without config entry: {thresholdAmount: "0"} (not configured) + ccvConfig: isCCVEnabled + ? ccvConfig + ? { thresholdAmount: ccvConfig.thresholdAmount } + : { thresholdAmount: "0" } + : null, + customFinality, + outboundLanes, + inboundLanes, + } + + logger.info({ + message: "Token directory data retrieved", + requestId: this.requestId, + tokenSymbol, + chainIdentifier: directoryKey, + outboundLaneCount: Object.keys(outboundLanes).length, + inboundLaneCount: Object.keys(inboundLanes).length, + }) + + return { data } + } catch (error) { + logger.error({ + message: "Failed to get token directory data", + requestId: this.requestId, + error: error instanceof Error ? error.message : "Unknown error", + }) + return { data: null } + } + } + + /** + * Resolves chain information from chain key and config + */ + private resolveChainInfo( + chainKey: string, + chainConfig: ChainConfig + ): { chainId: number | string; selector: string } | null { + try { + let chainId: number | string = chainKey + + try { + const supportedChain = directoryToSupportedChain(chainKey) + const resolvedChainId = getChainId(supportedChain) + if (resolvedChainId) chainId = resolvedChainId + } catch { + // Use chainKey as fallback + } + + const selector = chainConfig.chainSelector + if (!selector) { + return null + } + + return { chainId, selector } + } catch (error) { + logger.warn({ + message: "Failed to resolve chain info", + requestId: this.requestId, + chainKey, + error: error instanceof Error ? error.message : "Unknown error", + }) + return null + } + } + + /** + * Gets outbound lanes for the token from this chain + */ + private getOutboundLanes( + sourceDirectoryKey: string, + sourceSelectorName: string, + tokenSymbol: string, + lanesReferenceData: Record>, + chainsReferenceData: Record, + ccvConfig: CCVChainConfig | null, + tokenRateLimits: { minBlockConfirmation: number | null; remote: Record } | undefined, + outputKey: OutputKeyType, + internalIdFormat: NamingConvention, + chainIdService: ChainIdentifierService, + isCCVEnabled: boolean + ): Record { + const result: Record = {} + + // Get lanes from this source chain + const sourceLanes = lanesReferenceData[sourceDirectoryKey] + if (!sourceLanes) { + return result + } + + for (const [destDirectoryKey, laneConfig] of Object.entries(sourceLanes)) { + // Check if this lane supports the token + if (!laneConfig.supportedTokens?.includes(tokenSymbol)) { + continue + } + + // Get destination chain info + const destChainConfig = chainsReferenceData[destDirectoryKey] + if (!destChainConfig) { + continue + } + + const destChainInfo = this.resolveChainInfo(destDirectoryKey, destChainConfig) + if (!destChainInfo) { + continue + } + + // Get lane identifier (used in CCV and rate limits data) + // CCV uses selector names for lane keys + const destResolved = chainIdService.resolve(destDirectoryKey) + const destSelectorName = destResolved?.selectorName || destDirectoryKey + + // Build lane key: "sourceSelector-to-destSelector" (deterministic, scales to any chain) + const laneKey = this.buildLaneSelectorKey(sourceSelectorName, destSelectorName) + + // Get verifiers from CCV config (threshold verifiers only for v2.0+ pools) + const verifiers = this.getVerifiersForLane(ccvConfig, laneKey, "outbound", isCCVEnabled) + + // Get rate limits (both standard and custom, both directions) + const rateLimits = this.getRateLimitsForLane(tokenRateLimits, laneKey, destDirectoryKey, destSelectorName) + + // Get fees + const fees = this.getFeesForLane(tokenRateLimits, laneKey, destDirectoryKey, destSelectorName) + + // Format the output key + const outputLaneKey = this.formatLaneKey(destDirectoryKey, outputKey, internalIdFormat, chainIdService) + const formattedInternalId = chainIdService.format(destDirectoryKey, internalIdFormat) + + result[outputLaneKey] = { + internalId: formattedInternalId, + chainId: destChainInfo.chainId, + selector: destChainInfo.selector, + rateLimits, + fees, + verifiers, + } + } + + return result + } + + /** + * Gets inbound lanes for the token to this chain + */ + private getInboundLanes( + destDirectoryKey: string, + destSelectorName: string, + tokenSymbol: string, + lanesReferenceData: Record>, + chainsReferenceData: Record, + ccvConfig: CCVChainConfig | null, + rateLimitsData: RateLimitsData, + outputKey: OutputKeyType, + internalIdFormat: NamingConvention, + chainIdService: ChainIdentifierService, + isCCVEnabled: boolean + ): Record { + const result: Record = {} + + // Search all source chains for lanes to this destination + for (const [sourceDirectoryKey, sourceLanes] of Object.entries(lanesReferenceData)) { + const laneConfig = sourceLanes[destDirectoryKey] + if (!laneConfig) { + continue + } + + // Check if this lane supports the token + if (!laneConfig.supportedTokens?.includes(tokenSymbol)) { + continue + } + + // Get source chain info + const sourceChainConfig = chainsReferenceData[sourceDirectoryKey] + if (!sourceChainConfig) { + continue + } + + const sourceChainInfo = this.resolveChainInfo(sourceDirectoryKey, sourceChainConfig) + if (!sourceChainInfo) { + continue + } + + // Get lane identifier + const sourceResolved = chainIdService.resolve(sourceDirectoryKey) + const sourceSelectorName = sourceResolved?.selectorName || sourceDirectoryKey + + // Build lane key: "sourceSelector-to-destSelector" (deterministic, scales to any chain) + const laneKey = this.buildLaneSelectorKey(sourceSelectorName, destSelectorName) + + // Get verifiers from CCV config (threshold verifiers only for v2.0+ pools) + const verifiers = this.getVerifiersForLane(ccvConfig, laneKey, "inbound", isCCVEnabled) + + // Get rate limits from source chain's perspective (both directions) + // Remote keys are destinations; we look up by dest (chain we're viewing) + const sourceTokenRateLimits = rateLimitsData[tokenSymbol]?.[sourceDirectoryKey] + const rateLimits = this.getRateLimitsForLane(sourceTokenRateLimits, laneKey, destDirectoryKey, destSelectorName) + + // Get fees + const fees = this.getFeesForLane(sourceTokenRateLimits, laneKey, destDirectoryKey, destSelectorName) + + // Format the output key + const outputLaneKey = this.formatLaneKey(sourceDirectoryKey, outputKey, internalIdFormat, chainIdService) + const formattedInternalId = chainIdService.format(sourceDirectoryKey, internalIdFormat) + + result[outputLaneKey] = { + internalId: formattedInternalId, + chainId: sourceChainInfo.chainId, + selector: sourceChainInfo.selector, + rateLimits, + fees, + verifiers, + } + } + + return result + } + + /** + * Builds a lane key using deterministic format: sourceSelector-to-destSelector. + * Scales to any chain without hardcoded mappings. + * e.g., "ethereum-mainnet-to-arbitrum-mainnet", "ethereum-mainnet-to-base-mainnet" + */ + private buildLaneSelectorKey(sourceSelectorName: string, destSelectorName: string): string { + return `${sourceSelectorName}-to-${destSelectorName}` + } + + /** + * Gets verifiers for a specific lane from CCV config. + * Returns pre-computed verifier sets: + * - belowThreshold: Verifiers used when transfer amount is below the threshold + * - aboveThreshold: All verifiers used when transfer amount is at or above the threshold + * (belowThreshold + additional threshold verifiers) + * Threshold verifiers are only included for v2.0+ pools (when isCCVEnabled is true). + * + * Return value semantics: + * - null: v1.x pool (feature not supported) + * - {belowThreshold: [], aboveThreshold: []}: v2.x pool, no verifiers configured for this lane + * - {belowThreshold: [...], aboveThreshold: [...]}: v2.x pool, verifiers configured + * - {belowThreshold: null, aboveThreshold: null}: v2.x pool, downstream API error + */ + private getVerifiersForLane( + ccvConfig: CCVChainConfig | null, + laneKey: string, + direction: "outbound" | "inbound", + isCCVEnabled: boolean + ): LaneVerifiers | null { + // For v1.x pools (CCV not enabled), verifiers don't exist - return null + if (!isCCVEnabled) { + return null + } + + // For v2.x pools, CCV config should exist + if (!ccvConfig) { + return { belowThreshold: [], aboveThreshold: [] } + } + + const ccvs = direction === "outbound" ? ccvConfig.outboundCCVs : ccvConfig.inboundCCVs + if (!ccvs) { + return { belowThreshold: [], aboveThreshold: [] } + } + + const thresholdAmount = ccvConfig.thresholdAmount ?? "0" + + // Exact lookup only (no fuzzy matching) + const laneVerifiers = ccvs[laneKey] + if (laneVerifiers) { + return this.buildVerifiersResponse(laneVerifiers.base, laneVerifiers.threshold, thresholdAmount) + } + + return { belowThreshold: [], aboveThreshold: [] } + } + + /** + * Builds the verifiers response from base and threshold arrays. + * Handles downstream API error case when arrays are null. + * When thresholdAmount is "0" (threshold disabled pool-wide), aboveThreshold equals belowThreshold + * because the contract never adds threshold verifiers (AdvancedPoolHooks._resolveRequiredCCVs). + */ + private buildVerifiersResponse( + baseVerifiers: string[] | null, + thresholdVerifiers: string[] | null, + thresholdAmount: string + ): LaneVerifiers { + // If either base or threshold is null, it indicates a downstream API error + if (baseVerifiers === null || thresholdVerifiers === null) { + return { belowThreshold: null, aboveThreshold: null } + } + + const belowThreshold = baseVerifiers + const aboveThreshold = thresholdAmount === "0" ? baseVerifiers : [...baseVerifiers, ...thresholdVerifiers] + + return { belowThreshold, aboveThreshold } + } + + /** + * Gets rate limits (both standard and custom) for a specific lane. + * Returns both in and out directions for each rate limit type. + * Tries exact lookup by destDirectoryKey, destSelectorName, then laneKey (handles mixed formats in upstream data). + */ + private getRateLimitsForLane( + tokenRateLimits: { minBlockConfirmation: number | null; remote: Record } | undefined, + laneKey: string, + destDirectoryKey: string, + destSelectorName: string + ): TokenRateLimits { + const defaultRateLimits: TokenRateLimits = { standard: null, custom: null } + + if (!tokenRateLimits?.remote) { + return defaultRateLimits + } + + const remote = tokenRateLimits.remote + const lookupKeys = [destSelectorName, destDirectoryKey, laneKey] + + for (const key of lookupKeys) { + const rateLimits = remote[key] as + | { + standard?: { in?: Record; out?: Record } | null + custom?: { in?: Record; out?: Record } | null + } + | undefined + if (rateLimits) { + return { + standard: (rateLimits.standard as TokenRateLimits["standard"]) ?? null, + custom: (rateLimits.custom as TokenRateLimits["custom"]) ?? null, + } + } + } + + return defaultRateLimits + } + + /** + * Gets transfer fees for a specific lane. + * Tries exact lookup by destDirectoryKey, destSelectorName, then laneKey (handles mixed formats in upstream data). + */ + private getFeesForLane( + tokenRateLimits: { minBlockConfirmation: number | null; remote: Record } | undefined, + laneKey: string, + destDirectoryKey: string, + destSelectorName: string + ): TokenFees | null { + if (!tokenRateLimits?.remote) { + return null + } + + const remote = tokenRateLimits.remote + const lookupKeys = [destSelectorName, destDirectoryKey, laneKey] + + for (const key of lookupKeys) { + const limits = remote[key] as + | { + fees?: { + standardTransferFeeBps?: number + customTransferFeeBps?: number + } + } + | undefined + if (limits?.fees) { + return { + standardTransferFeeBps: limits.fees.standardTransferFeeBps ?? 0, + customTransferFeeBps: limits.fees.customTransferFeeBps ?? 0, + } + } + } + + return null + } + + /** + * Formats a lane key based on output format + */ + private formatLaneKey( + directoryKey: string, + outputKey: OutputKeyType, + internalIdFormat: NamingConvention, + chainIdService: ChainIdentifierService + ): string { + if (outputKey === "chainId") { + try { + const supportedChain = directoryToSupportedChain(directoryKey) + const chainId = getChainId(supportedChain) + const { chainType } = getChainTypeAndFamily(supportedChain) + if (chainId) { + return chainType === "evm" ? chainId.toString() : `${chainType}:${chainId}` + } + } catch { + // Fall through to default + } + return directoryKey + } + + if (outputKey === "selector") { + const resolved = chainIdService.resolve(directoryKey) + if (resolved) { + try { + const supportedChain = directoryToSupportedChain(directoryKey) + const chainId = getChainId(supportedChain) + const { chainType } = getChainTypeAndFamily(supportedChain) + if (chainId) { + const selectorEntry = getSelectorEntry(chainId, chainType) + if (selectorEntry) { + return selectorEntry.selector + } + } + } catch { + // Fall through + } + } + return directoryKey + } + + // outputKey === "internalId" + return chainIdService.format(directoryKey, internalIdFormat) + } + + /** + * Loads CCV config data for the specified environment + */ + private loadCCVConfigData(environment: Environment): CCVConfigData { + if (environment === Environment.Mainnet) { + return ccvConfigMainnet as CCVConfigData + } + return ccvConfigTestnet as CCVConfigData + } + + /** + * 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 + } + + /** + * Builds custom finality configuration from minBlockConfirmation value + * + * @param minBlockConfirmation - The minimum block confirmation value, or null/undefined if unavailable + * @returns CustomFinalityConfig object with hasCustomFinality and minBlockConfirmation + */ + private buildCustomFinalityConfig(minBlockConfirmation: number | null | undefined): CustomFinalityConfig | null { + // If minBlockConfirmation is undefined, we don't have rate limits data for this token/chain + if (minBlockConfirmation === undefined) { + return null + } + + // If minBlockConfirmation is null, there was an issue with downstream API + if (minBlockConfirmation === null) { + return { + hasCustomFinality: null, + minBlockConfirmation: null, + } + } + + // hasCustomFinality is true if minBlockConfirmation > 0 + return { + hasCustomFinality: minBlockConfirmation > 0, + minBlockConfirmation, + } + } + + /** + * Gets the request ID for this service instance + */ + getRequestId(): string { + return this.requestId + } +} diff --git a/src/lib/ccip/types/index.ts b/src/lib/ccip/types/index.ts index 18c463d01c8..46f7ceb147c 100644 --- a/src/lib/ccip/types/index.ts +++ b/src/lib/ccip/types/index.ts @@ -8,6 +8,11 @@ export type { ChainType, ChainFamily } export const prerender = false +// Naming convention for chain identifiers +// - 'directory': chains.json keys (e.g., "mainnet", "bsc-mainnet") +// - 'selector': selectors.yml names (e.g., "ethereum-mainnet", "binance_smart_chain-mainnet") +export type NamingConvention = "directory" | "selector" + // Search types export type SearchType = "selector" | "chainId" | "internalId" | "displayName" @@ -112,14 +117,21 @@ export type TokenMetadata = { validTokenCount: number } +export type TokenPool = { + address: string + rawType: string + type: string + version: string + advancedPoolHooks?: string | null +} + export type TokenChainData = { chainId: number | string chainName: string decimals: number destinations: string[] name: string - poolAddress: string - poolType: string + pool: TokenPool symbol: string tokenAddress: string } @@ -150,6 +162,100 @@ export interface TokenFilterType { chain_id?: string } +/** + * CCV (Cross-Chain Verifier) configuration for a pool + * Only present for v2.0+ pools (check pool.supportsV2Features) + * For v1.x pools, the entire ccvConfig field is null + * + * Values for thresholdAmount: + * - "0": CCV not configured for this v2 pool + * - "N" (positive number string): CCV configured with threshold N + * - null: downstream API error fetching CCV config + */ +export interface CCVConfig { + thresholdAmount: string | null +} + +// Token Detail API Types (for /tokens/{tokenCanonicalSymbol} endpoint) + +/** + * Custom finality configuration (reused across token endpoints) + */ +export interface CustomFinalityConfig { + /** Whether custom finality is enabled (derived from minBlockConfirmation > 0) */ + hasCustomFinality: boolean | null + /** Minimum block confirmations required, null if unavailable */ + minBlockConfirmation: number | null +} + +/** + * Extended token chain data with custom finality and CCV information + */ +export interface TokenDetailChainData extends Omit { + /** Custom finality configuration for the token on this chain + * - null: v1 pool (feature not supported) + * - {hasCustomFinality: null, minBlockConfirmation: null}: v2 pool, downstream API error + * - {hasCustomFinality: false, minBlockConfirmation: 0}: v2 pool, feature not used + * - {hasCustomFinality: true, minBlockConfirmation: N}: v2 pool, feature enabled + */ + customFinality: CustomFinalityConfig | null + /** CCV (Cross-Chain Verifier) configuration for the pool + * - null: v1 pool (feature not supported, check pool.supportsV2Features) + * - {thresholdAmount: "0"}: v2 pool, CCV not configured + * - {thresholdAmount: null}: v2 pool, downstream API error + * - {thresholdAmount: "N"}: v2 pool, CCV configured with threshold N + */ + ccvConfig: CCVConfig | null + /** Pool information including version, hooks, and v2 feature support flag */ + pool: { + address: string + rawType: string + type: string + version: string + advancedPoolHooks: string | null + /** Whether this pool supports v2 features (customFinality, ccvConfig). + * When true and customFinality/ccvConfig fields have null values inside, + * it indicates a downstream API error rather than feature not supported. */ + supportsV2Features: boolean + } | 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 + } +} + // Lane Data API Types export type LaneConfigError = { @@ -227,6 +333,361 @@ 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 = "chainId" | "selector" | "internalId" + +/** + * 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) + * - { in: {...}, out: {...} } = rate limits configured and available + * - { in: null, out: null } = downstream API error (v1 or v2 pool) + */ +export interface RateLimiterDirections { + in?: RateLimiterConfig | null + out?: RateLimiterConfig | null +} + +/** + * Rate limiter entry can be directions data or null (not configured) + * - null = rate limits not configured for this type (standard/custom) + * - { in: null, out: null } = downstream API error + * - { in: {...}, out: {...} } = rate limits available + */ +export type RateLimiterEntry = RateLimiterDirections | null + +/** + * Transfer fees for a token on a lane in basis points + */ +export interface TokenFees { + standardTransferFeeBps: number + customTransferFeeBps: number +} + +/** + * Raw rate limits from mock data (fees may not be present) + */ +export interface RawTokenRateLimits { + standard: RateLimiterEntry + custom: RateLimiterEntry + fees?: TokenFees +} + +/** + * Rate limits for a single token on a lane with both standard and custom limits + * Each entry contains directional (in/out) rate limit configurations + */ +export interface TokenRateLimits { + standard: RateLimiterEntry + custom: RateLimiterEntry +} + +/** + * Combined rate limits and fees for a token on a lane + * Used in API responses that return both rate limits and transfer fees + */ +export interface TokenLaneData { + rateLimits: TokenRateLimits + fees: TokenFees | null +} + +/** + * 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) + */ +export type RateLimitsType = "standard" | "custom" + +/** + * Source chain rate limits data with minBlockConfirmation and remote destinations + * Uses RawTokenRateLimits since fees may not be present in mock data + */ +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 + } +} + +// Token Directory API Types (for /tokens/{symbol}/chains/{chain} endpoint) + +/** + * Verifiers configuration for a lane with pre-computed sets for different transfer amounts + * Only present for v2.0+ pools (check pool.supportsV2Features) + * For v1.x pools, the entire verifiers field is null + * + * Values for belowThreshold/aboveThreshold: + * - []: No verifiers configured for this lane + * - [addr1, addr2, ...]: Verifiers configured + * - null: Downstream API error fetching verifiers + * + * Usage: + * - belowThreshold: Verifiers used when transfer amount is below the threshold + * - aboveThreshold: Verifiers used when transfer amount is at or above the threshold + * (includes all belowThreshold verifiers plus additional threshold verifiers) + */ +export interface LaneVerifiers { + belowThreshold: string[] | null + aboveThreshold: string[] | null +} + +/** + * Lane data in token directory response + * + * Use pool.supportsV2Features to interpret verifiers: + * - pool.supportsV2Features=false + verifiers=null → v1.x pool, feature not supported + * - pool.supportsV2Features=true + verifiers={belowThreshold: null, aboveThreshold: null} → downstream API error + * - pool.supportsV2Features=true + verifiers={belowThreshold: [], aboveThreshold: []} → not configured + * - pool.supportsV2Features=true + verifiers={belowThreshold: [...], aboveThreshold: [...]} → configured + */ +export interface TokenDirectoryLane { + internalId: string + chainId: number | string + selector: string + rateLimits: TokenRateLimits + fees: TokenFees | null + verifiers: LaneVerifiers | null +} + +/** + * Token info in directory response + */ +export interface TokenDirectoryTokenInfo { + address: string + decimals: number +} + +/** + * Pool info in directory response + */ +export interface TokenDirectoryPoolInfo { + address: string + rawType: string + type: string + version: string + advancedPoolHooks: string | null + /** Whether this pool supports v2 features (customFinality, ccvConfig). + * When true and customFinality/ccvConfig fields have null values inside, + * it indicates a downstream API error rather than feature not supported. */ + supportsV2Features: boolean +} + +/** + * Token directory data for a specific chain + */ +export interface TokenDirectoryData { + internalId: string + chainId: number | string + selector: string + token: TokenDirectoryTokenInfo + pool: TokenDirectoryPoolInfo + ccvConfig: CCVConfig | null + customFinality: CustomFinalityConfig | null + outboundLanes: Record + inboundLanes: Record +} + +/** + * Metadata for token directory API responses + */ +export interface TokenDirectoryMetadata { + environment: Environment + timestamp: string + requestId: string + symbol: string + sourceChain: string +} + +/** + * Token directory API response format + */ +export interface TokenDirectoryApiResponse { + metadata: TokenDirectoryMetadata + data: TokenDirectoryData +} + +/** + * Token directory service response (internal) + */ +export interface TokenDirectoryServiceResponse { + data: TokenDirectoryData | null +} + +/** + * CCV config data structure in mock JSON files + * Token -> SourceChain (directory key) -> { thresholdAmount, outboundCCVs, inboundCCVs } + * + * Values for base/threshold arrays: + * - []: No verifiers configured + * - [addr1, ...]: Verifiers configured + * - null: Downstream API error fetching verifiers + */ +export interface CCVLaneConfig { + base: string[] | null + threshold: string[] | null +} + +export interface CCVChainConfig { + thresholdAmount: string + outboundCCVs: Record + inboundCCVs: Record +} + +export type CCVConfigData = Record> + // Faucet API Types export type { FaucetChainConfig, diff --git a/src/lib/ccip/utils.ts b/src/lib/ccip/utils.ts index 04d04457276..71949f37003 100644 --- a/src/lib/ccip/utils.ts +++ b/src/lib/ccip/utils.ts @@ -8,10 +8,13 @@ import type { ChainType, OutputKeyType, ChainFamily, - SearchType, ChainMetadata, ChainConfigError, FilterType, + RateLimitsMetadata, + RateLimitsFilterType, + RateLimitsDirection, + RateLimitsType, } from "./types/index.ts" import { jsonHeaders, commonHeaders as sharedCommonHeaders } from "@lib/api/cacheHeaders.js" import { logger } from "@lib/logging/index.js" @@ -247,6 +250,24 @@ export const validateOutputKey = (outputKey?: string): "chainId" | "selector" | return outputKey as "chainId" | "selector" | "internalId" } +/** + * Validates the internalIdFormat parameter + * Controls which naming convention is used for internalId in responses: + * - 'directory': chains.json keys (e.g., "mainnet", "bsc-mainnet") + * - 'selector': selectors.yml names (e.g., "ethereum-mainnet", "binance_smart_chain-mainnet") + * + * @param internalIdFormat - Format to validate + * @returns Validated format, defaults to "selector" for backward compatibility + * @throws CCIPError if format is invalid + */ +export const validateInternalIdFormat = (internalIdFormat?: string): "directory" | "selector" => { + if (!internalIdFormat) return "selector" // Default for backward compatibility + if (!["directory", "selector"].includes(internalIdFormat)) { + throw new CCIPError(400, 'internalIdFormat must be "directory" or "selector".') + } + return internalIdFormat as "directory" | "selector" +} + /** * Validates the enrichFeeTokens parameter * @param enrichFeeTokens - String value to validate @@ -377,38 +398,82 @@ export const normalizeVersion = (version: string): string => { return "1.0.0" } +/** + * Error types for API responses + */ +export enum APIErrorType { + VALIDATION_ERROR = "VALIDATION_ERROR", + SERVER_ERROR = "SERVER_ERROR", + NOT_FOUND = "NOT_FOUND", + INVALID_PARAMETER = "INVALID_PARAMETER", +} + +/** + * Standard API error response format + * All fields are required for consistency across all endpoints + */ +export interface APIError { + error: APIErrorType + message: string + requestId: string + details: Record +} + +/** + * Creates a standardized API error response + * All error responses include: error, message, requestId, and details + * + * @param error - Error type + * @param message - Error message + * @param status - HTTP status code + * @param requestId - Request ID for correlation (required) + * @param details - Additional error details (defaults to empty object) + * @returns Response object with error details + */ +export function createErrorResponse( + error: APIErrorType, + message: string, + status: number, + requestId: string, + details: Record = {} +): Response { + const errorResponse: APIError = { + error, + message, + requestId, + details, + } + + return new Response(JSON.stringify(errorResponse), { + status, + headers: commonHeaders, + }) +} + /** * Handles API errors and converts them to standardized responses * @param error - Error to handle + * @param requestId - Request ID for correlation * @returns Standardized error response */ -export const handleApiError = (error: unknown): Response => { - let errorType = "UNKNOWN_ERROR" +export const handleApiError = (error: unknown, requestId: string): Response => { + let errorType = APIErrorType.SERVER_ERROR let message = "An unexpected error occurred" let statusCode = 500 if (error instanceof CCIPError) { - errorType = "VALIDATION_ERROR" + errorType = error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR message = error.message statusCode = error.statusCode } else if (error instanceof Error) { message = error.message if (error.name === "ValidationError") { - errorType = "VALIDATION_ERROR" + errorType = APIErrorType.VALIDATION_ERROR statusCode = 400 } } - return new Response( - JSON.stringify({ - error: errorType, - message, - }), - { - status: statusCode, - headers: commonHeaders, - } - ) + return createErrorResponse(errorType, message, statusCode, requestId) } /** @@ -467,50 +532,86 @@ export const loadChainConfiguration = async ( } /** - * Error types for API responses + * Creates metadata object for rate limits API responses + * @param environment - Current environment (mainnet/testnet) + * @param sourceChain - Source chain identifier + * @param destinationChain - Destination chain identifier + * @param tokenCount - Number of tokens in the response + * @returns Metadata object with timestamp and request tracking */ -export enum APIErrorType { - VALIDATION_ERROR = "VALIDATION_ERROR", - SERVER_ERROR = "SERVER_ERROR", - NOT_FOUND = "NOT_FOUND", - INVALID_PARAMETER = "INVALID_PARAMETER", +export const createRateLimitsMetadata = ( + environment: Environment, + sourceChain: string, + destinationChain: string, + tokenCount: number +): RateLimitsMetadata => { + return { + environment, + timestamp: new Date().toISOString(), + requestId: crypto.randomUUID(), + sourceChain, + destinationChain, + tokenCount, + } } /** - * Standard API error response format + * Validates rate limits filter parameters + * @param filters - Filter parameters to validate + * @returns Validated filter object + * @throws CCIPError if required parameters are missing or invalid */ -export interface APIError { - error: APIErrorType - message: string - requestId?: string - details?: unknown -} +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, "sourceInternalId parameter is required") + } + if (!filters.destinationInternalId) { + throw new CCIPError(400, "destinationInternalId parameter is required") + } -/** - * Creates a standardized API error response - * @param error - Error type - * @param message - Error message - * @param status - HTTP status code - * @param details - Additional error details - * @param requestId - Optional request ID for correlation - * @returns Response object with error details - */ -export function createErrorResponse( - error: APIErrorType, - message: string, - status: number, - details?: unknown, - requestId?: string -): Response { - const errorResponse: APIError = { - error, - message, - ...(requestId ? { requestId } : {}), - ...(details ? { details } : {}), + // 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 } - return new Response(JSON.stringify(errorResponse), { - status, - headers: commonHeaders, - }) + // Validate rateType if provided + let rateType: RateLimitsType | undefined + if (filters.rateType) { + const normalizedRateType = filters.rateType.toLowerCase() + if (!["standard", "custom"].includes(normalizedRateType)) { + throw new CCIPError(400, 'rateType 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, + } } diff --git a/src/lib/ccip/utils/__tests__/pool-version.test.ts b/src/lib/ccip/utils/__tests__/pool-version.test.ts new file mode 100644 index 00000000000..425408cee06 --- /dev/null +++ b/src/lib/ccip/utils/__tests__/pool-version.test.ts @@ -0,0 +1,152 @@ +import { describe, it, expect } from "@jest/globals" +import { parseMajorVersion, isV2Pool, shouldEnableCCVFeatures, getEffectivePoolVersion } from "../pool-version.ts" +import { Environment } from "~/lib/ccip/types/index.ts" + +describe("Pool Version Utilities", () => { + describe("parseMajorVersion", () => { + it("should parse standard semver versions", () => { + expect(parseMajorVersion("1.0.0")).toBe(1) + expect(parseMajorVersion("2.0.0")).toBe(2) + expect(parseMajorVersion("1.5.1")).toBe(1) + expect(parseMajorVersion("2.1.3")).toBe(2) + expect(parseMajorVersion("10.0.0")).toBe(10) + }) + + it("should handle versions with v prefix", () => { + expect(parseMajorVersion("v1.0.0")).toBe(1) + expect(parseMajorVersion("v2.0.0")).toBe(2) + expect(parseMajorVersion("V1.5.0")).toBe(1) + }) + + it("should return 0 for invalid versions", () => { + expect(parseMajorVersion("")).toBe(0) + expect(parseMajorVersion("invalid")).toBe(0) + }) + + it("should handle edge cases", () => { + expect(parseMajorVersion("0.1.0")).toBe(0) + expect(parseMajorVersion("1")).toBe(1) + expect(parseMajorVersion("2.0")).toBe(2) + }) + }) + + describe("isV2Pool", () => { + it("should return true for v2.0+ versions", () => { + expect(isV2Pool("2.0.0")).toBe(true) + expect(isV2Pool("2.1.0")).toBe(true) + expect(isV2Pool("3.0.0")).toBe(true) + expect(isV2Pool("v2.0.0")).toBe(true) + }) + + it("should return false for v1.x versions", () => { + expect(isV2Pool("1.0.0")).toBe(false) + expect(isV2Pool("1.5.0")).toBe(false) + expect(isV2Pool("1.6.0")).toBe(false) + expect(isV2Pool("1.6.3")).toBe(false) + expect(isV2Pool("v1.6.0")).toBe(false) + }) + + it("should return false for invalid versions", () => { + expect(isV2Pool("")).toBe(false) + expect(isV2Pool("invalid")).toBe(false) + }) + }) + + describe("getEffectivePoolVersion", () => { + it("should return override version when available", () => { + // LBTC on mainnet has an override to 2.0.0 + const result = getEffectivePoolVersion(Environment.Mainnet, "LBTC", "mainnet", "1.6.0") + expect(result).toBe("2.0.0") + }) + + it("should return actual version when no override exists", () => { + // DAI on mainnet has no override (not in our mock data) + const result = getEffectivePoolVersion(Environment.Mainnet, "DAI", "mainnet", "1.6.0") + expect(result).toBe("1.6.0") + }) + + it("should handle testnet overrides", () => { + // CCIP-BnM on sepolia has an override to 2.0.0 + const result = getEffectivePoolVersion(Environment.Testnet, "CCIP-BnM", "ethereum-testnet-sepolia", "1.6.0") + expect(result).toBe("2.0.0") + }) + + it("should return actual version for non-overridden testnet tokens", () => { + // GHO has no override in our mock data + const result = getEffectivePoolVersion(Environment.Testnet, "GHO", "ethereum-testnet-sepolia", "1.5.0") + expect(result).toBe("1.5.0") + }) + + it("should return override for LINK (now v2.0)", () => { + // LINK on mainnet is now overridden to 2.0.0 + const result = getEffectivePoolVersion(Environment.Mainnet, "LINK", "mainnet", "1.6.0") + expect(result).toBe("2.0.0") + }) + + it("should return override for USDC (now v2.0)", () => { + // USDC on mainnet is now overridden to 2.0.0 + const result = getEffectivePoolVersion(Environment.Mainnet, "USDC", "mainnet", "1.6.0") + expect(result).toBe("2.0.0") + }) + }) + + describe("shouldEnableCCVFeatures", () => { + it("should return true for v2.0+ pools", () => { + // LBTC on mainnet is overridden to 2.0.0 + expect(shouldEnableCCVFeatures(Environment.Mainnet, "LBTC", "mainnet", "1.6.0")).toBe(true) + }) + + it("should return false for v1.x pools without override", () => { + // DAI on mainnet is not overridden (not in mock data) + expect(shouldEnableCCVFeatures(Environment.Mainnet, "DAI", "mainnet", "1.6.0")).toBe(false) + }) + + it("should return true if actual version is 2.0+ even without override", () => { + expect(shouldEnableCCVFeatures(Environment.Mainnet, "UNKNOWN", "mainnet", "2.0.0")).toBe(true) + }) + + it("should handle testnet correctly", () => { + // CCIP-BnM on sepolia is overridden to 2.0.0 + expect(shouldEnableCCVFeatures(Environment.Testnet, "CCIP-BnM", "ethereum-testnet-sepolia", "1.6.0")).toBe(true) + // GHO has no override (not in mock data) + expect(shouldEnableCCVFeatures(Environment.Testnet, "GHO", "ethereum-testnet-sepolia", "1.5.0")).toBe(false) + }) + + it("should return true for LINK (now v2.0)", () => { + // LINK on mainnet is now overridden to 2.0.0 + expect(shouldEnableCCVFeatures(Environment.Mainnet, "LINK", "mainnet", "1.6.0")).toBe(true) + }) + + it("should return true for USDC (now v2.0)", () => { + // USDC on mainnet is now overridden to 2.0.0 + expect(shouldEnableCCVFeatures(Environment.Mainnet, "USDC", "mainnet", "1.6.0")).toBe(true) + }) + }) +}) + +describe("Version-conditional API behavior", () => { + describe("v1.x pools", () => { + it("should have CCV features disabled", () => { + // DAI is not in our mock overrides, so it stays v1.x + const isCCVEnabled = shouldEnableCCVFeatures(Environment.Mainnet, "DAI", "mainnet", "1.6.0") + expect(isCCVEnabled).toBe(false) + }) + }) + + describe("v2.0+ pools", () => { + it("should have CCV features enabled for LBTC", () => { + const isCCVEnabled = shouldEnableCCVFeatures(Environment.Mainnet, "LBTC", "mainnet", "1.6.0") + expect(isCCVEnabled).toBe(true) + }) + + it("should have CCV features enabled for LINK", () => { + const isCCVEnabled = shouldEnableCCVFeatures(Environment.Mainnet, "LINK", "mainnet", "1.6.0") + expect(isCCVEnabled).toBe(true) + }) + + it("should have CCV features enabled for USDC", () => { + const isCCVEnabled = shouldEnableCCVFeatures(Environment.Mainnet, "USDC", "mainnet", "1.6.0") + expect(isCCVEnabled).toBe(true) + }) + }) +}) diff --git a/src/lib/ccip/utils/pool-version.ts b/src/lib/ccip/utils/pool-version.ts new file mode 100644 index 00000000000..8f5b75d0efa --- /dev/null +++ b/src/lib/ccip/utils/pool-version.ts @@ -0,0 +1,119 @@ +/** + * Pool Version Utilities + * + * Centralized utilities for handling CCIP pool version logic. + * CCV (Cross-Chain Verifiers), threshold amounts, and custom finality + * are only available for v2.0+ pools. + */ + +import { Environment } from "~/lib/ccip/types/index.ts" + +// Import pool version overrides for testing/mocking v2.0 behavior +import poolVersionOverridesMainnet from "~/__mocks__/pool-version-overrides-mainnet.json" with { type: "json" } +import poolVersionOverridesTestnet from "~/__mocks__/pool-version-overrides-testnet.json" with { type: "json" } + +/** + * Minimum major version that supports CCV features + */ +const CCV_MIN_MAJOR_VERSION = 2 + +/** + * Pool version overrides type + * Token -> Chain (directory key) -> version override + */ +type PoolVersionOverrides = Record> + +/** + * Parses a semantic version string and returns the major version number. + * Handles various formats: "2.0.0", "1.6.0", "v1.5.0", etc. + * + * @param version - Version string to parse + * @returns Major version number, or 0 if parsing fails + */ +export function parseMajorVersion(version: string): number { + if (!version) return 0 + + // Remove leading 'v' if present + const normalized = version.toLowerCase().replace(/^v/, "") + + // Extract major version from semver format + const match = normalized.match(/^(\d+)/) + if (match) { + return parseInt(match[1], 10) + } + + return 0 +} + +/** + * Checks if a pool version supports CCV features (v2.0+). + * + * @param version - Pool version string (e.g., "2.0.0", "1.6.0") + * @returns true if version is 2.0 or higher + */ +export function isV2Pool(version: string): boolean { + const majorVersion = parseMajorVersion(version) + return majorVersion >= CCV_MIN_MAJOR_VERSION +} + +/** + * Loads pool version overrides for the specified environment. + * Overrides allow testing v2.0 behavior without modifying real token data. + * + * @param environment - Network environment (mainnet/testnet) + * @returns Pool version overrides map + */ +export function loadPoolVersionOverrides(environment: Environment): PoolVersionOverrides { + if (environment === Environment.Mainnet) { + return poolVersionOverridesMainnet as PoolVersionOverrides + } + return poolVersionOverridesTestnet as PoolVersionOverrides +} + +/** + * Gets the effective pool version for a token on a specific chain. + * Checks for mock overrides first, then falls back to the actual pool version. + * + * @param environment - Network environment + * @param tokenSymbol - Token canonical symbol (e.g., "LBTC", "LINK") + * @param directoryKey - Chain directory key (e.g., "mainnet", "arbitrum-mainnet") + * @param actualVersion - Actual pool version from token data + * @returns Effective pool version (override or actual) + */ +export function getEffectivePoolVersion( + environment: Environment, + tokenSymbol: string, + directoryKey: string, + actualVersion: string +): string { + const overrides = loadPoolVersionOverrides(environment) + + // Check for override + const tokenOverrides = overrides[tokenSymbol] + if (tokenOverrides && tokenOverrides[directoryKey]) { + return tokenOverrides[directoryKey] + } + + return actualVersion +} + +/** + * Checks if CCV features should be enabled for a token on a specific chain. + * This is the primary function services should use to determine if CCV data + * should be included in API responses. + * + * @param environment - Network environment + * @param tokenSymbol - Token canonical symbol + * @param directoryKey - Chain directory key + * @param actualPoolVersion - Actual pool version from token data + * @returns true if CCV features should be enabled + */ +export function shouldEnableCCVFeatures( + environment: Environment, + tokenSymbol: string, + directoryKey: string, + actualPoolVersion: string +): boolean { + const effectiveVersion = getEffectivePoolVersion(environment, tokenSymbol, directoryKey, actualPoolVersion) + return isV2Pool(effectiveVersion) +} diff --git a/src/pages/api/ccip/v1/chains.ts b/src/pages/api/ccip/v1/chains.ts index 94c68f3179c..7b0df0912cf 100644 --- a/src/pages/api/ccip/v1/chains.ts +++ b/src/pages/api/ccip/v1/chains.ts @@ -7,21 +7,22 @@ import { validateSearch, validateFamily, validateSearchParams, + validateInternalIdFormat, generateChainKey, createMetadata, - 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, ChainFamily } from "~/lib/ccip/types/index.ts" import { ChainDataService, getAllChainsForSearch } from "~/lib/ccip/services/chain-data.ts" import { searchChains } from "~/lib/ccip/services/chain-search.ts" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" export const prerender = false @@ -92,6 +93,14 @@ export const GET: APIRoute = async ({ request }) => { outputKey, }) + // Validate internalIdFormat parameter (only applies when outputKey=internalId) + const internalIdFormat = validateInternalIdFormat(params.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + // Validate enrichFeeTokens parameter const enrichFeeTokens = validateEnrichFeeTokens(params.get("enrichFeeTokens") || undefined) logger.debug({ @@ -100,6 +109,9 @@ export const GET: APIRoute = async ({ request }) => { enrichFeeTokens, }) + // Initialize chain identifier service for formatting (only used when outputKey=internalId) + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + const config = await loadChainConfiguration(environment) logger.debug({ message: "Chain configuration loaded", @@ -119,7 +131,7 @@ export const GET: APIRoute = async ({ request }) => { const { data: supportedData, errors: supportedErrors, - metadata: serviceMetadata, + metadata: _serviceMetadata, } = await chainDataService.getFilteredChains(environment, {}, enrichFeeTokens) // Flatten supported chains from all families @@ -196,17 +208,31 @@ export const GET: APIRoute = async ({ request }) => { } // Convert each chain family's array to a keyed object structure as required by the API + // Always apply internalIdFormat to format the internalId field in each chain object const formattedData = Object.entries(data).reduce( (acc, [familyKey, chainList]) => { acc[familyKey] = chainList.reduce( (familyAcc, chain) => { - const key = - outputKey === "chainId" - ? generateChainKey(chain.chainId, chain.chainType, outputKey) - : outputKey - ? chain[outputKey].toString() - : chain.internalId - familyAcc[key] = chain + let key: string + + // Always format the internalId field based on internalIdFormat + const resolved = chainIdService.resolve(chain.internalId) + const formattedInternalId = resolved + ? chainIdService.format(resolved.directoryKey, internalIdFormat) + : chain.internalId + const formattedChain = { ...chain, internalId: formattedInternalId } + + if (outputKey === "chainId") { + key = generateChainKey(chain.chainId, chain.chainType, outputKey) + } else if (outputKey === "internalId") { + key = formattedInternalId + } else if (outputKey) { + key = chain[outputKey].toString() + } else { + key = chain.internalId + } + + familyAcc[key] = formattedChain return familyAcc }, {} as Record @@ -229,7 +255,7 @@ export const GET: APIRoute = async ({ request }) => { }) return new Response(JSON.stringify(response), { - headers: { ...commonHeaders, ...successHeaders }, + headers: jsonHeaders, }) } catch (error) { logger.error({ @@ -245,7 +271,6 @@ export const GET: APIRoute = async ({ request }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - undefined, requestId ) } @@ -255,7 +280,6 @@ export const GET: APIRoute = async ({ request }) => { APIErrorType.SERVER_ERROR, "An unexpected error occurred while processing the request.", 500, - undefined, requestId ) } diff --git a/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts b/src/pages/api/ccip/v1/drips/[chainName]/challenge.ts index 7cb73fe1999..aafe4e63588 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" @@ -30,13 +31,13 @@ export const GET: APIRoute = async ({ request, params }) => { const receiver = url.searchParams.get("receiver") if (!token) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Missing token parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Missing token parameter", 422, requestId, { code: "invalid_token", }) } if (!receiver) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Missing receiver parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Missing receiver parameter", 422, requestId, { code: "invalid_receiver", }) } @@ -102,33 +103,30 @@ export const GET: APIRoute = async ({ request, params }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - { traceId: requestId } + requestId ) } // Handle validation errors if (error instanceof Error && error.message.includes("not supported")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "unsupported_chain", - traceId: requestId, }) } if (error instanceof Error && error.message.includes("Invalid address")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "invalid_address", - traceId: requestId, }) } if (error instanceof Error && error.message.includes("not allowed")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "unsupported_token", - traceId: requestId, }) } // Handle other errors - return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to generate challenge", 500, { traceId: requestId }) + return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to generate challenge", 500, requestId) } } diff --git a/src/pages/api/ccip/v1/drips/[chainName]/execute.ts b/src/pages/api/ccip/v1/drips/[chainName]/execute.ts index eed4c9a4724..676b93bc8b0 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" @@ -32,9 +33,8 @@ export const POST: APIRoute = async ({ request, params }) => { try { body = await request.json() } catch { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid JSON body", 400, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid JSON body", 400, requestId, { code: "invalid_json", - traceId: requestId, }) } @@ -61,30 +61,26 @@ export const POST: APIRoute = async ({ request, params }) => { // 2. Input validation if (!token || typeof token !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid token parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid token parameter", 422, requestId, { code: "invalid_token", - traceId: requestId, }) } if (!receiver || typeof receiver !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid receiver parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid receiver parameter", 422, requestId, { code: "invalid_receiver", - traceId: requestId, }) } if (!challenge || typeof challenge !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid challenge parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid challenge parameter", 422, requestId, { code: "bad_challenge", - traceId: requestId, }) } if (!receiverSignature || typeof receiverSignature !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid signature parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid signature parameter", 422, requestId, { code: "invalid_signature", - traceId: requestId, }) } @@ -101,9 +97,9 @@ export const POST: APIRoute = async ({ request, params }) => { APIErrorType.VALIDATION_ERROR, `Faucet configuration error: ${configError instanceof Error ? configError.message : "Invalid chain or token configuration"}`, 400, + requestId, { code: "FAUCET_CONFIG_ERROR", - traceId: requestId, } ) } @@ -113,9 +109,9 @@ export const POST: APIRoute = async ({ request, params }) => { APIErrorType.VALIDATION_ERROR, `Unsupported chain: ${params.chainName}. This chain is not enabled for faucet operations.`, 400, + requestId, { code: "UNSUPPORTED_CHAIN", - traceId: requestId, supportedChains: ["solana-devnet"], } ) @@ -160,9 +156,9 @@ export const POST: APIRoute = async ({ request, params }) => { APIErrorType.VALIDATION_ERROR, `Authentication failed: ${verifyResult.message || "Signature verification failed"}`, statusCode, + requestId, { code: verifyResult.code || "INVALID_SIGNATURE", - traceId: requestId, } ) } @@ -179,10 +175,15 @@ export const POST: APIRoute = async ({ request, params }) => { const svmDripAdapter = new SvmDripAdapter() if (!svmDripAdapter.isDripAvailable(chainConfig)) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Drip is not available for this chain", 503, { - code: "drip_unavailable", - traceId: requestId, - }) + return createErrorResponse( + APIErrorType.VALIDATION_ERROR, + "Drip is not available for this chain", + 503, + requestId, + { + code: "drip_unavailable", + } + ) } // 6. Execute the drip (rate limiting handled on-chain by Solana program) @@ -234,7 +235,7 @@ export const POST: APIRoute = async ({ request, params }) => { token, receiver, }, - traceId: requestId, + requestId, }), { headers: { ...commonHeaders, ...securityHeaders }, @@ -274,11 +275,11 @@ export const POST: APIRoute = async ({ request, params }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - { traceId: requestId } + requestId ) } // Handle other errors - return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to execute drip", 500, { traceId: requestId }) + return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to execute drip", 500, requestId) } } diff --git a/src/pages/api/ccip/v1/drips/[chainName]/index.ts b/src/pages/api/ccip/v1/drips/[chainName]/index.ts index b56a1ce31ce..4a72b2a3256 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" @@ -28,9 +29,8 @@ export const POST: APIRoute = async ({ request, params }) => { try { body = await request.json() } catch { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid JSON body", 400, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid JSON body", 400, requestId, { code: "invalid_json", - traceId: requestId, }) } @@ -49,30 +49,26 @@ export const POST: APIRoute = async ({ request, params }) => { // 3. Input validation if (!token || typeof token !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid token parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid token parameter", 422, requestId, { code: "invalid_token", - traceId: requestId, }) } if (!receiver || typeof receiver !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid receiver parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid receiver parameter", 422, requestId, { code: "invalid_receiver", - traceId: requestId, }) } if (!challenge || typeof challenge !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid challenge parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid challenge parameter", 422, requestId, { code: "bad_challenge", - traceId: requestId, }) } if (!receiverSignature || typeof receiverSignature !== "string") { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid signature parameter", 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Invalid signature parameter", 422, requestId, { code: "invalid_signature", - traceId: requestId, }) } @@ -109,10 +105,15 @@ export const POST: APIRoute = async ({ request, params }) => { // 5. Handle verification result if (verifyResult.status === "error") { // Return 400 for verification failures (client error, not server error) - return createErrorResponse(APIErrorType.VALIDATION_ERROR, verifyResult.message || "Verification failed", 400, { - code: verifyResult.code || "verification_failed", - traceId: requestId, - }) + return createErrorResponse( + APIErrorType.VALIDATION_ERROR, + verifyResult.message || "Verification failed", + 400, + requestId, + { + code: verifyResult.code || "verification_failed", + } + ) } // 6. Security headers @@ -144,7 +145,7 @@ export const POST: APIRoute = async ({ request, params }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - { traceId: requestId } + requestId ) } @@ -153,56 +154,49 @@ export const POST: APIRoute = async ({ request, params }) => { const errorMessage = error.message.toLowerCase() if (errorMessage.includes("challenge expired")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge has expired", 401, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge has expired", 401, requestId, { code: "challenge_expired", - traceId: requestId, }) } if (errorMessage.includes("challenge tampered") || errorMessage.includes("invalid hmac")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge has been tampered with", 401, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge has been tampered with", 401, requestId, { code: "challenge_tampered", - traceId: requestId, }) } if (errorMessage.includes("signature verification failed")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Signature verification failed", 401, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Signature verification failed", 401, requestId, { code: "invalid_signature", - traceId: requestId, }) } if (errorMessage.includes("origin mismatch")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge origin mismatch", 401, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, "Challenge origin mismatch", 401, requestId, { code: "origin_mismatch", - traceId: requestId, }) } if (errorMessage.includes("not supported")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "unsupported_chain", - traceId: requestId, }) } if (errorMessage.includes("invalid address")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "invalid_address", - traceId: requestId, }) } if (errorMessage.includes("not allowed")) { - return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, { + return createErrorResponse(APIErrorType.VALIDATION_ERROR, error.message, 422, requestId, { code: "unsupported_token", - traceId: requestId, }) } } // Handle other errors - return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to verify signature", 500, { traceId: requestId }) + return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to verify signature", 500, requestId) } } diff --git a/src/pages/api/ccip/v1/lanes.ts b/src/pages/api/ccip/v1/lanes.ts index aab2b95d7c3..2ff9a8962bb 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, } @@ -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({ @@ -133,16 +132,11 @@ export const GET: APIRoute = async ({ request }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - {} + requestId ) } // Handle other errors - if (error instanceof Error) { - return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process lanes request", 500, { - message: error.message, - }) - } - return handleApiError(error) + return handleApiError(error, requestId) } } 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..214341f63e5 --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/index.ts @@ -0,0 +1,166 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" +import { loadReferenceData, Version } from "@config/data/ccip/index.ts" +import type { ChainConfig } from "@config/data/ccip/types.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, + }) + + // Validate internalIdFormat parameter (controls output format for internal IDs) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + const laneDataService = new LaneDataService() + + // Load reference data to resolve chain IDs to directory keys + const { chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Resolve chain IDs to directory keys + const sourceDirectoryKey = laneDataService.resolveToInternalId( + source, + "chainId", + chainsReferenceData as Record + ) + const destDirectoryKey = laneDataService.resolveToInternalId( + destination, + "chainId", + chainsReferenceData as Record + ) + + if (!sourceDirectoryKey || !destDirectoryKey) { + throw new CCIPError(404, `Lane from chain '${source}' to chain '${destination}' not found`) + } + + const result = await laneDataService.getLaneDetails(environment, sourceDirectoryKey, destDirectoryKey, "internalId") + + 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, + }) + + // Format the internalId fields in the response data based on internalIdFormat + const formattedSourceInternalId = chainIdService.format(sourceDirectoryKey, internalIdFormat) + const formattedDestInternalId = chainIdService.format(destDirectoryKey, internalIdFormat) + + const formattedData = { + ...result.data, + sourceChain: { + ...result.data.sourceChain, + internalId: formattedSourceInternalId, + }, + destinationChain: { + ...result.data.destinationChain, + internalId: formattedDestInternalId, + }, + } + + // Create lane detail metadata (keep chain IDs as that's what user passed) + const metadata: LaneDetailMetadata = { + environment, + timestamp: new Date().toISOString(), + requestId, + sourceChain: source, + destinationChain: destination, + } + + const response: LaneDetailApiResponse = { + metadata, + data: formattedData, + } + + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..d9fdc602b53 --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-chain-id/[source]/[destination]/supported-tokens.ts @@ -0,0 +1,156 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" +import { loadReferenceData, Version } from "@config/data/ccip/index.ts" +import type { ChainConfig } from "@config/data/ccip/types.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, + }) + + // Validate internalIdFormat parameter (controls output format for internal IDs) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting (reserved for future use) + const _chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + const laneDataService = new LaneDataService() + + // Load reference data to resolve chain IDs to directory keys + const { chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Resolve chain IDs to directory keys + const sourceDirectoryKey = laneDataService.resolveToInternalId( + source, + "chainId", + chainsReferenceData as Record + ) + const destDirectoryKey = laneDataService.resolveToInternalId( + destination, + "chainId", + chainsReferenceData as Record + ) + + if (!sourceDirectoryKey || !destDirectoryKey) { + throw new CCIPError(404, `Lane from chain '${source}' to chain '${destination}' not found`) + } + + const result = await laneDataService.getSupportedTokensWithRateLimits( + environment, + sourceDirectoryKey, + destDirectoryKey, + "internalId" + ) + + 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 (keep chain IDs in metadata as that's what user passed) + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..66a1bf0e276 --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/index.ts @@ -0,0 +1,158 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.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, + }) + + // Validate internalIdFormat parameter (controls output format) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + // Resolve source and destination to directory keys for data lookup + const sourceResolved = chainIdService.resolve(source) + const destResolved = chainIdService.resolve(destination) + + if (!sourceResolved) { + throw new CCIPError(400, `Invalid source chain identifier: '${source}'`) + } + if (!destResolved) { + throw new CCIPError(400, `Invalid destination chain identifier: '${destination}'`) + } + + const laneDataService = new LaneDataService() + const result = await laneDataService.getLaneDetails( + environment, + sourceResolved.directoryKey, + destResolved.directoryKey, + "internalId" + ) + + 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, + }) + + // Format chain identifiers based on internalIdFormat + const formattedSource = chainIdService.format(sourceResolved.directoryKey, internalIdFormat) + const formattedDest = chainIdService.format(destResolved.directoryKey, internalIdFormat) + + // Format the internalId fields in the response data + const formattedData = { + ...result.data, + sourceChain: { + ...result.data.sourceChain, + internalId: formattedSource, + }, + destinationChain: { + ...result.data.destinationChain, + internalId: formattedDest, + }, + } + + // Create lane detail metadata with formatted chain identifiers + const metadata: LaneDetailMetadata = { + environment, + timestamp: new Date().toISOString(), + requestId, + sourceChain: formattedSource, + destinationChain: formattedDest, + } + + const response: LaneDetailApiResponse = { + metadata, + data: formattedData, + } + + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..e052858a291 --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-internal-id/[source]/[destination]/supported-tokens.ts @@ -0,0 +1,146 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.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, + }) + + // Validate internalIdFormat parameter (controls output format) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + // Resolve source and destination to directory keys for data lookup + const sourceResolved = chainIdService.resolve(source) + const destResolved = chainIdService.resolve(destination) + + if (!sourceResolved) { + throw new CCIPError(400, `Invalid source chain identifier: '${source}'`) + } + if (!destResolved) { + throw new CCIPError(400, `Invalid destination chain identifier: '${destination}'`) + } + + const laneDataService = new LaneDataService() + const result = await laneDataService.getSupportedTokensWithRateLimits( + environment, + sourceResolved.directoryKey, + destResolved.directoryKey, + "internalId" + ) + + 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, + }) + + // Format chain identifiers based on internalIdFormat + const formattedSource = chainIdService.format(sourceResolved.directoryKey, internalIdFormat) + const formattedDest = chainIdService.format(destResolved.directoryKey, internalIdFormat) + + // Create metadata with formatted chain identifiers + const metadata: SupportedTokensMetadata = { + environment, + timestamp: new Date().toISOString(), + requestId, + sourceChain: formattedSource, + destinationChain: formattedDest, + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..600ed75605b --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/index.ts @@ -0,0 +1,166 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" +import { loadReferenceData, Version } from "@config/data/ccip/index.ts" +import type { ChainConfig } from "@config/data/ccip/types.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, + }) + + // Validate internalIdFormat parameter (controls output format for internal IDs) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + const laneDataService = new LaneDataService() + + // Load reference data to resolve selectors to directory keys + const { chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Resolve selectors to directory keys + const sourceDirectoryKey = laneDataService.resolveToInternalId( + source, + "selector", + chainsReferenceData as Record + ) + const destDirectoryKey = laneDataService.resolveToInternalId( + destination, + "selector", + chainsReferenceData as Record + ) + + if (!sourceDirectoryKey || !destDirectoryKey) { + throw new CCIPError(404, `Lane from selector '${source}' to selector '${destination}' not found`) + } + + const result = await laneDataService.getLaneDetails(environment, sourceDirectoryKey, destDirectoryKey, "internalId") + + 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, + }) + + // Format the internalId fields in the response data based on internalIdFormat + const formattedSourceInternalId = chainIdService.format(sourceDirectoryKey, internalIdFormat) + const formattedDestInternalId = chainIdService.format(destDirectoryKey, internalIdFormat) + + const formattedData = { + ...result.data, + sourceChain: { + ...result.data.sourceChain, + internalId: formattedSourceInternalId, + }, + destinationChain: { + ...result.data.destinationChain, + internalId: formattedDestInternalId, + }, + } + + // Create lane detail metadata (keep selectors as that's what user passed) + const metadata: LaneDetailMetadata = { + environment, + timestamp: new Date().toISOString(), + requestId, + sourceChain: source, + destinationChain: destination, + } + + const response: LaneDetailApiResponse = { + metadata, + data: formattedData, + } + + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..ea2a954615e --- /dev/null +++ b/src/pages/api/ccip/v1/lanes/by-selector/[source]/[destination]/supported-tokens.ts @@ -0,0 +1,156 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateInternalIdFormat, + 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" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" +import { loadReferenceData, Version } from "@config/data/ccip/index.ts" +import type { ChainConfig } from "@config/data/ccip/types.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, + }) + + // Validate internalIdFormat parameter (controls output format for internal IDs) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize chain identifier service for formatting (reserved for future use) + const _chainIdService = new ChainIdentifierService(environment, internalIdFormat) + + const laneDataService = new LaneDataService() + + // Load reference data to resolve selectors to directory keys + const { chainsReferenceData } = loadReferenceData({ + environment, + version: Version.V1_2_0, + }) + + // Resolve selectors to directory keys + const sourceDirectoryKey = laneDataService.resolveToInternalId( + source, + "selector", + chainsReferenceData as Record + ) + const destDirectoryKey = laneDataService.resolveToInternalId( + destination, + "selector", + chainsReferenceData as Record + ) + + if (!sourceDirectoryKey || !destDirectoryKey) { + throw new CCIPError(404, `Lane from selector '${source}' to selector '${destination}' not found`) + } + + const result = await laneDataService.getSupportedTokensWithRateLimits( + environment, + sourceDirectoryKey, + destDirectoryKey, + "internalId" + ) + + 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 (keep selectors in metadata as that's what user passed) + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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..1e9f2473097 --- /dev/null +++ b/src/pages/api/ccip/v1/rate-limits.ts @@ -0,0 +1,109 @@ +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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} diff --git a/src/pages/api/ccip/v1/tokens.ts b/src/pages/api/ccip/v1/tokens.ts index 7a3fb65de0a..75ea7638cc9 100644 --- a/src/pages/api/ccip/v1/tokens.ts +++ b/src/pages/api/ccip/v1/tokens.ts @@ -2,19 +2,20 @@ import { APIRoute } from "astro" import { validateEnvironment, validateOutputKey, + validateInternalIdFormat, 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" +import type { TokenFilterType, TokenApiResponse, TokenChainData } from "~/lib/ccip/types/index.ts" import { TokenDataService } from "~/lib/ccip/services/token-data.ts" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" export const prerender = false @@ -59,6 +60,14 @@ export const GET: APIRoute = async ({ request }) => { outputKey, }) + // Validate internalIdFormat parameter (only applies when output_key=internalId) + const internalIdFormat = validateInternalIdFormat(params.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + const config = await loadChainConfiguration(environment) logger.debug({ message: "Chain configuration loaded", @@ -82,6 +91,30 @@ export const GET: APIRoute = async ({ request }) => { filters, }) + // Apply internalIdFormat to transform chain keys when output_key=internalId + let formattedTokens = tokens + if (outputKey === "internalId") { + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + formattedTokens = {} + + for (const [tokenSymbol, chainData] of Object.entries(tokens)) { + const formattedChainData: Record = {} + + for (const [chainKey, tokenChainData] of Object.entries(chainData)) { + // Resolve and format the chain key + const resolved = chainIdService.resolve(chainKey) + if (resolved) { + const formattedKey = chainIdService.format(resolved.directoryKey, internalIdFormat) + formattedChainData[formattedKey] = tokenChainData + } else { + formattedChainData[chainKey] = tokenChainData + } + } + + formattedTokens[tokenSymbol] = formattedChainData + } + } + // Create token-specific metadata using the utility function const metadata = createTokenMetadata(environment) metadata.ignoredTokenCount = serviceMetadata.ignoredTokenCount @@ -89,7 +122,7 @@ export const GET: APIRoute = async ({ request }) => { const response: TokenApiResponse = { metadata, - data: tokens, + data: formattedTokens, ignored: errors, } @@ -100,7 +133,7 @@ export const GET: APIRoute = async ({ request }) => { }) return new Response(JSON.stringify(response), { - headers: { ...commonHeaders, ...successHeaders }, + headers: jsonHeaders, }) } catch (error) { logger.error({ @@ -116,16 +149,11 @@ export const GET: APIRoute = async ({ request }) => { error.statusCode === 400 ? APIErrorType.VALIDATION_ERROR : APIErrorType.SERVER_ERROR, error.message, error.statusCode, - {} + requestId ) } // Handle other errors - if (error instanceof Error) { - return createErrorResponse(APIErrorType.SERVER_ERROR, "Failed to process token request", 500, { - message: error.message, - }) - } - return handleApiError(error) + return handleApiError(error, requestId) } } 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..37577ce9810 --- /dev/null +++ b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol].ts @@ -0,0 +1,146 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateOutputKey, + validateInternalIdFormat, + 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, TokenDetailDataResponse } from "~/lib/ccip/types/index.ts" +import { TokenDataService } from "~/lib/ccip/services/token-data.ts" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.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("outputKey") || undefined) + logger.debug({ + message: "Output key validated", + requestId, + outputKey, + }) + + // Validate internalIdFormat parameter (only applies when outputKey=internalId) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + const tokenDataService = new TokenDataService() + const result = await tokenDataService.getTokenWithFinality(environment, tokenCanonicalSymbol, outputKey) + + if (!result) { + throw new CCIPError(404, `Token '${tokenCanonicalSymbol}' not found`) + } + + // Apply internalIdFormat to transform chain keys when output_key=internalId + let formattedData = result.data + if (outputKey === "internalId") { + const chainIdService = new ChainIdentifierService(environment, internalIdFormat) + const formatted: TokenDetailDataResponse = {} + + for (const [chainKey, chainData] of Object.entries(result.data)) { + const resolved = chainIdService.resolve(chainKey) + if (resolved) { + const formattedKey = chainIdService.format(resolved.directoryKey, internalIdFormat) + formatted[formattedKey] = chainData + } else { + formatted[chainKey] = chainData + } + } + + formattedData = formatted + } + + 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: formattedData, + } + + 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} diff --git a/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/chains/[chain].ts b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/chains/[chain].ts new file mode 100644 index 00000000000..bf7e310691e --- /dev/null +++ b/src/pages/api/ccip/v1/tokens/[tokenCanonicalSymbol]/chains/[chain].ts @@ -0,0 +1,154 @@ +import type { APIRoute } from "astro" +import { + validateEnvironment, + validateOutputKey, + validateInternalIdFormat, + 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 { TokenDirectoryApiResponse, TokenDirectoryMetadata, NamingConvention } from "~/lib/ccip/types/index.ts" +import { TokenDirectoryService } from "~/lib/ccip/services/token-directory.ts" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" + +export const prerender = false + +export const GET: APIRoute = async ({ params, request }) => { + const requestId = crypto.randomUUID() + + try { + const { tokenCanonicalSymbol, chain } = params + + logger.info({ + message: "Processing CCIP token directory request", + requestId, + url: request.url, + tokenCanonicalSymbol, + chain, + }) + + // Validate token symbol is provided + if (!tokenCanonicalSymbol) { + throw new CCIPError(400, "tokenCanonicalSymbol parameter is required") + } + + // Validate chain parameter is provided + if (!chain) { + throw new CCIPError(400, "chain 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("outputKey") || undefined) + logger.debug({ + message: "Output key validated", + requestId, + outputKey, + }) + + // Validate internalIdFormat parameter (only applies when outputKey=internalId) + const internalIdFormat = validateInternalIdFormat(queryParams.get("internalIdFormat") || undefined) + logger.debug({ + message: "Internal ID format validated", + requestId, + internalIdFormat, + }) + + // Initialize services + const tokenDirectoryService = new TokenDirectoryService(requestId) + const chainIdService = new ChainIdentifierService(environment, internalIdFormat as NamingConvention) + + // Resolve chain identifier to get the formatted sourceChain for metadata + const resolvedChain = chainIdService.resolve(chain) + if (!resolvedChain) { + throw new CCIPError(404, `Chain '${chain}' not found`) + } + + // Get token directory data + const result = await tokenDirectoryService.getTokenDirectory( + environment, + tokenCanonicalSymbol, + chain, + outputKey, + internalIdFormat as NamingConvention + ) + + if (!result.data) { + throw new CCIPError(404, `Token '${tokenCanonicalSymbol}' not found on chain '${chain}'`) + } + + // Format sourceChain in metadata based on internalIdFormat + const formattedSourceChain = chainIdService.format(resolvedChain.directoryKey, internalIdFormat as NamingConvention) + + logger.info({ + message: "Token directory data retrieved successfully", + requestId, + tokenCanonicalSymbol, + chain, + outboundLaneCount: Object.keys(result.data.outboundLanes).length, + inboundLaneCount: Object.keys(result.data.inboundLanes).length, + }) + + // Create token directory metadata + const metadata: TokenDirectoryMetadata = { + environment, + timestamp: new Date().toISOString(), + requestId, + symbol: tokenCanonicalSymbol, + sourceChain: formattedSourceChain, + } + + const response: TokenDirectoryApiResponse = { + 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 directory 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, + requestId + ) + } + + // Handle other errors + return handleApiError(error, requestId) + } +} 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 bb433462f86..62db69be5b5 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 @@ -80,7 +81,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/tests/chain-api.test.ts b/src/tests/chain-api.test.ts index 346f5127e13..0a4be7b244b 100644 --- a/src/tests/chain-api.test.ts +++ b/src/tests/chain-api.test.ts @@ -4,6 +4,7 @@ import { validateFilters, validateOutputKey, validateEnrichFeeTokens, + validateInternalIdFormat, createMetadata, CCIPError, handleApiError, @@ -149,6 +150,26 @@ describe("CCIP Chain API Utils", () => { }) }) + describe("validateInternalIdFormat", () => { + it("should accept 'selector' format", () => { + expect(validateInternalIdFormat("selector")).toBe("selector") + }) + + it("should accept 'directory' format", () => { + expect(validateInternalIdFormat("directory")).toBe("directory") + }) + + it("should default to 'selector' when undefined", () => { + expect(validateInternalIdFormat(undefined)).toBe("selector") + }) + + it("should throw error for invalid values", () => { + expect(() => validateInternalIdFormat("invalid")).toThrow(CCIPError) + expect(() => validateInternalIdFormat("chainId")).toThrow(CCIPError) + expect(() => validateInternalIdFormat("selectorName")).toThrow(CCIPError) + }) + }) + describe("createMetadata", () => { it("should create valid metadata", () => { const metadata = createMetadata(ENV.Mainnet) @@ -165,24 +186,28 @@ describe("CCIP Chain API Utils", () => { describe("handleApiError", () => { it("should handle CCIPError", async () => { const error = new CCIPError(400, "Bad Request") - const response = handleApiError(error) + const response = handleApiError(error, "test-request-id") expect(response).toBeInstanceOf(Response) const data = await response.json() expect(data).toEqual({ error: "VALIDATION_ERROR", message: "Bad Request", + requestId: "test-request-id", + details: {}, }) expect(response.status).toBe(400) }) it("should handle unknown errors", async () => { const error = new Error("Unknown") - const response = handleApiError(error) + const response = handleApiError(error, "test-request-id") expect(response).toBeInstanceOf(Response) const data = await response.json() expect(data).toEqual({ error: "UNKNOWN_ERROR", message: "Unknown", + requestId: "test-request-id", + details: {}, }) expect(response.status).toBe(500) }) diff --git a/src/tests/chain-identifier-service.test.ts b/src/tests/chain-identifier-service.test.ts new file mode 100644 index 00000000000..5c2811d7994 --- /dev/null +++ b/src/tests/chain-identifier-service.test.ts @@ -0,0 +1,264 @@ +import { describe, it, expect, jest, beforeEach } from "@jest/globals" +import { ChainIdentifierService } from "~/lib/ccip/services/chain-identifier.ts" +import { Environment } from "~/lib/ccip/types/index.ts" + +// Mock the logger +jest.mock("../lib/logging", () => ({ + logger: { + info: jest.fn(), + debug: jest.fn(), + warn: jest.fn(), + error: jest.fn(), + }, +})) + +// Mock the loadReferenceData function +jest.mock("../config/data/ccip", () => ({ + loadReferenceData: jest.fn(() => ({ + chainsReferenceData: { + mainnet: { + chainId: 1, + feeTokens: ["LINK", "WETH"], + }, + "bsc-mainnet": { + chainId: 56, + feeTokens: ["LINK", "WBNB"], + }, + "matic-mainnet": { + chainId: 137, + feeTokens: ["LINK", "WMATIC"], + }, + // A chain where directory key matches selector name (no mapping needed) + "avalanche-mainnet": { + chainId: 43114, + feeTokens: ["LINK", "WAVAX"], + }, + }, + })), + Version: { + V1_2_0: "1.2.0", + }, +})) + +// Mock the chain utilities +jest.mock("../features/utils", () => ({ + directoryToSupportedChain: jest.fn((key: string) => { + const mapping: Record = { + mainnet: "ETHEREUM_MAINNET", + "bsc-mainnet": "BSC_MAINNET", + "matic-mainnet": "POLYGON_MAINNET", + "avalanche-mainnet": "AVALANCHE_MAINNET", + } + return mapping[key] || key.toUpperCase() + }), + getChainId: jest.fn((chain: string) => { + const mapping: Record = { + ETHEREUM_MAINNET: 1, + BSC_MAINNET: 56, + POLYGON_MAINNET: 137, + AVALANCHE_MAINNET: 43114, + } + return mapping[chain] + }), + getChainTypeAndFamily: jest.fn(() => ({ chainType: "evm", chainFamily: "evm" })), +})) + +// Mock the selector entry lookup +jest.mock("../config/data/ccip/selectors", () => ({ + getSelectorEntry: jest.fn((chainId: number) => { + const mapping: Record = { + 1: { selector: "5009297550715157269", name: "ethereum-mainnet" }, + 56: { selector: "11344663589394136015", name: "binance_smart_chain-mainnet" }, + 137: { selector: "4051577828743386545", name: "polygon-mainnet" }, + 43114: { selector: "6433500567565415381", name: "avalanche-mainnet" }, + } + return mapping[chainId] + }), +})) + +describe("ChainIdentifierService", () => { + let service: ChainIdentifierService + + beforeEach(() => { + service = new ChainIdentifierService("mainnet" as Environment, "selector") + }) + + describe("constructor", () => { + it("should create service with default selector convention", () => { + const svc = new ChainIdentifierService("mainnet" as Environment) + expect(svc.getDefaultConvention()).toBe("selector") + }) + + it("should create service with specified directory convention", () => { + const svc = new ChainIdentifierService("mainnet" as Environment, "directory") + expect(svc.getDefaultConvention()).toBe("directory") + }) + }) + + describe("isDirectoryKey", () => { + it("should return true for valid directory keys", () => { + expect(service.isDirectoryKey("mainnet")).toBe(true) + expect(service.isDirectoryKey("bsc-mainnet")).toBe(true) + expect(service.isDirectoryKey("matic-mainnet")).toBe(true) + }) + + it("should return false for selector names that differ from directory keys", () => { + expect(service.isDirectoryKey("ethereum-mainnet")).toBe(false) + expect(service.isDirectoryKey("binance_smart_chain-mainnet")).toBe(false) + expect(service.isDirectoryKey("polygon-mainnet")).toBe(false) + }) + + it("should return false for non-existent chains", () => { + expect(service.isDirectoryKey("nonexistent-chain")).toBe(false) + }) + }) + + describe("isSelectorName", () => { + it("should return true for selector names", () => { + expect(service.isSelectorName("ethereum-mainnet")).toBe(true) + expect(service.isSelectorName("binance_smart_chain-mainnet")).toBe(true) + }) + + it("should return true for directory keys (they are valid selector names too)", () => { + // Because avalanche-mainnet has same directory key and selector name + expect(service.isSelectorName("avalanche-mainnet")).toBe(true) + }) + }) + + describe("resolve", () => { + it("should resolve directory key to both formats", () => { + const result = service.resolve("mainnet") + expect(result).not.toBeNull() + expect(result!.directoryKey).toBe("mainnet") + expect(result!.selectorName).toBe("ethereum-mainnet") + expect(result!.inputConvention).toBe("directory") + }) + + it("should resolve selector name to both formats", () => { + const result = service.resolve("ethereum-mainnet") + expect(result).not.toBeNull() + expect(result!.directoryKey).toBe("mainnet") + expect(result!.selectorName).toBe("ethereum-mainnet") + expect(result!.inputConvention).toBe("selector") + }) + + it("should resolve BSC directory key correctly", () => { + const result = service.resolve("bsc-mainnet") + expect(result).not.toBeNull() + expect(result!.directoryKey).toBe("bsc-mainnet") + expect(result!.selectorName).toBe("binance_smart_chain-mainnet") + expect(result!.inputConvention).toBe("directory") + }) + + it("should resolve BSC selector name correctly", () => { + const result = service.resolve("binance_smart_chain-mainnet") + expect(result).not.toBeNull() + expect(result!.directoryKey).toBe("bsc-mainnet") + expect(result!.selectorName).toBe("binance_smart_chain-mainnet") + expect(result!.inputConvention).toBe("selector") + }) + + it("should handle chains where directory key equals selector name", () => { + // avalanche-mainnet has same name in both + const result = service.resolve("avalanche-mainnet") + expect(result).not.toBeNull() + expect(result!.directoryKey).toBe("avalanche-mainnet") + expect(result!.selectorName).toBe("avalanche-mainnet") + expect(result!.inputConvention).toBe("directory") + }) + + it("should return null for unknown chains", () => { + const result = service.resolve("unknown-chain") + expect(result).toBeNull() + }) + }) + + describe("format", () => { + it("should return directory key when format is directory", () => { + expect(service.format("mainnet", "directory")).toBe("mainnet") + expect(service.format("bsc-mainnet", "directory")).toBe("bsc-mainnet") + }) + + it("should return selector name when format is selector", () => { + expect(service.format("mainnet", "selector")).toBe("ethereum-mainnet") + expect(service.format("bsc-mainnet", "selector")).toBe("binance_smart_chain-mainnet") + }) + + it("should return directory key for unmapped chains when format is selector", () => { + // If no mapping exists, should return the directory key as-is + expect(service.format("avalanche-mainnet", "selector")).toBe("avalanche-mainnet") + }) + }) + + describe("getDirectoryKey", () => { + it("should return directory key from either format", () => { + expect(service.getDirectoryKey("mainnet")).toBe("mainnet") + expect(service.getDirectoryKey("ethereum-mainnet")).toBe("mainnet") + expect(service.getDirectoryKey("bsc-mainnet")).toBe("bsc-mainnet") + expect(service.getDirectoryKey("binance_smart_chain-mainnet")).toBe("bsc-mainnet") + }) + + it("should return null for unknown chains", () => { + expect(service.getDirectoryKey("unknown-chain")).toBeNull() + }) + }) + + describe("getSelectorName", () => { + it("should return selector name from either format", () => { + expect(service.getSelectorName("mainnet")).toBe("ethereum-mainnet") + expect(service.getSelectorName("ethereum-mainnet")).toBe("ethereum-mainnet") + expect(service.getSelectorName("bsc-mainnet")).toBe("binance_smart_chain-mainnet") + expect(service.getSelectorName("binance_smart_chain-mainnet")).toBe("binance_smart_chain-mainnet") + }) + + it("should return null for unknown chains", () => { + expect(service.getSelectorName("unknown-chain")).toBeNull() + }) + }) + + describe("detectConvention", () => { + it("should detect directory convention from directory key", () => { + expect(service.detectConvention("mainnet")).toBe("directory") + expect(service.detectConvention("bsc-mainnet")).toBe("directory") + }) + + it("should detect selector convention from selector name", () => { + expect(service.detectConvention("ethereum-mainnet")).toBe("selector") + expect(service.detectConvention("binance_smart_chain-mainnet")).toBe("selector") + }) + + it("should detect convention from first valid identifier", () => { + expect(service.detectConvention(undefined, "mainnet", "ethereum-mainnet")).toBe("directory") + expect(service.detectConvention(undefined, "ethereum-mainnet", "mainnet")).toBe("selector") + }) + + it("should return default convention when no valid identifiers", () => { + expect(service.detectConvention(undefined, undefined)).toBe("selector") + expect(service.detectConvention("unknown-chain")).toBe("selector") + }) + }) + + describe("bidirectional mapping consistency", () => { + it("should be able to round-trip from directory to selector and back", () => { + const directoryKey = "mainnet" + const resolved = service.resolve(directoryKey) + expect(resolved).not.toBeNull() + + const selectorName = resolved!.selectorName + const resolvedBack = service.resolve(selectorName) + expect(resolvedBack).not.toBeNull() + expect(resolvedBack!.directoryKey).toBe(directoryKey) + }) + + it("should be able to round-trip from selector to directory and back", () => { + const selectorName = "binance_smart_chain-mainnet" + const resolved = service.resolve(selectorName) + expect(resolved).not.toBeNull() + + const directoryKey = resolved!.directoryKey + const resolvedBack = service.resolve(directoryKey) + expect(resolvedBack).not.toBeNull() + expect(resolvedBack!.selectorName).toBe(selectorName) + }) + }) +}) diff --git a/src/tests/token-directory.test.ts b/src/tests/token-directory.test.ts new file mode 100644 index 00000000000..4af1e34f4e1 --- /dev/null +++ b/src/tests/token-directory.test.ts @@ -0,0 +1,682 @@ +import { describe, it, expect, jest } from "@jest/globals" +import type { + TokenDirectoryData, + TokenDirectoryLane, + CCVConfig, + LaneVerifiers, + RateLimiterConfig, + TokenRateLimits, + TokenFees, + CustomFinalityConfig, +} from "~/lib/ccip/types/index.ts" + +// Mock the logger +jest.mock("../lib/logging", () => ({ + logger: { + info: jest.fn(), + debug: jest.fn(), + warn: jest.fn(), + error: jest.fn(), + }, +})) + +describe("Token Directory Types", () => { + describe("TokenDirectoryData structure", () => { + it("should have correct structure with required fields", () => { + const data: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x8236a87084f8B84306f72007F36F2618A5634494", + decimals: 8, + }, + pool: { + address: "0x65756C6976c5dC9a546b455b8A6E9c2dC91E1b31", + rawType: "BurnMintTokenPool", + type: "burnMint", + version: "1.6.0", + advancedPoolHooks: null, + supportsV2Features: true, + }, + ccvConfig: { + thresholdAmount: "100000000000", + }, + customFinality: { + hasCustomFinality: true, + minBlockConfirmation: 5, + }, + outboundLanes: {}, + inboundLanes: {}, + } + + expect(data.internalId).toBe("mainnet") + expect(data.chainId).toBe(1) + expect(data.selector).toBe("5009297550715157269") + expect(data.token.address).toBe("0x8236a87084f8B84306f72007F36F2618A5634494") + expect(data.token.decimals).toBe(8) + expect(data.customFinality?.hasCustomFinality).toBe(true) + expect(data.customFinality?.minBlockConfirmation).toBe(5) + expect(data.pool.type).toBe("burnMint") + expect(data.pool.advancedPoolHooks).toBeNull() + expect(data.ccvConfig?.thresholdAmount).toBe("100000000000") + }) + + it("should allow null ccvConfig and customFinality for v1.x pools only", () => { + // For v1.x pools (supportsV2Features=false), ccvConfig and customFinality are null + const data: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x514910771AF9Ca656af840dff83E8264EcF986CA", + decimals: 18, + }, + pool: { + address: "0xLinkPool", + rawType: "LockReleaseTokenPool", + type: "lockRelease", + version: "1.6.0", + advancedPoolHooks: null, + supportsV2Features: false, // v1.x pool - ccvConfig and customFinality not supported + }, + ccvConfig: null, // null only valid for v1.x pools + customFinality: null, // null only valid for v1.x pools + outboundLanes: {}, + inboundLanes: {}, + } + + expect(data.pool.supportsV2Features).toBe(false) + expect(data.ccvConfig).toBeNull() + expect(data.customFinality).toBeNull() + }) + + it("should have ccvConfig object for v2.x pools (never null at field level)", () => { + // For v2.x pools, ccvConfig is always an object: + // - {thresholdAmount: "0"} = not configured + // - {thresholdAmount: "value"} = configured + // - {thresholdAmount: null} = downstream API error + const dataNotConfigured: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x514910771AF9Ca656af840dff83E8264EcF986CA", + decimals: 18, + }, + pool: { + address: "0xLinkPool", + rawType: "LockReleaseTokenPool", + type: "lockRelease", + version: "2.0.0", + advancedPoolHooks: null, + supportsV2Features: true, // v2.x pool + }, + ccvConfig: { thresholdAmount: "0" }, // v2 pool without CCV configured + customFinality: { hasCustomFinality: false, minBlockConfirmation: 0 }, + outboundLanes: {}, + inboundLanes: {}, + } + + expect(dataNotConfigured.pool.supportsV2Features).toBe(true) + expect(dataNotConfigured.ccvConfig).not.toBeNull() + expect(dataNotConfigured.ccvConfig?.thresholdAmount).toBe("0") + }) + }) + + describe("TokenDirectoryLane structure", () => { + it("should have correct structure for outbound lane with both rate limits", () => { + const lane: TokenDirectoryLane = { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + }, + custom: { + in: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + out: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + }, + }, + fees: { + standardTransferFeeBps: 10, + customTransferFeeBps: 25, + }, + verifiers: { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + }, + } + + expect(lane.internalId).toBe("arbitrum-mainnet") + expect(lane.chainId).toBe(42161) + expect(lane.rateLimits.standard?.out?.isEnabled).toBe(true) + expect(lane.rateLimits.custom?.in?.isEnabled).toBe(true) + expect(lane.fees?.standardTransferFeeBps).toBe(10) + expect(lane.fees?.customTransferFeeBps).toBe(25) + expect(lane.verifiers?.belowThreshold).toHaveLength(1) + expect(lane.verifiers?.aboveThreshold).toHaveLength(2) + }) + + it("should allow null rateLimits, fees, and verifiers (v1.x pools)", () => { + const lane: TokenDirectoryLane = { + internalId: "base-mainnet", + chainId: 8453, + selector: "15971525489660198786", + rateLimits: { + standard: null, + custom: null, + }, + fees: null, + verifiers: null, + } + + expect(lane.rateLimits.standard).toBeNull() + expect(lane.rateLimits.custom).toBeNull() + expect(lane.fees).toBeNull() + expect(lane.verifiers).toBeNull() + }) + }) + + describe("CCVConfig structure", () => { + it("should have thresholdAmount as string when CCV configured", () => { + const config: CCVConfig = { + thresholdAmount: "100000000000", + } + + expect(config.thresholdAmount).toBe("100000000000") + expect(typeof config.thresholdAmount).toBe("string") + }) + + it("should have thresholdAmount as '0' when CCV not configured (v2 pool)", () => { + // For v2 pools without CCV configured, thresholdAmount is "0" + const config: CCVConfig = { + thresholdAmount: "0", + } + + expect(config.thresholdAmount).toBe("0") + }) + + it("should have thresholdAmount as null for downstream API error (v2 pool)", () => { + // For v2 pools with downstream API error, thresholdAmount is null + const config: CCVConfig = { + thresholdAmount: null, + } + + expect(config.thresholdAmount).toBeNull() + }) + }) + + describe("LaneVerifiers structure", () => { + it("should have belowThreshold and aboveThreshold arrays", () => { + const verifiers: LaneVerifiers = { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + } + + expect(Array.isArray(verifiers.belowThreshold)).toBe(true) + expect(Array.isArray(verifiers.aboveThreshold)).toBe(true) + expect(verifiers.belowThreshold![0].startsWith("0x")).toBe(true) + }) + + it("should have aboveThreshold include all belowThreshold verifiers plus additional ones", () => { + const verifiers: LaneVerifiers = { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + aboveThreshold: [ + "0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", + "0xF4c7E640EdA248ef95972845a62bdC74237805dB", + "0xcBD48A8eB077381c3c4Eb36b402d7283aB2b11Bc", + ], + } + + // All belowThreshold verifiers should be in aboveThreshold + verifiers.belowThreshold!.forEach((v) => { + expect(verifiers.aboveThreshold).toContain(v) + }) + // aboveThreshold should have more verifiers + expect(verifiers.aboveThreshold!.length).toBeGreaterThanOrEqual(verifiers.belowThreshold!.length) + }) + + it("should allow null arrays for downstream API error", () => { + const verifiers: LaneVerifiers = { + belowThreshold: null, + aboveThreshold: null, + } + + expect(verifiers.belowThreshold).toBeNull() + expect(verifiers.aboveThreshold).toBeNull() + }) + + it("should have equal arrays when no threshold verifiers (v2.x pools with thresholdAmount=0)", () => { + // Note: v1.x pools have verifiers: null, not equal arrays + // This case applies to v2.x pools with thresholdAmount=0 + const verifiers: LaneVerifiers = { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + } + + expect(verifiers.belowThreshold).toEqual(verifiers.aboveThreshold) + }) + }) + + describe("RateLimiterConfig structure", () => { + it("should have capacity, rate, and isEnabled", () => { + const rateLimit: RateLimiterConfig = { + capacity: "12000000000000", + rate: "3330000000", + isEnabled: true, + } + + expect(typeof rateLimit.capacity).toBe("string") + expect(typeof rateLimit.rate).toBe("string") + expect(typeof rateLimit.isEnabled).toBe("boolean") + }) + + it("should allow disabled rate limits", () => { + const rateLimit: RateLimiterConfig = { + capacity: "0", + rate: "0", + isEnabled: false, + } + + expect(rateLimit.isEnabled).toBe(false) + }) + }) + + describe("TokenRateLimits structure", () => { + it("should have both standard and custom rate limits with in/out directions", () => { + const rateLimits: TokenRateLimits = { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + }, + custom: { + in: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + out: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + }, + } + + expect(rateLimits.standard).not.toBeNull() + expect(rateLimits.custom).not.toBeNull() + expect(rateLimits.standard?.out?.capacity).toBe("12000000000000") + expect(rateLimits.custom?.in?.capacity).toBe("24000000000000") + }) + + it("should allow null for individual rate limits", () => { + const rateLimits: TokenRateLimits = { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + }, + custom: null, + } + + expect(rateLimits.standard).not.toBeNull() + expect(rateLimits.custom).toBeNull() + }) + }) + + describe("TokenFees structure", () => { + it("should have standardTransferFeeBps and customTransferFeeBps", () => { + const fees: TokenFees = { + standardTransferFeeBps: 10, + customTransferFeeBps: 25, + } + + expect(fees.standardTransferFeeBps).toBe(10) + expect(fees.customTransferFeeBps).toBe(25) + }) + }) +}) + +describe("Token Directory API response validation", () => { + it("should not include display names in response (lean API)", () => { + const data: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x8236a87084f8B84306f72007F36F2618A5634494", + decimals: 8, + }, + pool: { + address: "0x65756C6976c5dC9a546b455b8A6E9c2dC91E1b31", + rawType: "BurnMintTokenPool", + type: "burnMint", + version: "1.6.0", + advancedPoolHooks: null, + supportsV2Features: true, + }, + ccvConfig: { + thresholdAmount: "100000000000", + }, + customFinality: { + hasCustomFinality: true, + minBlockConfirmation: 5, + }, + outboundLanes: {}, + inboundLanes: {}, + } + + // Should NOT have name/displayName fields + expect(data).not.toHaveProperty("name") + expect(data).not.toHaveProperty("displayName") + expect(data.token).not.toHaveProperty("name") + expect(data.token).not.toHaveProperty("symbol") + }) + + it("should not include formatted amounts", () => { + const config: CCVConfig = { + thresholdAmount: "100000000000", + } + + // Should NOT have formatted amount + expect(config).not.toHaveProperty("thresholdAmountFormatted") + }) + + it("should have verifiers as plain address arrays (not enriched objects)", () => { + const verifiers: LaneVerifiers = { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + } + + // Verifiers should be strings (addresses), not objects + verifiers.belowThreshold!.forEach((v) => { + expect(typeof v).toBe("string") + expect(v.startsWith("0x")).toBe(true) + }) + verifiers.aboveThreshold!.forEach((v) => { + expect(typeof v).toBe("string") + expect(v.startsWith("0x")).toBe(true) + }) + }) +}) + +describe("Token Directory example responses", () => { + it("should represent v2.0 pool (LBTC) with CCV features enabled", () => { + // v2.0 pool - CCV features enabled (ccvConfig, threshold verifiers) + const lbtcData: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x8236a87084f8B84306f72007F36F2618A5634494", + decimals: 8, + }, + pool: { + address: "0x65756C6976c5dC9a546b455b8A6E9c2dC91E1b31", + rawType: "BurnMintTokenPool", + type: "burnMint", + version: "2.0.0", // v2.0 pool + advancedPoolHooks: null, + supportsV2Features: true, + }, + ccvConfig: { + thresholdAmount: "100000000000", // CCV config present for v2.0+ + }, + customFinality: { + hasCustomFinality: true, + minBlockConfirmation: 5, + }, + outboundLanes: { + "arbitrum-mainnet": { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + }, + custom: { + in: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + out: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + }, + }, + fees: { + standardTransferFeeBps: 10, + customTransferFeeBps: 25, + }, + verifiers: { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: [ + "0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", + "0xF4c7E640EdA248ef95972845a62bdC74237805dB", + ], + }, + }, + }, + inboundLanes: { + "arbitrum-mainnet": { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: null, + }, + custom: null, + }, + fees: null, + verifiers: { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + }, + }, + }, + } + + expect(lbtcData.pool.version).toBe("2.0.0") + expect(lbtcData.ccvConfig).not.toBeNull() + expect(lbtcData.ccvConfig?.thresholdAmount).toBeDefined() + expect(parseInt(lbtcData.ccvConfig?.thresholdAmount || "0")).toBeGreaterThan(0) + const outboundLane = lbtcData.outboundLanes["arbitrum-mainnet"] + expect(outboundLane.verifiers).not.toBeNull() + expect(outboundLane.verifiers!.aboveThreshold!.length).toBeGreaterThan( + outboundLane.verifiers!.belowThreshold!.length + ) + expect(outboundLane.rateLimits.standard).not.toBeNull() + expect(outboundLane.rateLimits.custom).not.toBeNull() + expect(outboundLane.fees).not.toBeNull() + }) + + it("should represent v1.6 pool (DAI) with CCV features disabled", () => { + // v1.6 pool - CCV features disabled (no ccvConfig, verifiers null) + const daiData: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { + address: "0x6B175474E89094C44Da98b954EesddFfcd2bE3F5", + decimals: 18, + }, + pool: { + address: "0xDaiPool", + rawType: "LockReleaseTokenPool", + type: "lockRelease", + version: "1.6.0", // v1.6 pool + advancedPoolHooks: null, + supportsV2Features: false, // v1.x pool does NOT support v2 features + }, + ccvConfig: null, // No CCV config for v1.x pools + customFinality: null, // v1.x pool - feature not supported + outboundLanes: { + "arbitrum-mainnet": { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { + standard: { + in: { capacity: "5000000000000000000000", rate: "1670000000000000000", isEnabled: true }, + out: { capacity: "5000000000000000000000", rate: "1670000000000000000", isEnabled: true }, + }, + custom: null, + }, + fees: null, + verifiers: null, + }, + }, + inboundLanes: {}, + } + + expect(daiData.pool.version).toBe("1.6.0") + expect(daiData.pool.supportsV2Features).toBe(false) + expect(daiData.ccvConfig).toBeNull() + expect(daiData.customFinality).toBeNull() + expect(daiData.outboundLanes["arbitrum-mainnet"].verifiers).toBeNull() + expect(daiData.outboundLanes["arbitrum-mainnet"].rateLimits.standard).not.toBeNull() + expect(daiData.outboundLanes["arbitrum-mainnet"].rateLimits.custom).toBeNull() + }) +}) + +describe("Version-conditional API behavior", () => { + describe("v1.x pool response format", () => { + it("should have null ccvConfig and customFinality for v1.x pools", () => { + const v1PoolData: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { address: "0x...", decimals: 18 }, + pool: { + address: "0x...", + rawType: "LockReleaseTokenPool", + type: "lockRelease", + version: "1.6.0", + advancedPoolHooks: null, + supportsV2Features: false, // v1.x pool does NOT support v2 features + }, + ccvConfig: null, // Must be null for v1.x (feature not supported) + customFinality: null, // Must be null for v1.x (feature not supported) + outboundLanes: {}, + inboundLanes: {}, + } + + expect(v1PoolData.pool.supportsV2Features).toBe(false) + expect(v1PoolData.ccvConfig).toBeNull() + expect(v1PoolData.customFinality).toBeNull() + }) + + it("should have null verifiers for v1.x pools", () => { + const lane: TokenDirectoryLane = { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { standard: null, custom: null }, + fees: null, + verifiers: null, + } + + expect(lane.verifiers).toBeNull() + }) + }) + + describe("v2.0+ pool response format", () => { + it("should have ccvConfig with thresholdAmount for v2.0+ pools", () => { + const v2PoolData: TokenDirectoryData = { + internalId: "mainnet", + chainId: 1, + selector: "5009297550715157269", + token: { address: "0x...", decimals: 8 }, + pool: { + address: "0x...", + rawType: "BurnMintTokenPool", + type: "burnMint", + version: "2.0.0", + advancedPoolHooks: null, + supportsV2Features: true, + }, + ccvConfig: { thresholdAmount: "100000000000" }, // Present for v2.0+ + customFinality: { + hasCustomFinality: true, + minBlockConfirmation: 5, + }, + outboundLanes: {}, + inboundLanes: {}, + } + + expect(v2PoolData.ccvConfig).not.toBeNull() + expect(v2PoolData.ccvConfig?.thresholdAmount).toBeDefined() + expect(v2PoolData.customFinality?.hasCustomFinality).toBe(true) + }) + + it("should have aboveThreshold include additional verifiers for v2.0+ pools", () => { + const lane: TokenDirectoryLane = { + internalId: "arbitrum-mainnet", + chainId: 42161, + selector: "4949039107694359620", + rateLimits: { + standard: { + in: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + out: { capacity: "12000000000000", rate: "3330000000", isEnabled: true }, + }, + custom: { + in: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + out: { capacity: "24000000000000", rate: "6660000000", isEnabled: true }, + }, + }, + fees: { standardTransferFeeBps: 10, customTransferFeeBps: 25 }, + verifiers: { + belowThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"], + aboveThreshold: ["0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D", "0xF4c7E640EdA248ef95972845a62bdC74237805dB"], + }, + } + + expect(lane.verifiers).not.toBeNull() + expect(lane.verifiers!.aboveThreshold!.length).toBeGreaterThan(lane.verifiers!.belowThreshold!.length) + lane.verifiers!.belowThreshold!.forEach((v) => { + expect(lane.verifiers!.aboveThreshold).toContain(v) + }) + }) + }) +}) + +describe("CustomFinalityConfig structure", () => { + it("should have hasCustomFinality and minBlockConfirmation", () => { + const config: CustomFinalityConfig = { + hasCustomFinality: true, + minBlockConfirmation: 5, + } + + expect(config.hasCustomFinality).toBe(true) + expect(config.minBlockConfirmation).toBe(5) + }) + + it("should allow null values when data is unavailable", () => { + const config: CustomFinalityConfig = { + hasCustomFinality: null, + minBlockConfirmation: null, + } + + expect(config.hasCustomFinality).toBeNull() + expect(config.minBlockConfirmation).toBeNull() + }) + + it("should have hasCustomFinality=false when minBlockConfirmation is 0", () => { + const config: CustomFinalityConfig = { + hasCustomFinality: false, + minBlockConfirmation: 0, + } + + expect(config.hasCustomFinality).toBe(false) + expect(config.minBlockConfirmation).toBe(0) + }) + + it("should derive hasCustomFinality from minBlockConfirmation > 0", () => { + // hasCustomFinality = true when minBlockConfirmation > 0 + const enabledConfig: CustomFinalityConfig = { + hasCustomFinality: true, + minBlockConfirmation: 3, + } + expect(enabledConfig.hasCustomFinality).toBe(enabledConfig.minBlockConfirmation! > 0) + + // hasCustomFinality = false when minBlockConfirmation = 0 + const disabledConfig: CustomFinalityConfig = { + hasCustomFinality: false, + minBlockConfirmation: 0, + } + expect(disabledConfig.hasCustomFinality).toBe(disabledConfig.minBlockConfirmation! > 0) + }) +}) 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 })