-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4b9d2a
commit f12a609
Showing
14 changed files
with
376 additions
and
1,490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { ChainId } from '__mocks__/models/chains'; | ||
import { isolatedPool, legacyCorePool } from '__mocks__/models/pools'; | ||
import { bnb, eth } from '__mocks__/models/tokens'; | ||
export { ChainId } from '__mocks__/models/chains'; | ||
|
||
export const chainMetadata = { | ||
[ChainId.BSC_MAINNET]: { | ||
name: 'BNB Chain', | ||
logoSrc: 'fake-logo-src-bsc-mainnet', | ||
explorerUrl: 'https://bscscan.com', | ||
layerZeroScanUrl: 'https://layerzeroscan.com', | ||
blockTimeMs: 3000, | ||
blocksPerDay: 28800, | ||
corePoolComptrollerContractAddress: legacyCorePool.comptrollerAddress, | ||
nativeToken: bnb, | ||
}, | ||
[ChainId.BSC_TESTNET]: { | ||
name: 'BNB testnet', | ||
logoSrc: 'fake-logo-src-bsc-testnet', | ||
explorerUrl: 'https://testnet.bscscan.com', | ||
layerZeroScanUrl: 'https://testnet.layerzeroscan.com', | ||
blockTimeMs: 3000, | ||
blocksPerDay: 28800, | ||
corePoolComptrollerContractAddress: legacyCorePool.comptrollerAddress, | ||
nativeToken: bnb, | ||
}, | ||
[ChainId.ETHEREUM]: { | ||
name: 'Ethereum', | ||
logoSrc: 'fake-logo-src-bsc-ethereum', | ||
explorerUrl: 'https://etherscan.io', | ||
layerZeroScanUrl: 'https://layerzeroscan.com', | ||
blockTimeMs: 12000, | ||
blocksPerDay: 7200, | ||
corePoolComptrollerContractAddress: isolatedPool.comptrollerAddress, | ||
lstPoolComptrollerContractAddress: '0xF522cd0360EF8c2FF48B648d53EA1717Ec0F3Ac3', | ||
lstPoolVWstEthContractAddress: '0x4a240F0ee138697726C8a3E43eFE6Ac3593432CB', | ||
nativeToken: eth, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export enum ChainId { | ||
BSC_MAINNET = 56, | ||
BSC_TESTNET = 97, | ||
ETHEREUM = 1, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.