Skip to content

Commit

Permalink
feat: support linea and iotex
Browse files Browse the repository at this point in the history
  • Loading branch information
gavriliumircea committed Aug 27, 2024
1 parent cdc5019 commit d3d0e20
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/buildList.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ const blast_mainnet = require("./tokens/blast_mainnet.json");
const bsc_mainnet = require("./tokens/bsc_mainnet.json");
const ethereum_mainnet = require("./tokens/ethereum_mainnet.json");
const gnosis_mainnet = require("./tokens/gnosis_mainnet.json");
const iotex_mainnet = require("./tokens/iotex_mainnet.json");
const optimism_mainnet = require("./tokens/optimism_mainnet.json");
const lightlink_mainnet = require("./tokens/lightlink_mainnet.json");
const linea_mainnet = require("./tokens/linea_mainnet.json");
const polygon_mainnet = require("./tokens/polygon_mainnet.json");
const ronin_mainnet = require("./tokens/ronin_mainnet.json");
const ronin_testnet = require("./tokens/ronin_testnet.json");
Expand Down Expand Up @@ -39,7 +41,9 @@ module.exports = function buildList() {
...blast_mainnet,
...bsc_mainnet,
...gnosis_mainnet,
...iotex_mainnet,
...lightlink_mainnet,
...linea_mainnet,
...optimism_mainnet,
...polygon_mainnet,
...ronin_mainnet,
Expand Down
26 changes: 26 additions & 0 deletions src/tokens/iotex_mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"address": "0x3b2bf2b523f54c4e454f08aa286d03115aff326c",
"chainId": 4689,
"decimals": 6,
"logoURI": "https://files.sablier.com/tokens/USDC.png",
"name": "USD Coin",
"symbol": "ioUSDC"
},
{
"address": "0xc7b93720f73b037394ce00f954f849ed484a3dea",
"chainId": 4689,
"decimals": 8,
"logoURI": "https://files.sablier.com/tokens/WBTC.png",
"name": "Wrapped Bitcoin",
"symbol": "ioWBTC"
},
{
"address": "0x1cbad85aa66ff3c12dc84c5881886eeb29c1bb9b",
"chainId": 4689,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/DAI.png",
"name": "Dai Stablecoin",
"symbol": "ioDAI"
}
]
34 changes: 34 additions & 0 deletions src/tokens/linea_mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{
"address": "0x176211869ca2b568f2a7d4ee941e073a821ee1ff",
"chainId": 59144,
"decimals": 6,
"logoURI": "https://files.sablier.com/tokens/USDC.png",
"name": "Bridged USDC",
"symbol": "USDC"
},
{
"address": "0x3aab2285ddcddad8edf438c1bab47e1a9d05a9b4",
"chainId": 59144,
"decimals": 8,
"logoURI": "https://files.sablier.com/tokens/WBTC.png",
"name": "Wrapped Bitcoin",
"symbol": "WBTC"
},
{
"address": "0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f",
"chainId": 59144,
"decimals": 18,
"logoURI": "https://ethereum-optimism.github.io/data/WETH/logo.png",
"name": "Wrapped Ether",
"symbol": "WETH"
},
{
"address": "0x4af15ec2a0bd43db75dd04e62faa3b8ef36b00d5",
"chainId": 59144,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/DAI.png",
"name": "Dai Stablecoin",
"symbol": "DAI"
}
]

0 comments on commit d3d0e20

Please sign in to comment.