@kimafinance/kima-transaction-widget 1.0.9 → 1.1.1
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/dist/index.js +324 -194
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +169 -84
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/config.d.ts +1 -1
- package/dist/utils/constants.d.ts +1 -11
- package/package.json +1 -1
package/dist/utils/config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const SOLANA_USDK_ADDRESS = "GkbnUDkymDTF4U6Z5wM5kKJn3GmGndMn2rN5typmyUHY";
|
|
2
|
-
export declare const ETHEREUM_USDK_ADDRESS = "
|
|
2
|
+
export declare const ETHEREUM_USDK_ADDRESS = "0x7C043d4D2b505740742dF6Fdb79C5caEe08728a5";
|
|
3
3
|
export declare const POLYGON_USDK_ADDRESS = "0x5bd4865a6dEd507dA08ed1aBE3cd971a7e0405D7";
|
|
4
4
|
export declare const AVAX_USDK_ADDRESS = "0x7C043d4D2b505740742dF6Fdb79C5caEe08728a5";
|
|
5
5
|
export declare const FUSE_GDOLLAR_ADDRESS = "0x79BeecC4b165Ccf547662cB4f7C0e83b3796E5b3";
|
|
@@ -8,7 +8,7 @@ export declare enum ChainName {
|
|
|
8
8
|
CELO = "CEL"
|
|
9
9
|
}
|
|
10
10
|
export declare enum SupportedChainId {
|
|
11
|
-
ETHEREUM =
|
|
11
|
+
ETHEREUM = 11155111,
|
|
12
12
|
POLYGON = 80001,
|
|
13
13
|
AVALANCHE = 43113,
|
|
14
14
|
FUSE = 122,
|
|
@@ -51,11 +51,6 @@ export declare type Cluster = 'devnet' | 'testnet' | 'mainnet';
|
|
|
51
51
|
export declare const CLUSTER: Cluster;
|
|
52
52
|
export declare const SOLANA_HOST: string;
|
|
53
53
|
export declare const isEVMChain: (chainId: string) => boolean;
|
|
54
|
-
export declare const GOERLI_ETH_NETWORK_CHAIN_ID = 5;
|
|
55
|
-
export declare const POLYGON_NETWORK_CHAIN_ID = 80001;
|
|
56
|
-
export declare const AVAX_NETWORK_CHAIN_ID = 43113;
|
|
57
|
-
export declare const FUSE_NETWORK_CHAIN_ID = 122;
|
|
58
|
-
export declare const CELO_NETWORK_CHAIN_ID = 42220;
|
|
59
54
|
declare type CoinOptions = {
|
|
60
55
|
[key: string]: any;
|
|
61
56
|
};
|
|
@@ -70,9 +65,4 @@ export declare enum TransactionStatus {
|
|
|
70
65
|
KEYSIGNED = "KeySigned"
|
|
71
66
|
}
|
|
72
67
|
export declare const tooltipInfo: string[][];
|
|
73
|
-
export declare const ETH_USD_PROXY = "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419";
|
|
74
|
-
export declare const AVAX_USD_PROXY = "0xFF3EEb22B5E3dE6e705b44749C2559d704923FD7";
|
|
75
|
-
export declare const MATIC_USD_PROXY = "0x7bAC85A8a13A4BcD8abb3eB7d6b4d632c5a57676";
|
|
76
|
-
export declare const SOL_USD_PROXY = "0x4ffC43a60e009B551865A93d232E33Fce9f01507";
|
|
77
|
-
export declare const ETHEREUM_NODE_PROVIDER = "https://eth-mainnet.g.alchemy.com/v2/KuGxhvDhFDX-r40tmVfgopWs0KdcjHPI";
|
|
78
68
|
export {};
|