Skip to content

Commit

Permalink
Merge pull request #23 from invariant-labs/updated-weth
Browse files Browse the repository at this point in the history
Updated eth
  • Loading branch information
wojciech-cichocki authored Mar 27, 2024
2 parents 43a25a4 + f1dbe53 commit 33756ee
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/store/consts/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ export const BTC_TEST: Token = {

export const WETH_TEST: Token = {
symbol: 'ETH',
address: new PublicKey('So11111111111111111111111111111111111111112'),
address: new PublicKey('F1UrAegXK6EWMh1Qprmj5ACKLCKjRkYnAWVeUr6dpAf7'),
decimals: 9,
name: 'Ethereum',
name: 'Ether (Portal)',
logoURI:
'https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png',
'https://raw.githubusercontent.com/wormhole-foundation/wormhole-token-list/main/assets/ETH_wh.png',
coingeckoId: 'ethereum'
}

Expand Down Expand Up @@ -214,14 +214,18 @@ export const commonTokensForNetworks: Record<NetworkType, PublicKey[]> = {
export const airdropTokens: Record<NetworkType, PublicKey[]> = {
Devnet: [USDC_DEV.address, BTC_DEV.address],
Mainnet: [],
Testnet: [USDC_TEST.address, BTC_TEST.address],
Testnet: [USDC_TEST.address, BTC_TEST.address, WETH_TEST.address],
Localnet: []
}

export const airdropQuantities: Record<NetworkType, number[]> = {
Devnet: [100 * 10 ** USDC_DEV.decimals, 0.0025 * 10 ** BTC_DEV.decimals],
Mainnet: [],
Testnet: [10 * 10 ** USDC_DEV.decimals, 0.00025 * 10 ** BTC_DEV.decimals],
Testnet: [
10 * 10 ** USDC_TEST.decimals,
0.00025 * 10 ** BTC_TEST.decimals,
0.003 * 10 ** WETH_TEST.decimals
],
Localnet: []
}

Expand Down

0 comments on commit 33756ee

Please sign in to comment.