Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,11 @@ export enum CoinFeature {
* This coin is an EVM compatible coin and should use common EVM logic in WP
*/
EVM_COMPATIBLE_WP = 'evm-compatible-wp',

/**
* This token is internal and shouldn't be exposed to users
*/
RESTRICTED = 'restricted',
}

/**
Expand Down
6 changes: 4 additions & 2 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2621,13 +2621,15 @@ export const coins = CoinMap.fromCoins([
'30d034ae-41fd-4da2-bbb2-05fe1e301108',
'erc721:unsteth',
'Lido: stETH Withdrawal NFT',
'0x889edc2edab5f40e902b864ad4d7ade8e412f9b1'
'0x889edc2edab5f40e902b864ad4d7ade8e412f9b1',
[...AccountCoin.DEFAULT_FEATURES, CoinFeature.RESTRICTED]
),
terc721(
'05ce9121-45e0-4e9c-941b-1aa95bedfcc5',
'terc721:unsteth',
'Test Lido: stETH Withdrawal NFT',
'0xfe56573178f1bcdf53f01a6e9977670dcbbd9186'
'0xfe56573178f1bcdf53f01a6e9977670dcbbd9186',
[...AccountCoin.DEFAULT_FEATURES, CoinFeature.RESTRICTED]
),
terc721(
'e795fc78-b8a7-47a1-8294-5ecbe8a74c3a',
Expand Down
Loading