@reown/appkit-common-react-native 2.0.0 → 2.0.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/lib/commonjs/adapters/BitcoinBaseAdapter.js +10 -0
- package/lib/commonjs/adapters/BitcoinBaseAdapter.js.map +1 -0
- package/lib/commonjs/adapters/BlockchainAdapter.js +38 -14
- package/lib/commonjs/adapters/BlockchainAdapter.js.map +1 -1
- package/lib/commonjs/adapters/EvmAdapter.js +126 -16
- package/lib/commonjs/adapters/EvmAdapter.js.map +1 -1
- package/lib/commonjs/adapters/SolanaBaseAdapter.js +1 -3
- package/lib/commonjs/adapters/SolanaBaseAdapter.js.map +1 -1
- package/lib/commonjs/contracts/erc20.js.map +1 -1
- package/lib/commonjs/contracts/usdt.js.map +1 -1
- package/lib/commonjs/index.js +13 -5
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/networks/bitcoin.js.map +1 -1
- package/lib/commonjs/networks/solana.js.map +1 -1
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/types/api/blockchain-api.js +15 -0
- package/lib/commonjs/types/api/blockchain-api.js.map +1 -0
- package/lib/commonjs/types/api/events.js +6 -0
- package/lib/commonjs/types/api/events.js.map +1 -0
- package/lib/commonjs/types/api/index.js +39 -0
- package/lib/commonjs/types/api/index.js.map +1 -0
- package/lib/commonjs/types/api/wallet-api.js +6 -0
- package/lib/commonjs/types/api/wallet-api.js.map +1 -0
- package/lib/commonjs/types/blockchain/adapter.js +6 -0
- package/lib/commonjs/types/blockchain/adapter.js.map +1 -0
- package/lib/commonjs/types/blockchain/balance.js +6 -0
- package/lib/commonjs/types/blockchain/balance.js.map +1 -0
- package/lib/commonjs/types/blockchain/index.js +50 -0
- package/lib/commonjs/types/blockchain/index.js.map +1 -0
- package/lib/commonjs/types/blockchain/network.js +6 -0
- package/lib/commonjs/types/blockchain/network.js.map +1 -0
- package/lib/commonjs/types/blockchain/transaction.js +2 -0
- package/lib/commonjs/types/blockchain/transaction.js.map +1 -0
- package/lib/commonjs/types/common.js +2 -0
- package/lib/commonjs/types/common.js.map +1 -0
- package/lib/commonjs/types/index.js +105 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/commonjs/types/onramp/countries.js +2 -0
- package/lib/commonjs/types/onramp/countries.js.map +1 -0
- package/lib/commonjs/types/onramp/currencies.js +2 -0
- package/lib/commonjs/types/onramp/currencies.js.map +1 -0
- package/lib/commonjs/types/onramp/errors.js +22 -0
- package/lib/commonjs/types/onramp/errors.js.map +1 -0
- package/lib/commonjs/types/onramp/index.js +50 -0
- package/lib/commonjs/types/onramp/index.js.map +1 -0
- package/lib/commonjs/types/onramp/quotes.js +2 -0
- package/lib/commonjs/types/onramp/quotes.js.map +1 -0
- package/lib/commonjs/types/siwx/config.js +6 -0
- package/lib/commonjs/types/siwx/config.js.map +1 -0
- package/lib/commonjs/types/siwx/index.js +50 -0
- package/lib/commonjs/types/siwx/index.js.map +1 -0
- package/lib/commonjs/types/siwx/message.js +6 -0
- package/lib/commonjs/types/siwx/message.js.map +1 -0
- package/lib/commonjs/types/siwx/storage.js +6 -0
- package/lib/commonjs/types/siwx/storage.js.map +1 -0
- package/lib/commonjs/types/siwx/verifier.js +35 -0
- package/lib/commonjs/types/siwx/verifier.js.map +1 -0
- package/lib/commonjs/types/storage.js +24 -0
- package/lib/commonjs/types/storage.js.map +1 -0
- package/lib/commonjs/types/swap/index.js +17 -0
- package/lib/commonjs/types/swap/index.js.map +1 -0
- package/lib/commonjs/types/swap/tokens.js +6 -0
- package/lib/commonjs/types/swap/tokens.js.map +1 -0
- package/lib/commonjs/types/ui.js +6 -0
- package/lib/commonjs/types/ui.js.map +1 -0
- package/lib/commonjs/types/wallet/connection.js +6 -0
- package/lib/commonjs/types/wallet/connection.js.map +1 -0
- package/lib/commonjs/{utils/TypeUtil.js → types/wallet/connector.js} +7 -13
- package/lib/commonjs/types/wallet/connector.js.map +1 -0
- package/lib/commonjs/types/wallet/index.js +39 -0
- package/lib/commonjs/types/wallet/index.js.map +1 -0
- package/lib/commonjs/types/wallet/wallet-info.js +6 -0
- package/lib/commonjs/types/wallet/wallet-info.js.map +1 -0
- package/lib/commonjs/utils/ConstantsUtil.js +45 -6
- package/lib/commonjs/utils/ConstantsUtil.js.map +1 -1
- package/lib/commonjs/utils/ContractUtil.js.map +1 -1
- package/lib/commonjs/utils/DateUtil.js.map +1 -1
- package/lib/commonjs/utils/ErrorUtil.js +2 -2
- package/lib/commonjs/utils/ErrorUtil.js.map +1 -1
- package/lib/commonjs/utils/NamesUtil.js.map +1 -1
- package/lib/commonjs/utils/NetworkUtil.js +3 -0
- package/lib/commonjs/utils/NetworkUtil.js.map +1 -1
- package/lib/commonjs/utils/NumberUtil.js +1 -2
- package/lib/commonjs/utils/NumberUtil.js.map +1 -1
- package/lib/commonjs/utils/PresetsUtil.js +0 -18
- package/lib/commonjs/utils/PresetsUtil.js.map +1 -1
- package/lib/commonjs/utils/StringUtil.js +7 -0
- package/lib/commonjs/utils/StringUtil.js.map +1 -1
- package/lib/module/adapters/BitcoinBaseAdapter.js +5 -0
- package/lib/module/adapters/BitcoinBaseAdapter.js.map +1 -0
- package/lib/module/adapters/BlockchainAdapter.js +40 -14
- package/lib/module/adapters/BlockchainAdapter.js.map +1 -1
- package/lib/module/adapters/EvmAdapter.js +129 -16
- package/lib/module/adapters/EvmAdapter.js.map +1 -1
- package/lib/module/adapters/SolanaBaseAdapter.js +3 -3
- package/lib/module/adapters/SolanaBaseAdapter.js.map +1 -1
- package/lib/module/contracts/erc20.js +2 -0
- package/lib/module/contracts/erc20.js.map +1 -1
- package/lib/module/contracts/usdt.js +2 -0
- package/lib/module/contracts/usdt.js.map +1 -1
- package/lib/module/index.js +4 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/networks/bitcoin.js +2 -0
- package/lib/module/networks/bitcoin.js.map +1 -1
- package/lib/module/networks/solana.js +2 -0
- package/lib/module/networks/solana.js.map +1 -1
- package/lib/module/types/api/blockchain-api.js +10 -0
- package/lib/module/types/api/blockchain-api.js.map +1 -0
- package/lib/module/types/api/events.js +4 -0
- package/lib/module/types/api/events.js.map +1 -0
- package/lib/module/types/api/index.js +7 -0
- package/lib/module/types/api/index.js.map +1 -0
- package/lib/module/types/api/wallet-api.js +4 -0
- package/lib/module/types/api/wallet-api.js.map +1 -0
- package/lib/module/types/blockchain/adapter.js +4 -0
- package/lib/module/types/blockchain/adapter.js.map +1 -0
- package/lib/module/types/blockchain/balance.js +4 -0
- package/lib/module/types/blockchain/balance.js.map +1 -0
- package/lib/module/types/blockchain/index.js +8 -0
- package/lib/module/types/blockchain/index.js.map +1 -0
- package/lib/module/types/blockchain/network.js +4 -0
- package/lib/module/types/blockchain/network.js.map +1 -0
- package/lib/module/types/blockchain/transaction.js +2 -0
- package/lib/module/types/blockchain/transaction.js.map +1 -0
- package/lib/module/types/common.js +2 -0
- package/lib/module/types/common.js.map +1 -0
- package/lib/module/types/index.js +31 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/module/types/onramp/countries.js +2 -0
- package/lib/module/types/onramp/countries.js.map +1 -0
- package/lib/module/types/onramp/currencies.js +2 -0
- package/lib/module/types/onramp/currencies.js.map +1 -0
- package/lib/module/types/onramp/errors.js +18 -0
- package/lib/module/types/onramp/errors.js.map +1 -0
- package/lib/module/types/onramp/index.js +8 -0
- package/lib/module/types/onramp/index.js.map +1 -0
- package/lib/module/types/onramp/quotes.js +2 -0
- package/lib/module/types/onramp/quotes.js.map +1 -0
- package/lib/module/types/siwx/config.js +4 -0
- package/lib/module/types/siwx/config.js.map +1 -0
- package/lib/module/types/siwx/index.js +7 -0
- package/lib/module/types/siwx/index.js.map +1 -0
- package/lib/module/types/siwx/message.js +4 -0
- package/lib/module/types/siwx/message.js.map +1 -0
- package/lib/module/types/siwx/storage.js +4 -0
- package/lib/module/types/siwx/storage.js.map +1 -0
- package/lib/module/types/siwx/verifier.js +30 -0
- package/lib/module/types/siwx/verifier.js.map +1 -0
- package/lib/module/types/storage.js +20 -0
- package/lib/module/types/storage.js.map +1 -0
- package/lib/module/types/swap/index.js +5 -0
- package/lib/module/types/swap/index.js.map +1 -0
- package/lib/module/types/swap/tokens.js +4 -0
- package/lib/module/types/swap/tokens.js.map +1 -0
- package/lib/module/types/ui.js +4 -0
- package/lib/module/types/ui.js.map +1 -0
- package/lib/module/types/wallet/connection.js +4 -0
- package/lib/module/types/wallet/connection.js.map +1 -0
- package/lib/module/{utils/TypeUtil.js → types/wallet/connector.js} +9 -14
- package/lib/module/types/wallet/connector.js.map +1 -0
- package/lib/module/types/wallet/index.js +7 -0
- package/lib/module/types/wallet/index.js.map +1 -0
- package/lib/module/types/wallet/wallet-info.js +4 -0
- package/lib/module/types/wallet/wallet-info.js.map +1 -0
- package/lib/module/utils/ConstantsUtil.js +47 -6
- package/lib/module/utils/ConstantsUtil.js.map +1 -1
- package/lib/module/utils/ContractUtil.js +2 -0
- package/lib/module/utils/ContractUtil.js.map +1 -1
- package/lib/module/utils/DateUtil.js +2 -0
- package/lib/module/utils/DateUtil.js.map +1 -1
- package/lib/module/utils/ErrorUtil.js +4 -2
- package/lib/module/utils/ErrorUtil.js.map +1 -1
- package/lib/module/utils/NamesUtil.js +2 -0
- package/lib/module/utils/NamesUtil.js.map +1 -1
- package/lib/module/utils/NetworkUtil.js +5 -0
- package/lib/module/utils/NetworkUtil.js.map +1 -1
- package/lib/module/utils/NumberUtil.js +2 -0
- package/lib/module/utils/NumberUtil.js.map +1 -1
- package/lib/module/utils/PresetsUtil.js +2 -18
- package/lib/module/utils/PresetsUtil.js.map +1 -1
- package/lib/module/utils/StringUtil.js +9 -0
- package/lib/module/utils/StringUtil.js.map +1 -1
- package/lib/typescript/adapters/BitcoinBaseAdapter.d.ts +5 -0
- package/lib/typescript/adapters/BitcoinBaseAdapter.d.ts.map +1 -0
- package/lib/typescript/adapters/BlockchainAdapter.d.ts +6 -7
- package/lib/typescript/adapters/BlockchainAdapter.d.ts.map +1 -1
- package/lib/typescript/adapters/EvmAdapter.d.ts +21 -1
- package/lib/typescript/adapters/EvmAdapter.d.ts.map +1 -1
- package/lib/typescript/adapters/SolanaBaseAdapter.d.ts +3 -0
- package/lib/typescript/adapters/SolanaBaseAdapter.d.ts.map +1 -1
- package/lib/typescript/adapters/__tests__/EvmAdapter.test.d.ts +2 -0
- package/lib/typescript/adapters/__tests__/EvmAdapter.test.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +2 -1
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/networks/bitcoin.d.ts +1 -1
- package/lib/typescript/networks/bitcoin.d.ts.map +1 -1
- package/lib/typescript/networks/solana.d.ts +1 -1
- package/lib/typescript/networks/solana.d.ts.map +1 -1
- package/lib/typescript/types/api/blockchain-api.d.ts +183 -0
- package/lib/typescript/types/api/blockchain-api.d.ts.map +1 -0
- package/lib/typescript/types/api/events.d.ts +357 -0
- package/lib/typescript/types/api/events.d.ts.map +1 -0
- package/lib/typescript/types/api/index.d.ts +4 -0
- package/lib/typescript/types/api/index.d.ts.map +1 -0
- package/lib/typescript/types/api/wallet-api.d.ts +51 -0
- package/lib/typescript/types/api/wallet-api.d.ts.map +1 -0
- package/lib/typescript/types/blockchain/adapter.d.ts +40 -0
- package/lib/typescript/types/blockchain/adapter.d.ts.map +1 -0
- package/lib/typescript/types/blockchain/balance.d.ts +28 -0
- package/lib/typescript/types/blockchain/balance.d.ts.map +1 -0
- package/lib/typescript/types/blockchain/index.d.ts +5 -0
- package/lib/typescript/types/blockchain/index.d.ts.map +1 -0
- package/lib/typescript/types/blockchain/network.d.ts +47 -0
- package/lib/typescript/types/blockchain/network.d.ts.map +1 -0
- package/lib/typescript/types/blockchain/transaction.d.ts +63 -0
- package/lib/typescript/types/blockchain/transaction.d.ts.map +1 -0
- package/lib/typescript/types/common.d.ts +24 -0
- package/lib/typescript/types/common.d.ts.map +1 -0
- package/lib/typescript/types/index.d.ts +10 -0
- package/lib/typescript/types/index.d.ts.map +1 -0
- package/lib/typescript/types/onramp/countries.d.ts +11 -0
- package/lib/typescript/types/onramp/countries.d.ts.map +1 -0
- package/lib/typescript/types/onramp/currencies.d.ts +30 -0
- package/lib/typescript/types/onramp/currencies.d.ts.map +1 -0
- package/lib/typescript/types/onramp/errors.d.ts +21 -0
- package/lib/typescript/types/onramp/errors.d.ts.map +1 -0
- package/lib/typescript/types/onramp/index.d.ts +5 -0
- package/lib/typescript/types/onramp/index.d.ts.map +1 -0
- package/lib/typescript/types/onramp/quotes.d.ts +45 -0
- package/lib/typescript/types/onramp/quotes.d.ts.map +1 -0
- package/lib/typescript/types/siwx/config.d.ts +73 -0
- package/lib/typescript/types/siwx/config.d.ts.map +1 -0
- package/lib/typescript/types/siwx/index.d.ts +5 -0
- package/lib/typescript/types/siwx/index.d.ts.map +1 -0
- package/lib/typescript/types/siwx/message.d.ts +92 -0
- package/lib/typescript/types/siwx/message.d.ts.map +1 -0
- package/lib/typescript/types/siwx/storage.d.ts +41 -0
- package/lib/typescript/types/siwx/storage.d.ts.map +1 -0
- package/lib/typescript/types/siwx/verifier.d.ts +28 -0
- package/lib/typescript/types/siwx/verifier.d.ts.map +1 -0
- package/lib/typescript/types/storage.d.ts +59 -0
- package/lib/typescript/types/storage.d.ts.map +1 -0
- package/lib/typescript/types/swap/index.d.ts +2 -0
- package/lib/typescript/types/swap/index.d.ts.map +1 -0
- package/lib/typescript/types/swap/tokens.d.ts +19 -0
- package/lib/typescript/types/swap/tokens.d.ts.map +1 -0
- package/lib/typescript/types/ui.d.ts +26 -0
- package/lib/typescript/types/ui.d.ts.map +1 -0
- package/lib/typescript/types/wallet/connection.d.ts +31 -0
- package/lib/typescript/types/wallet/connection.d.ts.map +1 -0
- package/lib/typescript/types/wallet/connector.d.ts +59 -0
- package/lib/typescript/types/wallet/connector.d.ts.map +1 -0
- package/lib/typescript/types/wallet/index.d.ts +4 -0
- package/lib/typescript/types/wallet/index.d.ts.map +1 -0
- package/lib/typescript/types/wallet/wallet-info.d.ts +37 -0
- package/lib/typescript/types/wallet/wallet-info.d.ts.map +1 -0
- package/lib/typescript/utils/ConstantsUtil.d.ts +43 -4
- package/lib/typescript/utils/ConstantsUtil.d.ts.map +1 -1
- package/lib/typescript/utils/NetworkUtil.d.ts +2 -0
- package/lib/typescript/utils/NetworkUtil.d.ts.map +1 -1
- package/lib/typescript/utils/PresetsUtil.d.ts +0 -5
- package/lib/typescript/utils/PresetsUtil.d.ts.map +1 -1
- package/lib/typescript/utils/StringUtil.d.ts +1 -0
- package/lib/typescript/utils/StringUtil.d.ts.map +1 -1
- package/package.json +10 -19
- package/src/adapters/BitcoinBaseAdapter.ts +5 -0
- package/src/adapters/BlockchainAdapter.ts +48 -21
- package/src/adapters/EvmAdapter.ts +186 -18
- package/src/adapters/SolanaBaseAdapter.ts +3 -1
- package/src/adapters/__tests__/EvmAdapter.test.ts +126 -0
- package/src/index.ts +3 -1
- package/src/networks/bitcoin.ts +1 -1
- package/src/networks/solana.ts +1 -1
- package/src/types/api/blockchain-api.ts +213 -0
- package/src/types/api/events.ts +462 -0
- package/src/types/api/index.ts +4 -0
- package/src/types/api/wallet-api.ts +71 -0
- package/src/types/blockchain/adapter.ts +52 -0
- package/src/types/blockchain/balance.ts +31 -0
- package/src/types/blockchain/index.ts +5 -0
- package/src/types/blockchain/network.ts +39 -0
- package/src/types/blockchain/transaction.ts +71 -0
- package/src/types/common.ts +56 -0
- package/src/types/index.ts +28 -0
- package/src/types/onramp/countries.ts +11 -0
- package/src/types/onramp/currencies.ts +32 -0
- package/src/types/onramp/errors.ts +22 -0
- package/src/types/onramp/index.ts +5 -0
- package/src/types/onramp/quotes.ts +46 -0
- package/src/types/siwx/config.ts +73 -0
- package/src/types/siwx/index.ts +4 -0
- package/src/types/siwx/message.ts +92 -0
- package/src/types/siwx/storage.ts +44 -0
- package/src/types/siwx/verifier.ts +32 -0
- package/src/types/storage.ts +64 -0
- package/src/types/swap/index.ts +2 -0
- package/src/types/swap/tokens.ts +21 -0
- package/src/types/ui.ts +26 -0
- package/src/types/wallet/connection.ts +34 -0
- package/src/types/wallet/connector.ts +83 -0
- package/src/types/wallet/index.ts +4 -0
- package/src/types/wallet/wallet-info.ts +42 -0
- package/src/utils/ConstantsUtil.ts +48 -7
- package/src/utils/ErrorUtil.ts +2 -2
- package/src/utils/NetworkUtil.ts +5 -0
- package/src/utils/PresetsUtil.ts +0 -25
- package/src/utils/StringUtil.ts +7 -0
- package/lib/commonjs/utils/TypeUtil.js.map +0 -1
- package/lib/module/utils/TypeUtil.js.map +0 -1
- package/lib/typescript/utils/TypeUtil.d.ts +0 -276
- package/lib/typescript/utils/TypeUtil.d.ts.map +0 -1
- package/src/utils/TypeUtil.ts +0 -336
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { EVMAdapter } from '../EvmAdapter';
|
|
2
|
+
import type { AppKitNetwork, CaipAddress } from '../../types';
|
|
3
|
+
|
|
4
|
+
const network: AppKitNetwork = {
|
|
5
|
+
id: 1,
|
|
6
|
+
name: 'Ethereum',
|
|
7
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
8
|
+
rpcUrls: {
|
|
9
|
+
default: {
|
|
10
|
+
http: ['https://eth.merkle.io']
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
blockExplorers: {
|
|
14
|
+
default: {
|
|
15
|
+
name: 'Etherscan',
|
|
16
|
+
url: 'https://etherscan.io'
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
chainNamespace: 'eip155',
|
|
20
|
+
caipNetworkId: 'eip155:1'
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
// Mock implementation for testing
|
|
24
|
+
class MockEVMAdapter extends EVMAdapter {
|
|
25
|
+
private mockProvider: any;
|
|
26
|
+
|
|
27
|
+
constructor() {
|
|
28
|
+
super({ supportedNamespace: 'eip155', adapterType: 'ethers' });
|
|
29
|
+
this.mockProvider = {
|
|
30
|
+
request: jest.fn(),
|
|
31
|
+
on: jest.fn(),
|
|
32
|
+
off: jest.fn()
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
setMockProvider(provider: any) {
|
|
37
|
+
this.mockProvider = provider;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
override getProvider() {
|
|
41
|
+
return this.mockProvider;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
async disconnect(): Promise<void> {}
|
|
45
|
+
getSupportedNamespace() {
|
|
46
|
+
return 'eip155' as const;
|
|
47
|
+
}
|
|
48
|
+
async getBalance() {
|
|
49
|
+
return { amount: '0', symbol: 'ETH' };
|
|
50
|
+
}
|
|
51
|
+
getAccounts(): CaipAddress[] | undefined {
|
|
52
|
+
return ['eip155:1:0x1234567890123456789012345678901234567890'];
|
|
53
|
+
}
|
|
54
|
+
async switchNetwork() {}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
describe('EVMAdapter', () => {
|
|
58
|
+
let adapter: MockEVMAdapter;
|
|
59
|
+
|
|
60
|
+
beforeEach(() => {
|
|
61
|
+
adapter = new MockEVMAdapter();
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
describe('writeContract', () => {
|
|
65
|
+
it('should encode transfer function correctly', async () => {
|
|
66
|
+
const mockProvider = {
|
|
67
|
+
request: jest.fn().mockResolvedValueOnce('0x1234567890abcdef') // eth_sendTransaction
|
|
68
|
+
};
|
|
69
|
+
adapter.setMockProvider(mockProvider);
|
|
70
|
+
|
|
71
|
+
const result = await adapter.writeContract({
|
|
72
|
+
tokenAddress: '0x1234567890123456789012345678901234567890',
|
|
73
|
+
receiverAddress: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd',
|
|
74
|
+
tokenAmount: BigInt(1000000000000000000), // 1 token with 18 decimals
|
|
75
|
+
fromAddress: '0x1234567890123456789012345678901234567890',
|
|
76
|
+
method: 'transfer',
|
|
77
|
+
network
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
expect(result).toBe('0x1234567890abcdef');
|
|
81
|
+
expect(mockProvider.request).toHaveBeenCalledWith(
|
|
82
|
+
{
|
|
83
|
+
method: 'eth_sendTransaction',
|
|
84
|
+
params: [
|
|
85
|
+
{
|
|
86
|
+
from: '0x1234567890123456789012345678901234567890',
|
|
87
|
+
to: '0x1234567890123456789012345678901234567890',
|
|
88
|
+
data: '0xa9059cbb000000000000000000000000abcdefabcdefabcdefabcdefabcdefabcdefabcd0000000000000000000000000000000000000000000000000de0b6b3a7640000',
|
|
89
|
+
value: '0x0',
|
|
90
|
+
type: '0x0'
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
'eip155:1'
|
|
95
|
+
);
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
it('should throw error for unsupported method', async () => {
|
|
99
|
+
await expect(
|
|
100
|
+
adapter.writeContract({
|
|
101
|
+
tokenAddress: '0x1234567890123456789012345678901234567890',
|
|
102
|
+
receiverAddress: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd',
|
|
103
|
+
tokenAmount: BigInt(1000000000000000000),
|
|
104
|
+
fromAddress: '0x1234567890123456789012345678901234567890',
|
|
105
|
+
method: 'unsupported' as any,
|
|
106
|
+
network
|
|
107
|
+
})
|
|
108
|
+
).rejects.toThrow("method 'unsupported' is not supported");
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
it('should throw error when provider is undefined', async () => {
|
|
112
|
+
adapter.setMockProvider(undefined);
|
|
113
|
+
|
|
114
|
+
await expect(
|
|
115
|
+
adapter.writeContract({
|
|
116
|
+
tokenAddress: '0x1234567890123456789012345678901234567890',
|
|
117
|
+
receiverAddress: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd',
|
|
118
|
+
tokenAmount: BigInt(1000000000000000000),
|
|
119
|
+
fromAddress: '0x1234567890123456789012345678901234567890',
|
|
120
|
+
method: 'transfer',
|
|
121
|
+
network
|
|
122
|
+
})
|
|
123
|
+
).rejects.toThrow('provider is undefined');
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
});
|
package/src/index.ts
CHANGED
|
@@ -13,4 +13,6 @@ export { bitcoin, bitcoinTestnet } from './networks/bitcoin';
|
|
|
13
13
|
export { BlockchainAdapter } from './adapters/BlockchainAdapter';
|
|
14
14
|
export { EVMAdapter } from './adapters/EvmAdapter';
|
|
15
15
|
export { SolanaBaseAdapter } from './adapters/SolanaBaseAdapter';
|
|
16
|
-
export
|
|
16
|
+
export { BitcoinBaseAdapter } from './adapters/BitcoinBaseAdapter';
|
|
17
|
+
|
|
18
|
+
export * from './types';
|
package/src/networks/bitcoin.ts
CHANGED
package/src/networks/solana.ts
CHANGED
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
import type { CaipAddress, CaipNetworkId, BaseError, RequestCache } from '../common';
|
|
2
|
+
import type { Transaction } from '../blockchain/transaction';
|
|
3
|
+
import type { SwapToken } from '../swap';
|
|
4
|
+
|
|
5
|
+
export interface BlockchainApiIdentityRequest {
|
|
6
|
+
address: `0x${string}`;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface BlockchainApiIdentityResponse {
|
|
10
|
+
avatar: string;
|
|
11
|
+
name: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface BlockchainApiBalance {
|
|
15
|
+
name: string;
|
|
16
|
+
symbol: string;
|
|
17
|
+
chainId: string;
|
|
18
|
+
address?: CaipAddress;
|
|
19
|
+
value?: number;
|
|
20
|
+
price: number;
|
|
21
|
+
quantity: {
|
|
22
|
+
decimals: string;
|
|
23
|
+
numeric: string;
|
|
24
|
+
};
|
|
25
|
+
iconUrl: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface BlockchainApiBalanceResponse {
|
|
29
|
+
balances: BlockchainApiBalance[];
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface BlockchainApiTransactionsRequest {
|
|
33
|
+
account: string;
|
|
34
|
+
projectId: string;
|
|
35
|
+
cursor?: string;
|
|
36
|
+
signal?: AbortSignal;
|
|
37
|
+
cache?: RequestCache;
|
|
38
|
+
chainId: CaipNetworkId;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface BlockchainApiTransactionsResponse {
|
|
42
|
+
data: Transaction[];
|
|
43
|
+
next: string | null;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface BlockchainApiSwapAllowanceResponse {
|
|
47
|
+
allowance: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface BlockchainApiGenerateSwapCalldataRequest {
|
|
51
|
+
projectId: string;
|
|
52
|
+
userAddress: CaipAddress;
|
|
53
|
+
from: CaipAddress;
|
|
54
|
+
to: CaipAddress;
|
|
55
|
+
amount: string;
|
|
56
|
+
eip155?: {
|
|
57
|
+
slippage: string;
|
|
58
|
+
permit?: string;
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface BlockchainApiGenerateSwapCalldataResponse {
|
|
63
|
+
tx: {
|
|
64
|
+
from: CaipAddress;
|
|
65
|
+
to: CaipAddress;
|
|
66
|
+
data: `0x${string}`;
|
|
67
|
+
amount: string;
|
|
68
|
+
eip155: {
|
|
69
|
+
gas: string;
|
|
70
|
+
gasPrice: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface BlockchainApiGenerateApproveCalldataRequest {
|
|
76
|
+
projectId: string;
|
|
77
|
+
userAddress: CaipAddress;
|
|
78
|
+
from: CaipAddress;
|
|
79
|
+
to: CaipAddress;
|
|
80
|
+
amount?: number;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface BlockchainApiGenerateApproveCalldataResponse {
|
|
84
|
+
tx: {
|
|
85
|
+
from: CaipAddress;
|
|
86
|
+
to: CaipAddress;
|
|
87
|
+
data: `0x${string}`;
|
|
88
|
+
value: string;
|
|
89
|
+
eip155: {
|
|
90
|
+
gas: number;
|
|
91
|
+
gasPrice: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface BlockchainApiTokenPriceRequest {
|
|
97
|
+
projectId: string;
|
|
98
|
+
currency?: 'usd' | 'eur' | 'gbp' | 'aud' | 'cad' | 'inr' | 'jpy' | 'btc' | 'eth';
|
|
99
|
+
addresses: CaipAddress[];
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface BlockchainApiTokenPriceResponse {
|
|
103
|
+
fungibles: {
|
|
104
|
+
name: string;
|
|
105
|
+
symbol: string;
|
|
106
|
+
iconUrl: string;
|
|
107
|
+
price: number;
|
|
108
|
+
}[];
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export interface BlockchainApiSwapAllowanceRequest {
|
|
112
|
+
projectId: string;
|
|
113
|
+
tokenAddress: CaipAddress;
|
|
114
|
+
userAddress: CaipAddress;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface BlockchainApiGasPriceRequest {
|
|
118
|
+
projectId: string;
|
|
119
|
+
chainId: CaipNetworkId;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface BlockchainApiGasPriceResponse {
|
|
123
|
+
standard: string;
|
|
124
|
+
fast: string;
|
|
125
|
+
instant: string;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export interface BlockchainApiEnsError extends BaseError {
|
|
129
|
+
status: string;
|
|
130
|
+
reasons: { name: string; description: string }[];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export type ReownName = `${string}.reown.id` | `${string}.wcn.id`;
|
|
134
|
+
|
|
135
|
+
export interface BlockchainApiLookupEnsName {
|
|
136
|
+
name: ReownName;
|
|
137
|
+
registered: number;
|
|
138
|
+
updated: number;
|
|
139
|
+
addresses: Record<
|
|
140
|
+
string,
|
|
141
|
+
{
|
|
142
|
+
address: string;
|
|
143
|
+
created: string;
|
|
144
|
+
}
|
|
145
|
+
>;
|
|
146
|
+
attributes: {
|
|
147
|
+
avatar?: string;
|
|
148
|
+
bio?: string;
|
|
149
|
+
}[];
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface BlockchainApiSwapQuoteRequest {
|
|
153
|
+
projectId: string;
|
|
154
|
+
chainId?: CaipNetworkId;
|
|
155
|
+
amount: string;
|
|
156
|
+
userAddress: CaipAddress;
|
|
157
|
+
from: CaipAddress;
|
|
158
|
+
to: CaipAddress;
|
|
159
|
+
gasPrice: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface BlockchainApiSwapQuoteResponse {
|
|
163
|
+
quotes: {
|
|
164
|
+
id: string | null;
|
|
165
|
+
fromAmount: string;
|
|
166
|
+
fromAccount: string;
|
|
167
|
+
toAmount: string;
|
|
168
|
+
toAccount: string;
|
|
169
|
+
}[];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface BlockchainApiSwapTokensRequest {
|
|
173
|
+
projectId: string;
|
|
174
|
+
chainId: CaipNetworkId;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export interface BlockchainApiOnRampQuotesRequest {
|
|
178
|
+
countryCode: string;
|
|
179
|
+
paymentMethodType?: string;
|
|
180
|
+
destinationCurrencyCode: string;
|
|
181
|
+
sourceAmount: number;
|
|
182
|
+
sourceCurrencyCode: string;
|
|
183
|
+
walletAddress: string;
|
|
184
|
+
excludeProviders?: string[];
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export interface BlockchainApiSwapTokensResponse {
|
|
188
|
+
tokens: SwapToken[];
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface BlockchainApiOnRampWidgetRequest {
|
|
192
|
+
countryCode: string;
|
|
193
|
+
destinationCurrencyCode: string;
|
|
194
|
+
paymentMethodType: string;
|
|
195
|
+
serviceProvider: string;
|
|
196
|
+
sourceAmount: number;
|
|
197
|
+
sourceCurrencyCode: string;
|
|
198
|
+
walletAddress: string;
|
|
199
|
+
redirectUrl?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export type BlockchainApiOnRampWidgetResponse = {
|
|
203
|
+
widgetUrl: string;
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
export class BlockchainOnRampError extends Error {
|
|
207
|
+
code: string;
|
|
208
|
+
constructor(code: string, message: string) {
|
|
209
|
+
super(message);
|
|
210
|
+
this.code = code;
|
|
211
|
+
this.message = message;
|
|
212
|
+
}
|
|
213
|
+
}
|