Skip to content

Commit

Permalink
feat: add CAT,WAGMI,FLASH,PINT,STABLE,MICKEY tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
gavriliumircea committed Nov 6, 2023
1 parent 134d4c3 commit 7681d70
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/tokens/arbitrum_mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,13 @@
"logoURI": "https://assets.coingecko.com/coins/images/18834/thumb/wstETH.png",
"name": "Wrapped liquid staked Ether 2.0",
"symbol": "wstETH"
},
{
"address": "0xaf20f5f19698f1d19351028cd7103b63d30de7d7",
"chainId": 42161,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/WAGMI.png",
"name": "Wagmi",
"symbol": "WAGMI"
}
]
8 changes: 8 additions & 0 deletions src/tokens/base_mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,13 @@
"logoURI": "https://ethereum-optimism.github.io/data/DAI/logo.svg",
"name": "Dai Stablecoin",
"symbol": "DAI"
},
{
"address": "0x063d2db6d348fa5957b78b6141d144426486c68c",
"chainId": 8453,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/CAT.png",
"name": "SocioCat",
"symbol": "CAT"
}
]
8 changes: 8 additions & 0 deletions src/tokens/bsc_mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,13 @@
"logoURI": "https://files.sablier.com/tokens/YFI.png",
"name": "yearn.finance",
"symbol": "YFI"
},
{
"address": "0xa3870fbBeb730BA99e4107051612af3465CA9F5e",
"chainId": 56,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/STABLE.png",
"name": "STABLE",
"symbol": "STABLE"
}
]
16 changes: 16 additions & 0 deletions src/tokens/ethereum_mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -1576,5 +1576,21 @@
"logoURI": "https://files.sablier.com/tokens/YUP.png",
"name": "Yup",
"symbol": "YUP"
},
{
"address": "0xb1f1f47061a7be15c69f378cb3f69423bd58f2f8",
"chainId": 1,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/FLASH.png",
"name": "Flashstake",
"symbol": "FLASH"
},
{
"address": "0x58fb30a61c218a3607e9273d52995a49ff2697ee",
"chainId": 1,
"decimals": 18,
"logoURI": "https://files.sablier.com/tokens/PINT.png",
"name": "PINT",
"symbol": "PINT"
}
]
4 changes: 3 additions & 1 deletion test/list.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ describe("buildList", function () {

it("all addresses are valid and checksummed", function () {
for (let token of defaultTokenList.tokens) {
expect(getAddress(token.address)).to.eq(token.address);
expect(getAddress(token.address).toLowerCase()).to.eq(
token.address.toLowerCase(),
);
}
});

Expand Down

0 comments on commit 7681d70

Please sign in to comment.