Skip to content

Commit

Permalink
feat: rm native currencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0xsign committed Jun 29, 2023
1 parent 69be44a commit ab85c61
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 27 deletions.
8 changes: 0 additions & 8 deletions bsc/tokenlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2673,14 +2673,6 @@
"decimals": 18,
"stable": false
},
{
"address": "0x0000000000000000000000000000000000000000",
"name": "BNB",
"symbol": "BNB",
"decimals": 18,
"native": true,
"stable": false
},
{
"address": "0x3c730718c97a77562866b5d29b33228c019eac68",
"name": "BNB Diamond",
Expand Down
8 changes: 0 additions & 8 deletions celo/tokenlist.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
[
{
"address": "0x471ece3750da237f93b8e339c536989b8978a438",
"name": "Celo",
"symbol": "CELO",
"decimals": 18,
"native": true,
"stable": false
},
{
"address": "0x6e512bfc33be36f2666754e996ff103ad1680cc9",
"name": "Allbridge",
Expand Down
8 changes: 0 additions & 8 deletions fantom/tokenlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -706,14 +706,6 @@
"decimals": 18,
"stable": false
},
{
"address": "0x0000000000000000000000000000000000000000",
"name": "FTM",
"symbol": "FTM",
"decimals": 18,
"native": true,
"stable": false
},
{
"address": "0x9bd0611610a0f5133e4dd1bfdd71c5479ee77f37",
"name": "Fantom Oasis Token",
Expand Down
1 change: 0 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export interface Token {
symbol: string
decimals: number
stable: boolean
native?: boolean
}

export interface ChainToken extends Token {
Expand Down
2 changes: 0 additions & 2 deletions scripts/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ async function main() {
name: found?.name || token.name,
symbol: found?.symbol || token.symbol,
decimals: found?.decimals || token.decimals,
native: found?.native || token.native,
wallet: found?.wallet || token.wallet,
stable: found?.stable || token.stable
}

Expand Down

0 comments on commit ab85c61

Please sign in to comment.