@reown/appkit-common-react-native 1.2.4 → 2.0.0-alpha.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.
Files changed (83) hide show
  1. package/lib/commonjs/adapters/BlockchainAdapter.js +79 -0
  2. package/lib/commonjs/adapters/BlockchainAdapter.js.map +1 -0
  3. package/lib/commonjs/adapters/EvmAdapter.js +83 -0
  4. package/lib/commonjs/adapters/EvmAdapter.js.map +1 -0
  5. package/lib/commonjs/adapters/SolanaBaseAdapter.js +12 -0
  6. package/lib/commonjs/adapters/SolanaBaseAdapter.js.map +1 -0
  7. package/lib/commonjs/index.js +62 -1
  8. package/lib/commonjs/index.js.map +1 -1
  9. package/lib/commonjs/networks/bitcoin.js +40 -0
  10. package/lib/commonjs/networks/bitcoin.js.map +1 -0
  11. package/lib/commonjs/networks/solana.js +78 -0
  12. package/lib/commonjs/networks/solana.js.map +1 -0
  13. package/lib/commonjs/utils/ConstantsUtil.js +2 -1
  14. package/lib/commonjs/utils/ConstantsUtil.js.map +1 -1
  15. package/lib/commonjs/utils/DateUtil.js +3 -0
  16. package/lib/commonjs/utils/DateUtil.js.map +1 -1
  17. package/lib/commonjs/utils/NumberUtil.js +56 -11
  18. package/lib/commonjs/utils/NumberUtil.js.map +1 -1
  19. package/lib/commonjs/utils/PresetsUtil.js +34 -3
  20. package/lib/commonjs/utils/PresetsUtil.js.map +1 -1
  21. package/lib/commonjs/utils/StringUtil.js +1 -1
  22. package/lib/commonjs/utils/StringUtil.js.map +1 -1
  23. package/lib/commonjs/utils/TypeUtil.js +34 -0
  24. package/lib/commonjs/utils/TypeUtil.js.map +1 -1
  25. package/lib/module/adapters/BlockchainAdapter.js +72 -0
  26. package/lib/module/adapters/BlockchainAdapter.js.map +1 -0
  27. package/lib/module/adapters/EvmAdapter.js +76 -0
  28. package/lib/module/adapters/EvmAdapter.js.map +1 -0
  29. package/lib/module/adapters/SolanaBaseAdapter.js +5 -0
  30. package/lib/module/adapters/SolanaBaseAdapter.js.map +1 -0
  31. package/lib/module/index.js +5 -0
  32. package/lib/module/index.js.map +1 -1
  33. package/lib/module/networks/bitcoin.js +34 -0
  34. package/lib/module/networks/bitcoin.js.map +1 -0
  35. package/lib/module/networks/solana.js +72 -0
  36. package/lib/module/networks/solana.js.map +1 -0
  37. package/lib/module/utils/ConstantsUtil.js +2 -1
  38. package/lib/module/utils/ConstantsUtil.js.map +1 -1
  39. package/lib/module/utils/DateUtil.js +3 -0
  40. package/lib/module/utils/DateUtil.js.map +1 -1
  41. package/lib/module/utils/NumberUtil.js +56 -11
  42. package/lib/module/utils/NumberUtil.js.map +1 -1
  43. package/lib/module/utils/PresetsUtil.js +34 -3
  44. package/lib/module/utils/PresetsUtil.js.map +1 -1
  45. package/lib/module/utils/StringUtil.js +1 -1
  46. package/lib/module/utils/StringUtil.js.map +1 -1
  47. package/lib/module/utils/TypeUtil.js +28 -0
  48. package/lib/module/utils/TypeUtil.js.map +1 -1
  49. package/lib/typescript/adapters/BlockchainAdapter.d.ts +27 -0
  50. package/lib/typescript/adapters/BlockchainAdapter.d.ts.map +1 -0
  51. package/lib/typescript/adapters/EvmAdapter.d.ts +6 -0
  52. package/lib/typescript/adapters/EvmAdapter.d.ts.map +1 -0
  53. package/lib/typescript/adapters/SolanaBaseAdapter.d.ts +4 -0
  54. package/lib/typescript/adapters/SolanaBaseAdapter.d.ts.map +1 -0
  55. package/lib/typescript/index.d.ts +5 -0
  56. package/lib/typescript/index.d.ts.map +1 -1
  57. package/lib/typescript/networks/bitcoin.d.ts +4 -0
  58. package/lib/typescript/networks/bitcoin.d.ts.map +1 -0
  59. package/lib/typescript/networks/solana.d.ts +5 -0
  60. package/lib/typescript/networks/solana.d.ts.map +1 -0
  61. package/lib/typescript/utils/ConstantsUtil.d.ts +1 -0
  62. package/lib/typescript/utils/ConstantsUtil.d.ts.map +1 -1
  63. package/lib/typescript/utils/DateUtil.d.ts +1 -0
  64. package/lib/typescript/utils/DateUtil.d.ts.map +1 -1
  65. package/lib/typescript/utils/NumberUtil.d.ts +40 -11
  66. package/lib/typescript/utils/NumberUtil.d.ts.map +1 -1
  67. package/lib/typescript/utils/PresetsUtil.d.ts +1 -1
  68. package/lib/typescript/utils/PresetsUtil.d.ts.map +1 -1
  69. package/lib/typescript/utils/TypeUtil.d.ts +193 -1
  70. package/lib/typescript/utils/TypeUtil.d.ts.map +1 -1
  71. package/package.json +1 -1
  72. package/src/adapters/BlockchainAdapter.ts +109 -0
  73. package/src/adapters/EvmAdapter.ts +79 -0
  74. package/src/adapters/SolanaBaseAdapter.ts +5 -0
  75. package/src/index.ts +5 -0
  76. package/src/networks/bitcoin.ts +32 -0
  77. package/src/networks/solana.ts +44 -0
  78. package/src/utils/ConstantsUtil.ts +2 -1
  79. package/src/utils/DateUtil.ts +4 -0
  80. package/src/utils/NumberUtil.ts +60 -11
  81. package/src/utils/PresetsUtil.ts +36 -3
  82. package/src/utils/StringUtil.ts +1 -1
  83. package/src/utils/TypeUtil.ts +240 -1
@@ -1,8 +1,51 @@
1
+ import { EventEmitter } from 'events';
2
+
3
+ export type CaipAddress = `${string}:${string}:${string}`;
4
+
5
+ export type CaipNetworkId = `${string}:${string}`;
6
+
7
+ export type ChainNamespace = 'eip155' | 'solana' | 'polkadot' | 'bip122';
8
+
9
+ export type Network = {
10
+ // Core viem/chain properties
11
+ id: number | string;
12
+ name: string;
13
+ nativeCurrency: { name: string; symbol: string; decimals: number };
14
+ rpcUrls: {
15
+ default: { http: readonly string[] };
16
+ [key: string]: { http: readonly string[] } | undefined;
17
+ };
18
+ blockExplorers?: {
19
+ default: { name: string; url: string };
20
+ [key: string]: { name: string; url: string } | undefined;
21
+ };
22
+
23
+ // AppKit specific / CAIP properties (Optional in type, but needed in practice)
24
+ chainNamespace?: ChainNamespace; // e.g., 'eip155'
25
+ caipNetworkId?: CaipNetworkId; // e.g., 'eip155:1'
26
+ testnet?: boolean;
27
+ deprecatedCaipNetworkId?: CaipNetworkId; // for Solana deprecated id
28
+ };
29
+
30
+ export type AppKitNetwork = Network & {
31
+ chainNamespace: ChainNamespace; // e.g., 'eip155'
32
+ caipNetworkId: CaipNetworkId; // e.g., 'eip155:1'
33
+ testnet?: boolean;
34
+ deprecatedCaipNetworkId?: CaipNetworkId; // for Solana deprecated id
35
+ };
36
+
37
+ export interface CaipNetwork {
38
+ id: CaipNetworkId;
39
+ name?: string;
40
+ imageId?: string;
41
+ imageUrl?: string;
42
+ }
43
+
1
44
  export interface Balance {
2
45
  name: string;
3
46
  symbol: string;
4
47
  chainId: string;
5
- address?: string;
48
+ address?: CaipAddress;
6
49
  value?: number;
7
50
  price: number;
8
51
  quantity: BalanceQuantity;
@@ -94,4 +137,200 @@ export interface ThemeVariables {
94
137
  accent?: string;
95
138
  }
96
139
 
140
+ export interface Token {
141
+ address: string;
142
+ image?: string;
143
+ }
144
+
145
+ export type Tokens = Record<CaipNetworkId, Token>;
146
+
97
147
  export type ConnectorType = 'WALLET_CONNECT' | 'COINBASE' | 'AUTH' | 'EXTERNAL';
148
+
149
+ export type Metadata = {
150
+ name: string;
151
+ description: string;
152
+ url: string;
153
+ icons: string[];
154
+ redirect?: {
155
+ native?: string;
156
+ universal?: string;
157
+ linkMode?: boolean;
158
+ };
159
+ };
160
+
161
+ //********** Adapter Event Payloads **********//
162
+ export type AccountsChangedEvent = {
163
+ accounts: string[];
164
+ };
165
+
166
+ export type ChainChangedEvent = {
167
+ chainId: string;
168
+ };
169
+
170
+ export type DisconnectEvent = {};
171
+
172
+ export type BalanceChangedEvent = {
173
+ address: CaipAddress;
174
+ balance: {
175
+ amount: string;
176
+ symbol: string;
177
+ contractAddress?: ContractAddress;
178
+ };
179
+ };
180
+
181
+ //********** Adapter Event Map **********//
182
+ export interface AdapterEvents {
183
+ accountsChanged: (event: AccountsChangedEvent) => void;
184
+ chainChanged: (event: ChainChangedEvent) => void;
185
+ disconnect: (event: DisconnectEvent) => void;
186
+ balanceChanged: (event: BalanceChangedEvent) => void;
187
+ }
188
+
189
+ export interface GetBalanceParams {
190
+ address?: CaipAddress;
191
+ network?: AppKitNetwork;
192
+ tokens?: Tokens;
193
+ }
194
+
195
+ type ContractAddress = CaipAddress;
196
+
197
+ export interface GetBalanceResponse {
198
+ amount: string;
199
+ symbol: string;
200
+ contractAddress?: ContractAddress;
201
+ }
202
+
203
+ //********** Connector Types **********//
204
+ interface BaseNamespace {
205
+ chains?: CaipNetworkId[];
206
+ accounts: CaipAddress[];
207
+ methods: string[];
208
+ events: string[];
209
+ }
210
+
211
+ type Namespace = BaseNamespace;
212
+
213
+ export type Namespaces = Record<string, Namespace>;
214
+
215
+ export type ProposalNamespaces = Record<
216
+ string,
217
+ Omit<Namespace, 'accounts'> &
218
+ Required<Pick<Namespace, 'chains'>> & { rpcMap: Record<string, string> }
219
+ >;
220
+
221
+ export type ConnectOptions = {
222
+ namespaces?: ProposalNamespaces;
223
+ defaultChain?: CaipNetworkId;
224
+ universalLink?: string;
225
+ };
226
+
227
+ export type ConnectorInitOptions = {
228
+ storage: Storage;
229
+ metadata: Metadata;
230
+ };
231
+
232
+ export abstract class WalletConnector extends EventEmitter {
233
+ public type: New_ConnectorType;
234
+ protected provider?: Provider;
235
+ protected namespaces?: Namespaces;
236
+ protected wallet?: WalletInfo;
237
+ protected storage?: Storage;
238
+ protected metadata?: Metadata;
239
+
240
+ constructor({ type }: { type: New_ConnectorType }) {
241
+ super();
242
+ this.type = type;
243
+ }
244
+
245
+ public async init(ops: ConnectorInitOptions) {
246
+ this.storage = ops.storage;
247
+ this.metadata = ops.metadata;
248
+ }
249
+
250
+ public setProvider(provider: Provider) {
251
+ this.provider = provider;
252
+ }
253
+
254
+ abstract connect(opts: ConnectOptions): Promise<Namespaces | undefined>;
255
+ abstract disconnect(): Promise<void>;
256
+ abstract getProvider(): Provider;
257
+ abstract getNamespaces(): Namespaces;
258
+ abstract getChainId(namespace: ChainNamespace): CaipNetworkId | undefined;
259
+ abstract getWalletInfo(): WalletInfo | undefined;
260
+ abstract switchNetwork(network: AppKitNetwork): Promise<void>;
261
+ }
262
+
263
+ //********** Provider Types **********//
264
+
265
+ export interface Provider {
266
+ connect<T>(params?: any): Promise<T>;
267
+ disconnect(): Promise<void>;
268
+ request<T = unknown>(
269
+ args: RequestArguments,
270
+ chain?: string | undefined,
271
+ expiry?: number | undefined
272
+ ): Promise<T>;
273
+ on(event: string, listener: (args?: any) => void): any;
274
+ off(event: string, listener: (args?: any) => void): any;
275
+ }
276
+
277
+ export interface RequestArguments {
278
+ method: string;
279
+ params?: unknown[] | Record<string, unknown> | object | undefined;
280
+ }
281
+
282
+ //TODO: rename this and remove the old one ConnectorType
283
+ export type New_ConnectorType = 'walletconnect' | 'coinbase' | 'auth' | 'phantom';
284
+
285
+ //********** Others **********//
286
+
287
+ export interface ConnectionResponse {
288
+ accounts: string[];
289
+ chainId: string;
290
+ [key: string]: any;
291
+ }
292
+
293
+ export interface WalletInfo {
294
+ name?: string;
295
+ icon?: string;
296
+ description?: string;
297
+ url?: string;
298
+ icons?: string[];
299
+ redirect?: {
300
+ native?: string;
301
+ universal?: string;
302
+ linkMode?: boolean;
303
+ };
304
+ [key: string]: unknown;
305
+ }
306
+
307
+ export interface Storage {
308
+ /**
309
+ * Returns all keys in storage.
310
+ */
311
+ getKeys(): Promise<string[]>;
312
+
313
+ /**
314
+ * Returns all key-value entries in storage.
315
+ */
316
+ getEntries<T = any>(): Promise<[string, T][]>;
317
+
318
+ /**
319
+ * Get an item from storage for a given key.
320
+ * @param key The key to retrieve.
321
+ */
322
+ getItem<T = any>(key: string): Promise<T | undefined>;
323
+
324
+ /**
325
+ * Set an item in storage for a given key.
326
+ * @param key The key to set.
327
+ * @param value The value to set.
328
+ */
329
+ setItem<T = any>(key: string, value: T): Promise<void>;
330
+
331
+ /**
332
+ * Remove an item from storage for a given key.
333
+ * @param key The key to remove.
334
+ */
335
+ removeItem(key: string): Promise<void>;
336
+ }