@venusprotocol/chains 0.26.0 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.mts +4 -1
- package/build/index.mjs +125 -7
- package/package.json +1 -1
package/build/index.d.mts
CHANGED
|
@@ -69,6 +69,9 @@ interface VToken extends Omit<Token, 'isNative' | 'iconSrc' | 'tokenWrapped'> {
|
|
|
69
69
|
decimals: 8;
|
|
70
70
|
underlyingToken: Token;
|
|
71
71
|
}
|
|
72
|
+
interface VhToken extends Omit<Token, 'isNative' | 'iconSrc' | 'tokenWrapped'> {
|
|
73
|
+
underlyingToken: Token;
|
|
74
|
+
}
|
|
72
75
|
//#endregion
|
|
73
76
|
//#region src/constants/index.d.ts
|
|
74
77
|
declare const NATIVE_TOKEN_ADDRESS: "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB";
|
|
@@ -125,4 +128,4 @@ declare const getBlockTimeByChainId: ({
|
|
|
125
128
|
blocksPerDay: number;
|
|
126
129
|
} | undefined;
|
|
127
130
|
//#endregion
|
|
128
|
-
export { Chain, ChainId, GetTokenInput, Hardfork, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, Token, VToken, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken, tokens, vTokens, viemChains };
|
|
131
|
+
export { Chain, ChainId, GetTokenInput, Hardfork, IMAGES_DIR_NAME, IMAGES_DIR_PATH, MS_PER_DAY, MainnetChainId, NATIVE_TOKEN_ADDRESS, TestnetChainId, Token, VToken, VhToken, bnb, chains, eth, getBlockTimeByChainId, getRpcUrls, getToken, tokens, vTokens, viemChains };
|