Skip to content

Commit

Permalink
chore: Enable new tokens
Browse files Browse the repository at this point in the history
WBTC on Lisk & POOL on World Chain.
  • Loading branch information
pxrl committed Dec 16, 2024
1 parent cb72176 commit 5e36b30
Show file tree
Hide file tree
Showing 6 changed files with 454 additions and 51 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"license": "AGPL-3.0-only",
"dependencies": {
"@across-protocol/constants": "^3.1.20",
"@across-protocol/constants": "^3.1.22",
"@across-protocol/contracts": "^3.0.17",
"@across-protocol/contracts-v3.0.6": "npm:@across-protocol/[email protected]",
"@across-protocol/sdk": "^3.3.22",
"@across-protocol/sdk": "^3.3.25",
"@amplitude/analytics-browser": "^2.3.5",
"@balancer-labs/sdk": "1.1.6-beta.16",
"@emotion/react": "^11.13.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/chain-configs/lisk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default {
chainId,
blockTimeSeconds: 2,
publicRpcUrl: "https://rpc.api.lisk.com",
tokens: ["WETH", "ETH", "USDT", "LSK"],
tokens: ["WETH", "ETH", "USDT", "LSK", "WBTC"],
enableCCTP: false,
swapTokens: [],
} as ChainConfig;
2 changes: 1 addition & 1 deletion scripts/chain-configs/world-chain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export default {
chainId,
publicRpcUrl: "https://worldchain-mainnet.g.alchemy.com/public",
blockTimeSeconds: 2,
tokens: ["ETH", "WBTC", "WETH", "USDC.e"],
tokens: ["ETH", "WBTC", "WETH", "USDC.e", "POOL"],
enableCCTP: false,
} as ChainConfig;
28 changes: 28 additions & 0 deletions src/data/chains_1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,13 @@
"name": "Lisk",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/lsk.svg"
},
{
"address": "0x03C7054BCB39f7b2e5B2c7AcB37583e32D70Cfa3",
"symbol": "WBTC",
"name": "Wrapped Bitcoin",
"decimals": 8,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/wbtc.svg"
}
],
"outputTokens": [
Expand All @@ -1170,6 +1177,13 @@
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/eth.svg"
},
{
"address": "0x03C7054BCB39f7b2e5B2c7AcB37583e32D70Cfa3",
"symbol": "WBTC",
"name": "Wrapped Bitcoin",
"decimals": 8,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/wbtc.svg"
},
{
"address": "0x05D032ac25d322df992303dCa074EE7392C117b9",
"symbol": "USDT",
Expand Down Expand Up @@ -1415,6 +1429,13 @@
"name": "USD Coin (bridged)",
"decimals": 6,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/usdc.svg"
},
{
"address": "0x7077C71B4AF70737a08287E279B717Dcf64fdC57",
"symbol": "POOL",
"name": "PoolTogether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/pool.svg"
}
],
"outputTokens": [
Expand Down Expand Up @@ -1445,6 +1466,13 @@
"name": "Wrapped Bitcoin",
"decimals": 8,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/wbtc.svg"
},
{
"address": "0x7077C71B4AF70737a08287E279B717Dcf64fdC57",
"symbol": "POOL",
"name": "PoolTogether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/pool.svg"
}
]
},
Expand Down
Loading

0 comments on commit 5e36b30

Please sign in to comment.