@reown/appkit-common-react-native 1.2.4 → 2.0.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/lib/commonjs/adapters/BlockchainAdapter.js +79 -0
- package/lib/commonjs/adapters/BlockchainAdapter.js.map +1 -0
- package/lib/commonjs/adapters/EvmAdapter.js +83 -0
- package/lib/commonjs/adapters/EvmAdapter.js.map +1 -0
- package/lib/commonjs/adapters/SolanaBaseAdapter.js +12 -0
- package/lib/commonjs/adapters/SolanaBaseAdapter.js.map +1 -0
- package/lib/commonjs/index.js +62 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/networks/bitcoin.js +40 -0
- package/lib/commonjs/networks/bitcoin.js.map +1 -0
- package/lib/commonjs/networks/solana.js +78 -0
- package/lib/commonjs/networks/solana.js.map +1 -0
- package/lib/commonjs/utils/ConstantsUtil.js +2 -1
- package/lib/commonjs/utils/ConstantsUtil.js.map +1 -1
- package/lib/commonjs/utils/DateUtil.js +3 -0
- package/lib/commonjs/utils/DateUtil.js.map +1 -1
- package/lib/commonjs/utils/NumberUtil.js +56 -11
- package/lib/commonjs/utils/NumberUtil.js.map +1 -1
- package/lib/commonjs/utils/PresetsUtil.js +34 -3
- package/lib/commonjs/utils/PresetsUtil.js.map +1 -1
- package/lib/commonjs/utils/StringUtil.js +1 -1
- package/lib/commonjs/utils/StringUtil.js.map +1 -1
- package/lib/commonjs/utils/TypeUtil.js +34 -0
- package/lib/commonjs/utils/TypeUtil.js.map +1 -1
- package/lib/module/adapters/BlockchainAdapter.js +72 -0
- package/lib/module/adapters/BlockchainAdapter.js.map +1 -0
- package/lib/module/adapters/EvmAdapter.js +76 -0
- package/lib/module/adapters/EvmAdapter.js.map +1 -0
- package/lib/module/adapters/SolanaBaseAdapter.js +5 -0
- package/lib/module/adapters/SolanaBaseAdapter.js.map +1 -0
- package/lib/module/index.js +5 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/networks/bitcoin.js +34 -0
- package/lib/module/networks/bitcoin.js.map +1 -0
- package/lib/module/networks/solana.js +72 -0
- package/lib/module/networks/solana.js.map +1 -0
- package/lib/module/utils/ConstantsUtil.js +2 -1
- package/lib/module/utils/ConstantsUtil.js.map +1 -1
- package/lib/module/utils/DateUtil.js +3 -0
- package/lib/module/utils/DateUtil.js.map +1 -1
- package/lib/module/utils/NumberUtil.js +56 -11
- package/lib/module/utils/NumberUtil.js.map +1 -1
- package/lib/module/utils/PresetsUtil.js +34 -3
- package/lib/module/utils/PresetsUtil.js.map +1 -1
- package/lib/module/utils/StringUtil.js +1 -1
- package/lib/module/utils/StringUtil.js.map +1 -1
- package/lib/module/utils/TypeUtil.js +28 -0
- package/lib/module/utils/TypeUtil.js.map +1 -1
- package/lib/typescript/adapters/BlockchainAdapter.d.ts +27 -0
- package/lib/typescript/adapters/BlockchainAdapter.d.ts.map +1 -0
- package/lib/typescript/adapters/EvmAdapter.d.ts +6 -0
- package/lib/typescript/adapters/EvmAdapter.d.ts.map +1 -0
- package/lib/typescript/adapters/SolanaBaseAdapter.d.ts +4 -0
- package/lib/typescript/adapters/SolanaBaseAdapter.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +5 -0
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/networks/bitcoin.d.ts +4 -0
- package/lib/typescript/networks/bitcoin.d.ts.map +1 -0
- package/lib/typescript/networks/solana.d.ts +5 -0
- package/lib/typescript/networks/solana.d.ts.map +1 -0
- package/lib/typescript/utils/ConstantsUtil.d.ts +1 -0
- package/lib/typescript/utils/ConstantsUtil.d.ts.map +1 -1
- package/lib/typescript/utils/DateUtil.d.ts +1 -0
- package/lib/typescript/utils/DateUtil.d.ts.map +1 -1
- package/lib/typescript/utils/NumberUtil.d.ts +40 -11
- package/lib/typescript/utils/NumberUtil.d.ts.map +1 -1
- package/lib/typescript/utils/PresetsUtil.d.ts +1 -1
- package/lib/typescript/utils/PresetsUtil.d.ts.map +1 -1
- package/lib/typescript/utils/TypeUtil.d.ts +193 -1
- package/lib/typescript/utils/TypeUtil.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adapters/BlockchainAdapter.ts +109 -0
- package/src/adapters/EvmAdapter.ts +79 -0
- package/src/adapters/SolanaBaseAdapter.ts +5 -0
- package/src/index.ts +5 -0
- package/src/networks/bitcoin.ts +32 -0
- package/src/networks/solana.ts +44 -0
- package/src/utils/ConstantsUtil.ts +2 -1
- package/src/utils/DateUtil.ts +4 -0
- package/src/utils/NumberUtil.ts +60 -11
- package/src/utils/PresetsUtil.ts +36 -3
- package/src/utils/StringUtil.ts +1 -1
- package/src/utils/TypeUtil.ts +240 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { EventEmitter } from 'events';
|
|
2
|
+
import type {
|
|
3
|
+
AdapterEvents,
|
|
4
|
+
AppKitNetwork,
|
|
5
|
+
CaipAddress,
|
|
6
|
+
ChainNamespace,
|
|
7
|
+
GetBalanceParams,
|
|
8
|
+
GetBalanceResponse,
|
|
9
|
+
Provider,
|
|
10
|
+
WalletConnector
|
|
11
|
+
} from '../utils/TypeUtil';
|
|
12
|
+
|
|
13
|
+
export abstract class BlockchainAdapter extends EventEmitter {
|
|
14
|
+
public projectId: string;
|
|
15
|
+
public connector?: WalletConnector;
|
|
16
|
+
public supportedNamespace: ChainNamespace;
|
|
17
|
+
|
|
18
|
+
// Typed emit method
|
|
19
|
+
override emit<K extends keyof AdapterEvents>(
|
|
20
|
+
event: K,
|
|
21
|
+
payload: Parameters<AdapterEvents[K]>[0]
|
|
22
|
+
): boolean {
|
|
23
|
+
return super.emit(event, payload);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
constructor({
|
|
27
|
+
projectId,
|
|
28
|
+
supportedNamespace
|
|
29
|
+
}: {
|
|
30
|
+
projectId: string;
|
|
31
|
+
supportedNamespace: ChainNamespace;
|
|
32
|
+
}) {
|
|
33
|
+
super();
|
|
34
|
+
this.projectId = projectId;
|
|
35
|
+
this.supportedNamespace = supportedNamespace;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
setConnector(connector: WalletConnector) {
|
|
39
|
+
this.connector = connector;
|
|
40
|
+
this.subscribeToEvents();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
removeConnector() {
|
|
44
|
+
this.connector = undefined;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
getProvider(): Provider {
|
|
48
|
+
if (!this.connector) throw new Error('No active connector');
|
|
49
|
+
|
|
50
|
+
return this.connector.getProvider();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
subscribeToEvents(): void {
|
|
54
|
+
const provider = this.connector?.getProvider();
|
|
55
|
+
if (!provider) return;
|
|
56
|
+
|
|
57
|
+
provider.on('chainChanged', this.onChainChanged.bind(this));
|
|
58
|
+
provider.on('accountsChanged', this.onAccountsChanged.bind(this));
|
|
59
|
+
provider.on('disconnect', this.onDisconnect.bind(this));
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
onChainChanged(chainId: string): void {
|
|
63
|
+
const _chains = this.getAccounts()?.map(account => account.split(':')[1]);
|
|
64
|
+
const shouldEmit = _chains?.some(chain => chain === chainId);
|
|
65
|
+
|
|
66
|
+
if (shouldEmit) {
|
|
67
|
+
this.emit('chainChanged', { chainId });
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
onAccountsChanged(accounts: string[]): void {
|
|
72
|
+
const _accounts = this.getAccounts();
|
|
73
|
+
const shouldEmit = _accounts?.some(account => {
|
|
74
|
+
const accountAddress = account.split(':')[2];
|
|
75
|
+
|
|
76
|
+
return accountAddress !== undefined && accounts.includes(accountAddress);
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
if (shouldEmit) {
|
|
80
|
+
this.emit('accountsChanged', { accounts });
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
onDisconnect(): void {
|
|
85
|
+
this.emit('disconnect', { namespace: this.getSupportedNamespace() });
|
|
86
|
+
|
|
87
|
+
const provider = this.connector?.getProvider();
|
|
88
|
+
if (provider) {
|
|
89
|
+
provider.off('chainChanged', this.onChainChanged.bind(this));
|
|
90
|
+
provider.off('accountsChanged', this.onAccountsChanged.bind(this));
|
|
91
|
+
provider.off('disconnect', this.onDisconnect.bind(this));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
this.connector = undefined;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
parseUnits(value: string, decimals: number): bigint {
|
|
98
|
+
const [whole, fraction = ''] = value.split('.');
|
|
99
|
+
const paddedFraction = (fraction + '0'.repeat(decimals)).slice(0, decimals);
|
|
100
|
+
|
|
101
|
+
return BigInt(whole + paddedFraction);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
abstract disconnect(): Promise<void>;
|
|
105
|
+
abstract getSupportedNamespace(): ChainNamespace;
|
|
106
|
+
abstract getBalance(params: GetBalanceParams): Promise<GetBalanceResponse>;
|
|
107
|
+
abstract getAccounts(): CaipAddress[] | undefined;
|
|
108
|
+
abstract switchNetwork(network: AppKitNetwork): Promise<void>;
|
|
109
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { BlockchainAdapter } from './BlockchainAdapter';
|
|
2
|
+
import { NumberUtil } from '../utils/NumberUtil';
|
|
3
|
+
|
|
4
|
+
export abstract class EVMAdapter extends BlockchainAdapter {
|
|
5
|
+
async estimateGas({ address, to, data, chainNamespace }: any): Promise<bigint> {
|
|
6
|
+
const provider = this.getProvider();
|
|
7
|
+
|
|
8
|
+
if (!provider) {
|
|
9
|
+
throw new Error('EVMAdapter:estimateGas - provider is undefined');
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
if (!address) {
|
|
13
|
+
throw new Error('EVMAdapter:estimateGas - from address is undefined');
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
if (chainNamespace && chainNamespace !== 'eip155') {
|
|
17
|
+
throw new Error('EVMAdapter:estimateGas - chainNamespace is not eip155');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
try {
|
|
21
|
+
const txParams = {
|
|
22
|
+
from: address,
|
|
23
|
+
to,
|
|
24
|
+
data,
|
|
25
|
+
type: '0x0' // optional, legacy type
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const estimatedGasHex = await provider.request({
|
|
29
|
+
method: 'eth_estimateGas',
|
|
30
|
+
params: [txParams]
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
return BigInt(estimatedGasHex as string);
|
|
34
|
+
} catch (error) {
|
|
35
|
+
throw new Error('EVMAdapter:estimateGas - eth_estimateGas RPC failed');
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
async sendTransaction(data: any) {
|
|
40
|
+
const { address } = data || {};
|
|
41
|
+
|
|
42
|
+
if (!this.getProvider()) {
|
|
43
|
+
throw new Error('EVMAdapter:sendTransaction - provider is undefined');
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (!address) {
|
|
47
|
+
throw new Error('EVMAdapter:sendTransaction - address is undefined');
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const txParams = {
|
|
51
|
+
from: address,
|
|
52
|
+
to: data.to,
|
|
53
|
+
value: NumberUtil.convertNumericToHexString(data.value),
|
|
54
|
+
gas: NumberUtil.convertNumericToHexString(data.gas),
|
|
55
|
+
gasPrice: NumberUtil.convertNumericToHexString(data.gasPrice),
|
|
56
|
+
data: data.data, // hex-encoded bytecode
|
|
57
|
+
type: '0x0' // optional: legacy transaction type
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const txHash = await this.getProvider().request({
|
|
61
|
+
method: 'eth_sendTransaction',
|
|
62
|
+
params: [txParams]
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
let receipt = null;
|
|
66
|
+
while (!receipt) {
|
|
67
|
+
receipt = (await this.getProvider().request({
|
|
68
|
+
method: 'eth_getTransactionReceipt',
|
|
69
|
+
params: [txHash]
|
|
70
|
+
})) as { blockHash?: `0x${string}` };
|
|
71
|
+
|
|
72
|
+
if (!receipt) {
|
|
73
|
+
await new Promise(r => setTimeout(r, 1000)); // wait 1s
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
return receipt?.blockHash || null;
|
|
78
|
+
}
|
|
79
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -8,4 +8,9 @@ export { PresetsUtil } from './utils/PresetsUtil';
|
|
|
8
8
|
export { StringUtil } from './utils/StringUtil';
|
|
9
9
|
export { ErrorUtil } from './utils/ErrorUtil';
|
|
10
10
|
export { erc20ABI } from './contracts/erc20';
|
|
11
|
+
export { solana, solanaDevnet, solanaTestnet } from './networks/solana';
|
|
12
|
+
export { bitcoin, bitcoinTestnet } from './networks/bitcoin';
|
|
13
|
+
export { BlockchainAdapter } from './adapters/BlockchainAdapter';
|
|
14
|
+
export { EVMAdapter } from './adapters/EvmAdapter';
|
|
15
|
+
export { SolanaBaseAdapter } from './adapters/SolanaBaseAdapter';
|
|
11
16
|
export * from './utils/TypeUtil';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { AppKitNetwork } from '../utils/TypeUtil';
|
|
2
|
+
|
|
3
|
+
export const bitcoin: AppKitNetwork = {
|
|
4
|
+
id: '000000000019d6689c085ae165831e93',
|
|
5
|
+
caipNetworkId: 'bip122:000000000019d6689c085ae165831e93',
|
|
6
|
+
chainNamespace: 'bip122',
|
|
7
|
+
name: 'Bitcoin',
|
|
8
|
+
nativeCurrency: {
|
|
9
|
+
name: 'Bitcoin',
|
|
10
|
+
symbol: 'BTC',
|
|
11
|
+
decimals: 8
|
|
12
|
+
},
|
|
13
|
+
rpcUrls: {
|
|
14
|
+
default: { http: ['https://rpc.walletconnect.org/v1'] }
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const bitcoinTestnet: AppKitNetwork = {
|
|
19
|
+
id: '000000000933ea01ad0ee984209779ba',
|
|
20
|
+
caipNetworkId: 'bip122:000000000933ea01ad0ee984209779ba',
|
|
21
|
+
chainNamespace: 'bip122',
|
|
22
|
+
name: 'Bitcoin Testnet',
|
|
23
|
+
nativeCurrency: {
|
|
24
|
+
name: 'Bitcoin',
|
|
25
|
+
symbol: 'BTC',
|
|
26
|
+
decimals: 8
|
|
27
|
+
},
|
|
28
|
+
rpcUrls: {
|
|
29
|
+
default: { http: ['https://rpc.walletconnect.org/v1'] }
|
|
30
|
+
},
|
|
31
|
+
testnet: true
|
|
32
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { AppKitNetwork } from '../utils/TypeUtil';
|
|
2
|
+
|
|
3
|
+
export const solana: AppKitNetwork = {
|
|
4
|
+
id: '5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
|
|
5
|
+
name: 'Solana',
|
|
6
|
+
nativeCurrency: { name: 'Solana', symbol: 'SOL', decimals: 9 },
|
|
7
|
+
rpcUrls: {
|
|
8
|
+
default: {
|
|
9
|
+
http: ['https://rpc.walletconnect.org/v1']
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
blockExplorers: { default: { name: 'Solscan', url: 'https://solscan.io' } },
|
|
13
|
+
chainNamespace: 'solana',
|
|
14
|
+
caipNetworkId: 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp',
|
|
15
|
+
deprecatedCaipNetworkId: 'solana:4sGjMW1sUnHzSxGspuhpqLDx6wiyjNtZ',
|
|
16
|
+
testnet: false
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const solanaDevnet: AppKitNetwork = {
|
|
20
|
+
id: 'EtWTRABZaYq6iMfeYKouRu166VU2xqa1',
|
|
21
|
+
name: 'Solana Devnet',
|
|
22
|
+
nativeCurrency: { name: 'Solana', symbol: 'SOL', decimals: 9 },
|
|
23
|
+
rpcUrls: {
|
|
24
|
+
default: { http: ['https://rpc.walletconnect.org/v1'] }
|
|
25
|
+
},
|
|
26
|
+
blockExplorers: { default: { name: 'Solscan', url: 'https://solscan.io' } },
|
|
27
|
+
chainNamespace: 'solana',
|
|
28
|
+
caipNetworkId: 'solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1',
|
|
29
|
+
deprecatedCaipNetworkId: 'solana:8E9rvCKLFQia2Y35HXjjpWzj8weVo44K',
|
|
30
|
+
testnet: true
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export const solanaTestnet: AppKitNetwork = {
|
|
34
|
+
id: '4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z',
|
|
35
|
+
name: 'Solana Testnet',
|
|
36
|
+
nativeCurrency: { name: 'Solana', symbol: 'SOL', decimals: 9 },
|
|
37
|
+
rpcUrls: {
|
|
38
|
+
default: { http: ['https://rpc.walletconnect.org/v1'] }
|
|
39
|
+
},
|
|
40
|
+
blockExplorers: { default: { name: 'Solscan', url: 'https://solscan.io' } },
|
|
41
|
+
chainNamespace: 'solana',
|
|
42
|
+
caipNetworkId: 'solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z',
|
|
43
|
+
testnet: true
|
|
44
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const ConstantsUtil = {
|
|
2
|
-
VERSION: '
|
|
2
|
+
VERSION: '2.0.0',
|
|
3
3
|
|
|
4
4
|
EIP155: 'eip155',
|
|
5
5
|
ADD_CHAIN_METHOD: 'wallet_addEthereumChain',
|
|
@@ -8,6 +8,7 @@ export const ConstantsUtil = {
|
|
|
8
8
|
WC_NAME_SUFFIX_LEGACY: '.wcn.id',
|
|
9
9
|
|
|
10
10
|
BLOCKCHAIN_API_RPC_URL: 'https://rpc.walletconnect.org',
|
|
11
|
+
BLOCKCHAIN_API_RPC_URL_STAGING: 'https://staging.rpc.walletconnect.org',
|
|
11
12
|
PULSE_API_URL: 'https://pulse.walletconnect.org',
|
|
12
13
|
API_URL: 'https://api.web3modal.org',
|
|
13
14
|
|
package/src/utils/DateUtil.ts
CHANGED
package/src/utils/NumberUtil.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import * as BigNumber from 'bignumber.js';
|
|
2
2
|
|
|
3
3
|
export const NumberUtil = {
|
|
4
|
+
/**
|
|
5
|
+
* Creates a BigNumber instance from a given value.
|
|
6
|
+
* If the value is a string, commas are removed before conversion.
|
|
7
|
+
* @param value - The input value (string, number, or BigNumber) to convert to a BigNumber.
|
|
8
|
+
* @returns A BigNumber instance.
|
|
9
|
+
*/
|
|
4
10
|
bigNumber(value: BigNumber.BigNumber.Value) {
|
|
5
11
|
if (typeof value === 'string') {
|
|
6
12
|
return new BigNumber.BigNumber(value.replace(/,/g, ''));
|
|
@@ -10,10 +16,11 @@ export const NumberUtil = {
|
|
|
10
16
|
},
|
|
11
17
|
|
|
12
18
|
/**
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* @param
|
|
16
|
-
* @
|
|
19
|
+
* Multiplies two numbers using BigNumber for precision, especially with decimals.
|
|
20
|
+
* Handles undefined inputs by returning BigNumber(0).
|
|
21
|
+
* @param a - The first multiplicand (string, number, or BigNumber). Commas are removed if it's a string.
|
|
22
|
+
* @param b - The second multiplicand (string, number, or BigNumber). Commas are removed if it's a string.
|
|
23
|
+
* @returns The product as a BigNumber instance, or BigNumber(0) if either input is undefined.
|
|
17
24
|
*/
|
|
18
25
|
multiply(a: BigNumber.BigNumber.Value | undefined, b: BigNumber.BigNumber.Value | undefined) {
|
|
19
26
|
if (a === undefined || b === undefined) {
|
|
@@ -26,6 +33,13 @@ export const NumberUtil = {
|
|
|
26
33
|
return aBigNumber.multipliedBy(bBigNumber);
|
|
27
34
|
},
|
|
28
35
|
|
|
36
|
+
/**
|
|
37
|
+
* Rounds a number to a specified number of decimal places if its string representation meets a certain length threshold.
|
|
38
|
+
* @param number - The number to potentially round.
|
|
39
|
+
* @param threshold - The minimum string length of the number to trigger rounding.
|
|
40
|
+
* @param fixed - The number of decimal places to round to.
|
|
41
|
+
* @returns The rounded number (as a string if rounded, otherwise the original number) or the original number.
|
|
42
|
+
*/
|
|
29
43
|
roundNumber(number: number, threshold: number, fixed: number) {
|
|
30
44
|
const roundedNumber =
|
|
31
45
|
number.toString().length >= threshold ? Number(number).toFixed(fixed) : number;
|
|
@@ -34,10 +48,22 @@ export const NumberUtil = {
|
|
|
34
48
|
},
|
|
35
49
|
|
|
36
50
|
/**
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
* @param
|
|
40
|
-
* @returns
|
|
51
|
+
* Calculates the next multiple of ten greater than or equal to the given amount.
|
|
52
|
+
* Defaults to 10 if no amount is provided or if the calculated multiple is less than 10.
|
|
53
|
+
* @param amount - The number for which to find the next multiple of ten. Optional.
|
|
54
|
+
* @returns The next multiple of ten, at least 10.
|
|
55
|
+
*/
|
|
56
|
+
nextMultipleOfTen(amount?: number) {
|
|
57
|
+
if (!amount) return 10;
|
|
58
|
+
|
|
59
|
+
return Math.max(Math.ceil(amount / 10) * 10, 10);
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Formats a number or string to a human-readable string with a specified number of decimal places, using US locale formatting.
|
|
64
|
+
* @param value - The value to format (string, number, or undefined). If undefined, returns '0.00'.
|
|
65
|
+
* @param decimals - The number of decimal places to display. Defaults to 2.
|
|
66
|
+
* @returns A locale-formatted string representation of the number.
|
|
41
67
|
*/
|
|
42
68
|
formatNumberToLocalString(value: string | number | undefined, decimals = 2) {
|
|
43
69
|
if (value === undefined) {
|
|
@@ -56,10 +82,11 @@ export const NumberUtil = {
|
|
|
56
82
|
minimumFractionDigits: decimals
|
|
57
83
|
});
|
|
58
84
|
},
|
|
85
|
+
|
|
59
86
|
/**
|
|
60
|
-
*
|
|
61
|
-
* @param value - The formatted string to parse
|
|
62
|
-
* @returns
|
|
87
|
+
* Parses a locale-formatted numeric string (e.g., with commas) back into a number.
|
|
88
|
+
* @param value - The formatted string to parse. If undefined, returns 0.
|
|
89
|
+
* @returns The parsed number, or 0 if the input is undefined.
|
|
63
90
|
*/
|
|
64
91
|
parseLocalStringToNumber(value: string | undefined) {
|
|
65
92
|
if (value === undefined) {
|
|
@@ -68,5 +95,27 @@ export const NumberUtil = {
|
|
|
68
95
|
|
|
69
96
|
// Remove any commas used as thousand separators and parse the float
|
|
70
97
|
return parseFloat(value.replace(/,/gu, ''));
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Converts a numeric value (BigInt, number, or string representation of a number) to a 0x-prefixed hexadecimal string.
|
|
102
|
+
* This is often required for Ethereum RPC parameters like value, gas, gasPrice.
|
|
103
|
+
* @param value - The value to convert. Can be BigInt, number, or a string (decimal or hex).
|
|
104
|
+
* @returns A 0x-prefixed hexadecimal string, or undefined if the input is undefined or null.
|
|
105
|
+
* @throws Error if the value cannot be converted to BigInt.
|
|
106
|
+
*/
|
|
107
|
+
convertNumericToHexString: (value: any): string | undefined => {
|
|
108
|
+
if (value === undefined || value === null) {
|
|
109
|
+
return undefined;
|
|
110
|
+
}
|
|
111
|
+
try {
|
|
112
|
+
// This handles BigInt, number, or string representation of a number (decimal or hex)
|
|
113
|
+
const bigIntValue = BigInt(value);
|
|
114
|
+
// Ethereum RPC spec requires "0x0" for zero, and other values to be 0x-prefixed hex.
|
|
115
|
+
|
|
116
|
+
return '0x' + bigIntValue.toString(16);
|
|
117
|
+
} catch (error) {
|
|
118
|
+
throw new Error(`NumberUtil: Invalid parameter, cannot convert to hex: ${value}`);
|
|
119
|
+
}
|
|
71
120
|
}
|
|
72
121
|
};
|
package/src/utils/PresetsUtil.ts
CHANGED
|
@@ -7,11 +7,11 @@ export const PresetsUtil = {
|
|
|
7
7
|
'fd20dc426fb37566d803205b19bbc1d4096b248ac04548e3cfb6b3a38bd033aa'
|
|
8
8
|
} as Record<string, string>,
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
NetworkImageIds: {
|
|
11
11
|
// Ethereum
|
|
12
12
|
1: 'ba0ba0cd-17c6-4806-ad93-f9d174f17900',
|
|
13
13
|
// Arbitrum
|
|
14
|
-
42161: '
|
|
14
|
+
42161: '3bff954d-5cb0-47a0-9a23-d20192e74600',
|
|
15
15
|
// Avalanche
|
|
16
16
|
43114: '30c46e53-e989-45fb-4549-be3bd4eb3b00',
|
|
17
17
|
// Binance Smart Chain
|
|
@@ -22,6 +22,20 @@ export const PresetsUtil = {
|
|
|
22
22
|
10: 'ab9c186a-c52f-464b-2906-ca59d760a400',
|
|
23
23
|
// Polygon
|
|
24
24
|
137: '41d04d42-da3b-4453-8506-668cc0727900',
|
|
25
|
+
// Mantle
|
|
26
|
+
5000: 'e86fae9b-b770-4eea-e520-150e12c81100',
|
|
27
|
+
// Hedera Mainnet
|
|
28
|
+
295: '6a97d510-cac8-4e58-c7ce-e8681b044c00',
|
|
29
|
+
// Sepolia
|
|
30
|
+
11_155_111: 'e909ea0a-f92a-4512-c8fc-748044ea6800',
|
|
31
|
+
// Base Sepolia
|
|
32
|
+
84532: 'a18a7ecd-e307-4360-4746-283182228e00',
|
|
33
|
+
// Unichain Sepolia
|
|
34
|
+
1301: '4eeea7ef-0014-4649-5d1d-07271a80f600',
|
|
35
|
+
// Unichain Mainnet
|
|
36
|
+
130: '2257980a-3463-48c6-cbac-a42d2a956e00',
|
|
37
|
+
// Monad Testnet
|
|
38
|
+
10_143: '0a728e83-bacb-46db-7844-948f05434900',
|
|
25
39
|
// Gnosis
|
|
26
40
|
100: '02b53f6a-e3d4-479e-1cb4-21178987d100',
|
|
27
41
|
// EVMos
|
|
@@ -45,7 +59,26 @@ export const PresetsUtil = {
|
|
|
45
59
|
// Base
|
|
46
60
|
8453: '7289c336-3981-4081-c5f4-efc26ac64a00',
|
|
47
61
|
// Aurora
|
|
48
|
-
1313161554: '3ff73439-a619-4894-9262-4470c773a100'
|
|
62
|
+
1313161554: '3ff73439-a619-4894-9262-4470c773a100',
|
|
63
|
+
// Ronin Mainnet
|
|
64
|
+
2020: 'b8101fc0-9c19-4b6f-ec65-f6dfff106e00',
|
|
65
|
+
// Saigon Testnet (a.k.a. Ronin)
|
|
66
|
+
2021: 'b8101fc0-9c19-4b6f-ec65-f6dfff106e00',
|
|
67
|
+
// Berachain Mainnet
|
|
68
|
+
80094: 'e329c2c9-59b0-4a02-83e4-212ff3779900',
|
|
69
|
+
// Abstract Mainnet
|
|
70
|
+
2741: 'fc2427d1-5af9-4a9c-8da5-6f94627cd900',
|
|
71
|
+
|
|
72
|
+
// Solana networks
|
|
73
|
+
/// Mainnet
|
|
74
|
+
'5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp': 'a1b58899-f671-4276-6a5e-56ca5bd59700',
|
|
75
|
+
/// Testnet
|
|
76
|
+
'4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z': 'a1b58899-f671-4276-6a5e-56ca5bd59700',
|
|
77
|
+
|
|
78
|
+
// Bitcoin
|
|
79
|
+
'000000000019d6689c085ae165831e93': '0b4838db-0161-4ffe-022d-532bf03dba00',
|
|
80
|
+
// Bitcoin Testnet
|
|
81
|
+
'000000000933ea01ad0ee984209779ba': '39354064-d79b-420b-065d-f980c4b78200'
|
|
49
82
|
} as Record<string, string>,
|
|
50
83
|
|
|
51
84
|
ConnectorNamesMap: {
|