Skip to content

Commit

Permalink
Merge pull request #32 from invariant-labs/new-testnet
Browse files Browse the repository at this point in the history
New testnet
  • Loading branch information
wojciech-cichocki authored Apr 11, 2024
2 parents d807fe8 + 717648a commit 8adfe18
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dependencies": {
"@hookform/error-message": "^0.0.3",
"@hookform/resolvers": "^0.1.0",
"@invariant-labs/sdk-eclipse": "0.0.5",
"@invariant-labs/sdk-eclipse": "0.0.7",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
Expand Down
16 changes: 7 additions & 9 deletions src/store/consts/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const WETH_DEV: Token = {

export const USDC_TEST: Token = {
symbol: 'USDC',
address: new PublicKey('5yQMGqpB1Q1J3b8UNStkVks9nFKao1axKYsgZYeMv1ei'),
address: new PublicKey('5gFSyxjNsuQsZKn9g5L9Ky3cSUvJ6YXqWVuPzmSi8Trx'),
decimals: 9,
name: 'USD Coin',
logoURI:
Expand All @@ -63,7 +63,7 @@ export const USDC_TEST: Token = {

export const BTC_TEST: Token = {
symbol: 'BTC',
address: new PublicKey('97hEP4PZ2P1pQ77yCvc9NxARHttVuTVhdKmvGG1aRNGG'),
address: new PublicKey('2F5TprcNBqj2hXVr9oTssabKdf8Zbsf9xStqWjPm8yLo'),
decimals: 9,
name: 'Bitcoin',
logoURI:
Expand All @@ -73,11 +73,10 @@ export const BTC_TEST: Token = {

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

Expand Down Expand Up @@ -216,7 +215,7 @@ 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, WETH_TEST.address],
Testnet: [USDC_TEST.address, BTC_TEST.address],
Localnet: []
}

Expand All @@ -225,8 +224,7 @@ export const airdropQuantities: Record<NetworkType, number[]> = {
Mainnet: [],
Testnet: [
10 * 10 ** USDC_TEST.decimals,
0.00025 * 10 ** BTC_TEST.decimals,
0.003 * 10 ** WETH_TEST.decimals
0.00025 * 10 ** BTC_TEST.decimals
],
Localnet: []
}
Expand Down

0 comments on commit 8adfe18

Please sign in to comment.