Skip to content

Commit

Permalink
feat: add abstract mainnet tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
gavriliumircea committed Jan 17, 2025
1 parent 9b8f39c commit 5ffaf36
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/buildList.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const { version } = require("../package.json");

const abstractMainnet = require("./tokens/abstract-mainnet.json");
const arbitrumMainnet = require("./tokens/arbitrum-mainnet.json");
const avalancheMainnet = require("./tokens/avalanche-mainnet.json");
const baseMainnet = require("./tokens/base-mainnet.json");
Expand Down Expand Up @@ -41,6 +42,7 @@ module.exports = function buildList() {
keywords: ["sablier", "default"],
tokens: [
...ethereumMainnet,
...abstractMainnet,
...avalancheMainnet,
...arbitrumMainnet,
...baseMainnet,
Expand Down
26 changes: 26 additions & 0 deletions src/tokens/abstract-mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"address": "0x0709f39376deee2a2dfc94a58edeb2eb9df012bd",
"chainId": 2741,
"decimals": 6,
"logoURI": "https://files.sablier.com/tokens/USDT.png",
"name": "Tether USD",
"symbol": "USDT"
},
{
"address": "0x84a71ccd554cc1b02749b35d22f684cc8ec987e1",
"chainId": 2741,
"decimals": 6,
"logoURI": "https://files.sablier.com/tokens/USDC.png",
"name": "Bridged USDC",
"symbol": "USDC.e"
},
{
"address": "0x3439153eb7af838ad19d56e1571fbd09333c2809",
"chainId": 2741,
"decimals": 18,
"logoURI": "https://ethereum-optimism.github.io/data/WETH/logo.png",
"name": "Wrapped Ether",
"symbol": "WETH"
}
]

0 comments on commit 5ffaf36

Please sign in to comment.