mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
Add Solana token infrastructure, Serum token.
This commit is contained in:
parent
1eb0d79e58
commit
652717b761
3
blockchains/solana/allowlist.json
Normal file
3
blockchains/solana/allowlist.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[
|
||||||
|
"SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt"
|
||||||
|
]
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "Serum",
|
||||||
|
"website": "https://projectserum.com/",
|
||||||
|
"short_description": "Serum is a decentralized exchange (DEX) and ecosystem that brings unprecedented speed and low transaction costs to decentralized finance. It is built on Solana and is completely permissionless.",
|
||||||
|
"explorer": "https://explorer.solana.com/address/SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt"
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
2
blockchains/solana/denylist.json
Normal file
2
blockchains/solana/denylist.json
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[
|
||||||
|
]
|
|
@ -61,6 +61,9 @@ function explorerUrl(chain: string, contract: string): string {
|
||||||
|
|
||||||
case "wanchain":
|
case "wanchain":
|
||||||
return `https://www.wanscan.org/token/${contract}`;
|
return `https://www.wanscan.org/token/${contract}`;
|
||||||
|
|
||||||
|
case "solana":
|
||||||
|
return `https://explorer.solana.com/address/${contract}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
|
|
|
@ -55,5 +55,6 @@ export const chainsWithDenylist = ethForkChains.concat(
|
||||||
Vechain,
|
Vechain,
|
||||||
Ontology,
|
Ontology,
|
||||||
Theta,
|
Theta,
|
||||||
EOS
|
EOS,
|
||||||
|
Solana,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user