@reown/appkit-common 1.5.1 → 1.5.2
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.
|
@@ -13,6 +13,7 @@ export declare const ConstantsUtil: {
|
|
|
13
13
|
readonly eip155: "Ethereum";
|
|
14
14
|
readonly solana: "Solana";
|
|
15
15
|
readonly polkadot: "Polkadot";
|
|
16
|
+
readonly bip122: "Bitcoin";
|
|
16
17
|
};
|
|
17
18
|
readonly USDT_CONTRACT_ADDRESSES: readonly ["0xdac17f958d2ee523a2206206994597c13d831ec7", "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", "0x919C1c267BC06a7039e03fcc2eF738525769109c", "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", "0x55d398326f99059fF775485246999027B3197955", "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9"];
|
|
18
19
|
};
|
|
@@ -15,8 +15,8 @@ export type AppKitNetwork = BaseNetwork | CaipNetwork;
|
|
|
15
15
|
export type CaipNetworkId = `${ChainNamespace}:${ChainId}`;
|
|
16
16
|
export type CaipAddress = `${ChainNamespace}:${ChainId}:${string}`;
|
|
17
17
|
export type ChainId = string | number;
|
|
18
|
-
export type ChainNamespace = 'eip155' | 'solana' | 'polkadot';
|
|
19
|
-
export type AdapterType = 'solana' | 'wagmi' | 'ethers' | 'ethers5' | 'universal' | 'polkadot';
|
|
18
|
+
export type ChainNamespace = 'eip155' | 'solana' | 'polkadot' | 'bip122';
|
|
19
|
+
export type AdapterType = 'solana' | 'wagmi' | 'ethers' | 'ethers5' | 'universal' | 'polkadot' | 'bip122';
|
|
20
20
|
export type CoinbaseTransactionStatus = 'ONRAMP_TRANSACTION_STATUS_SUCCESS' | 'ONRAMP_TRANSACTION_STATUS_IN_PROGRESS' | 'ONRAMP_TRANSACTION_STATUS_FAILED';
|
|
21
21
|
export type TransactionStatus = 'confirmed' | 'failed' | 'pending';
|
|
22
22
|
export type TransactionDirection = 'in' | 'out' | 'self';
|