viem 1.2.10 → 1.2.11

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 (70) hide show
  1. package/dist/cjs/chains/formatters/celo.js +2 -2
  2. package/dist/cjs/chains/formatters/celo.js.map +1 -1
  3. package/dist/cjs/chains/formatters/optimism.js +2 -2
  4. package/dist/cjs/chains/formatters/optimism.js.map +1 -1
  5. package/dist/cjs/chains/index.js +8 -8
  6. package/dist/cjs/chains/serializers/celo.js +12 -13
  7. package/dist/cjs/chains/serializers/celo.js.map +1 -1
  8. package/dist/cjs/clients/createClient.js +19 -12
  9. package/dist/cjs/clients/createClient.js.map +1 -1
  10. package/dist/cjs/clients/createPublicClient.js +6 -7
  11. package/dist/cjs/clients/createPublicClient.js.map +1 -1
  12. package/dist/cjs/clients/createTestClient.js +9 -9
  13. package/dist/cjs/clients/createTestClient.js.map +1 -1
  14. package/dist/cjs/clients/createWalletClient.js +6 -6
  15. package/dist/cjs/clients/createWalletClient.js.map +1 -1
  16. package/dist/cjs/clients/decorators/public.js +44 -42
  17. package/dist/cjs/clients/decorators/public.js.map +1 -1
  18. package/dist/cjs/clients/decorators/wallet.js +17 -15
  19. package/dist/cjs/clients/decorators/wallet.js.map +1 -1
  20. package/dist/esm/chains/formatters/celo.js +1 -1
  21. package/dist/esm/chains/formatters/celo.js.map +1 -1
  22. package/dist/esm/chains/formatters/optimism.js +1 -1
  23. package/dist/esm/chains/formatters/optimism.js.map +1 -1
  24. package/dist/esm/chains/index.js +11 -11
  25. package/dist/esm/chains/serializers/celo.js +13 -14
  26. package/dist/esm/chains/serializers/celo.js.map +1 -1
  27. package/dist/esm/clients/createClient.js +19 -15
  28. package/dist/esm/clients/createClient.js.map +1 -1
  29. package/dist/esm/clients/createPublicClient.js +6 -26
  30. package/dist/esm/clients/createPublicClient.js.map +1 -1
  31. package/dist/esm/clients/createTestClient.js +9 -32
  32. package/dist/esm/clients/createTestClient.js.map +1 -1
  33. package/dist/esm/clients/createWalletClient.js +6 -42
  34. package/dist/esm/clients/createWalletClient.js.map +1 -1
  35. package/dist/esm/clients/decorators/public.js +44 -42
  36. package/dist/esm/clients/decorators/public.js.map +1 -1
  37. package/dist/esm/clients/decorators/wallet.js +17 -15
  38. package/dist/esm/clients/decorators/wallet.js.map +1 -1
  39. package/dist/types/chains/formatters/celo.d.ts +2 -2
  40. package/dist/types/chains/formatters/celo.d.ts.map +1 -1
  41. package/dist/types/chains/formatters/optimism.d.ts +9 -9
  42. package/dist/types/chains/formatters/optimism.d.ts.map +1 -1
  43. package/dist/types/chains/serializers/celo.d.ts +3 -4
  44. package/dist/types/chains/serializers/celo.d.ts.map +1 -1
  45. package/dist/types/clients/createClient.d.ts +29 -32
  46. package/dist/types/clients/createClient.d.ts.map +1 -1
  47. package/dist/types/clients/createPublicClient.d.ts +3 -3
  48. package/dist/types/clients/createPublicClient.d.ts.map +1 -1
  49. package/dist/types/clients/createTestClient.d.ts +9 -7
  50. package/dist/types/clients/createTestClient.d.ts.map +1 -1
  51. package/dist/types/clients/createWalletClient.d.ts +3 -3
  52. package/dist/types/clients/createWalletClient.d.ts.map +1 -1
  53. package/dist/types/clients/decorators/public.d.ts +1 -519
  54. package/dist/types/clients/decorators/public.d.ts.map +1 -1
  55. package/dist/types/clients/decorators/wallet.d.ts +1 -519
  56. package/dist/types/clients/decorators/wallet.d.ts.map +1 -1
  57. package/dist/types/types/chain.d.ts +3 -4
  58. package/dist/types/types/chain.d.ts.map +1 -1
  59. package/package.json +1 -1
  60. package/src/chains/formatters/celo.ts +8 -7
  61. package/src/chains/formatters/optimism.ts +14 -14
  62. package/src/chains/index.ts +11 -11
  63. package/src/chains/serializers/celo.ts +15 -19
  64. package/src/clients/createClient.ts +113 -89
  65. package/src/clients/createPublicClient.ts +26 -26
  66. package/src/clients/createTestClient.ts +41 -47
  67. package/src/clients/createWalletClient.ts +30 -33
  68. package/src/clients/decorators/public.ts +49 -44
  69. package/src/clients/decorators/wallet.ts +18 -16
  70. package/src/types/chain.ts +6 -7
@@ -10,28 +10,30 @@ import { type WalletActions, walletActions } from './decorators/wallet.js'
10
10
  import type { Transport } from './transports/createTransport.js'
11
11
 
12
12
  export type WalletClientConfig<
13
- TTransport extends Transport = Transport,
14
- TChain extends Chain | undefined = Chain | undefined,
15
- TAccountOrAddress extends Account | Address | undefined =
13
+ transport extends Transport = Transport,
14
+ chain extends Chain | undefined = Chain | undefined,
15
+ accountOrAddress extends Account | Address | undefined =
16
16
  | Account
17
17
  | Address
18
18
  | undefined,
19
- > = Pick<
20
- ClientConfig<TTransport, TChain, TAccountOrAddress>,
21
- 'account' | 'chain' | 'key' | 'name' | 'pollingInterval' | 'transport'
19
+ > = Prettify<
20
+ Pick<
21
+ ClientConfig<transport, chain, accountOrAddress>,
22
+ 'account' | 'chain' | 'key' | 'name' | 'pollingInterval' | 'transport'
23
+ >
22
24
  >
23
25
 
24
26
  export type WalletClient<
25
- TTransport extends Transport = Transport,
26
- TChain extends Chain | undefined = Chain | undefined,
27
- TAccount extends Account | undefined = Account | undefined,
27
+ transport extends Transport = Transport,
28
+ chain extends Chain | undefined = Chain | undefined,
29
+ account extends Account | undefined = Account | undefined,
28
30
  > = Prettify<
29
31
  Client<
30
- TTransport,
31
- TChain,
32
- TAccount,
32
+ transport,
33
+ chain,
34
+ account,
33
35
  WalletRpcSchema,
34
- WalletActions<TChain, TAccount>
36
+ WalletActions<chain, account>
35
37
  >
36
38
  >
37
39
 
@@ -72,28 +74,23 @@ export type WalletClient<
72
74
  * })
73
75
  */
74
76
  export function createWalletClient<
75
- TTransport extends Transport,
76
- TChain extends Chain | undefined = undefined,
77
- TAccountOrAddress extends Account | Address | undefined = undefined,
78
- >({
79
- account,
80
- chain,
81
- transport,
82
- key = 'wallet',
83
- name = 'Wallet Client',
84
- pollingInterval,
85
- }: WalletClientConfig<TTransport, TChain, TAccountOrAddress>): WalletClient<
86
- TTransport,
87
- TChain,
88
- ParseAccount<TAccountOrAddress>
89
- > {
90
- return createClient({
91
- account,
92
- chain,
77
+ transport extends Transport,
78
+ chain extends Chain | undefined = undefined,
79
+ accountOrAddress extends Account | Address | undefined = undefined,
80
+ >(
81
+ parameters: WalletClientConfig<transport, chain, accountOrAddress>,
82
+ ): WalletClient<transport, chain, ParseAccount<accountOrAddress>>
83
+
84
+ export function createWalletClient(
85
+ parameters: WalletClientConfig,
86
+ ): WalletClient {
87
+ const { key = 'wallet', name = 'Wallet Client', transport } = parameters
88
+ const client = createClient({
89
+ ...parameters,
93
90
  key,
94
91
  name,
95
- pollingInterval,
96
92
  transport: (opts) => transport({ ...opts, retryCount: 0 }),
97
93
  type: 'walletClient',
98
- }).extend(walletActions)
94
+ })
95
+ return client.extend(walletActions)
99
96
  }
@@ -1374,52 +1374,57 @@ export type PublicActions<
1374
1374
  ) => WatchPendingTransactionsReturnType
1375
1375
  }
1376
1376
 
1377
- export const publicActions = <
1377
+ export function publicActions<
1378
1378
  TTransport extends Transport = Transport,
1379
1379
  TChain extends Chain | undefined = Chain | undefined,
1380
1380
  TAccount extends Account | undefined = Account | undefined,
1381
1381
  >(
1382
1382
  client: Client<TTransport, TChain, TAccount>,
1383
- ): PublicActions<TTransport, TChain, TAccount> => ({
1384
- call: (args) => call(client, args),
1385
- createBlockFilter: () => createBlockFilter(client),
1386
- createContractEventFilter: (args) => createContractEventFilter(client, args),
1387
- createEventFilter: (args) => createEventFilter(client, args),
1388
- createPendingTransactionFilter: () => createPendingTransactionFilter(client),
1389
- estimateContractGas: (args) => estimateContractGas(client, args as any),
1390
- estimateGas: (args) => estimateGas(client, args),
1391
- getBalance: (args) => getBalance(client, args),
1392
- getBlock: (args) => getBlock(client, args),
1393
- getBlockNumber: (args) => getBlockNumber(client, args),
1394
- getBlockTransactionCount: (args) => getBlockTransactionCount(client, args),
1395
- getBytecode: (args) => getBytecode(client, args),
1396
- getChainId: () => getChainId(client),
1397
- getEnsAddress: (args) => getEnsAddress(client, args),
1398
- getEnsAvatar: (args) => getEnsAvatar(client, args),
1399
- getEnsName: (args) => getEnsName(client, args),
1400
- getEnsResolver: (args) => getEnsResolver(client, args),
1401
- getEnsText: (args) => getEnsText(client, args),
1402
- getFeeHistory: (args) => getFeeHistory(client, args),
1403
- getFilterChanges: (args) => getFilterChanges(client, args),
1404
- getFilterLogs: (args) => getFilterLogs(client, args),
1405
- getGasPrice: () => getGasPrice(client),
1406
- getLogs: (args) => getLogs(client, args),
1407
- getStorageAt: (args) => getStorageAt(client, args),
1408
- getTransaction: (args) => getTransaction(client, args),
1409
- getTransactionConfirmations: (args) =>
1410
- getTransactionConfirmations(client, args),
1411
- getTransactionCount: (args) => getTransactionCount(client, args),
1412
- getTransactionReceipt: (args) => getTransactionReceipt(client, args),
1413
- multicall: (args) => multicall(client, args),
1414
- readContract: (args) => readContract(client, args),
1415
- simulateContract: (args) => simulateContract(client, args),
1416
- verifyMessage: (args) => verifyMessage(client, args),
1417
- verifyTypedData: (args) => verifyTypedData(client, args),
1418
- uninstallFilter: (args) => uninstallFilter(client, args),
1419
- waitForTransactionReceipt: (args) => waitForTransactionReceipt(client, args),
1420
- watchBlocks: (args) => watchBlocks(client, args),
1421
- watchBlockNumber: (args) => watchBlockNumber(client, args),
1422
- watchContractEvent: (args) => watchContractEvent(client, args),
1423
- watchEvent: (args) => watchEvent(client, args),
1424
- watchPendingTransactions: (args) => watchPendingTransactions(client, args),
1425
- })
1383
+ ): PublicActions<TTransport, TChain, TAccount> {
1384
+ return {
1385
+ call: (args) => call(client, args),
1386
+ createBlockFilter: () => createBlockFilter(client),
1387
+ createContractEventFilter: (args) =>
1388
+ createContractEventFilter(client, args),
1389
+ createEventFilter: (args) => createEventFilter(client, args),
1390
+ createPendingTransactionFilter: () =>
1391
+ createPendingTransactionFilter(client),
1392
+ estimateContractGas: (args) => estimateContractGas(client, args as any),
1393
+ estimateGas: (args) => estimateGas(client, args),
1394
+ getBalance: (args) => getBalance(client, args),
1395
+ getBlock: (args) => getBlock(client, args),
1396
+ getBlockNumber: (args) => getBlockNumber(client, args),
1397
+ getBlockTransactionCount: (args) => getBlockTransactionCount(client, args),
1398
+ getBytecode: (args) => getBytecode(client, args),
1399
+ getChainId: () => getChainId(client),
1400
+ getEnsAddress: (args) => getEnsAddress(client, args),
1401
+ getEnsAvatar: (args) => getEnsAvatar(client, args),
1402
+ getEnsName: (args) => getEnsName(client, args),
1403
+ getEnsResolver: (args) => getEnsResolver(client, args),
1404
+ getEnsText: (args) => getEnsText(client, args),
1405
+ getFeeHistory: (args) => getFeeHistory(client, args),
1406
+ getFilterChanges: (args) => getFilterChanges(client, args),
1407
+ getFilterLogs: (args) => getFilterLogs(client, args),
1408
+ getGasPrice: () => getGasPrice(client),
1409
+ getLogs: (args) => getLogs(client, args),
1410
+ getStorageAt: (args) => getStorageAt(client, args),
1411
+ getTransaction: (args) => getTransaction(client, args),
1412
+ getTransactionConfirmations: (args) =>
1413
+ getTransactionConfirmations(client, args),
1414
+ getTransactionCount: (args) => getTransactionCount(client, args),
1415
+ getTransactionReceipt: (args) => getTransactionReceipt(client, args),
1416
+ multicall: (args) => multicall(client, args),
1417
+ readContract: (args) => readContract(client, args),
1418
+ simulateContract: (args) => simulateContract(client, args),
1419
+ verifyMessage: (args) => verifyMessage(client, args),
1420
+ verifyTypedData: (args) => verifyTypedData(client, args),
1421
+ uninstallFilter: (args) => uninstallFilter(client, args),
1422
+ waitForTransactionReceipt: (args) =>
1423
+ waitForTransactionReceipt(client, args),
1424
+ watchBlocks: (args) => watchBlocks(client, args),
1425
+ watchBlockNumber: (args) => watchBlockNumber(client, args),
1426
+ watchContractEvent: (args) => watchContractEvent(client, args),
1427
+ watchEvent: (args) => watchEvent(client, args),
1428
+ watchPendingTransactions: (args) => watchPendingTransactions(client, args),
1429
+ }
1430
+ }
@@ -523,24 +523,26 @@ export type WalletActions<
523
523
  ) => Promise<WriteContractReturnType>
524
524
  }
525
525
 
526
- export const walletActions = <
526
+ export function walletActions<
527
527
  TTransport extends Transport,
528
528
  TChain extends Chain | undefined = Chain | undefined,
529
529
  TAccount extends Account | undefined = Account | undefined,
530
530
  >(
531
531
  client: Client<TTransport, TChain, TAccount>,
532
- ): WalletActions<TChain, TAccount> => ({
533
- addChain: (args) => addChain(client, args),
534
- deployContract: (args) => deployContract(client, args),
535
- getAddresses: () => getAddresses(client),
536
- getChainId: () => getChainId(client),
537
- getPermissions: () => getPermissions(client),
538
- requestAddresses: () => requestAddresses(client),
539
- requestPermissions: (args) => requestPermissions(client, args),
540
- sendTransaction: (args) => sendTransaction(client, args),
541
- signMessage: (args) => signMessage(client, args),
542
- signTypedData: (args) => signTypedData(client, args),
543
- switchChain: (args) => switchChain(client, args),
544
- watchAsset: (args) => watchAsset(client, args),
545
- writeContract: (args) => writeContract(client, args),
546
- })
532
+ ): WalletActions<TChain, TAccount> {
533
+ return {
534
+ addChain: (args) => addChain(client, args),
535
+ deployContract: (args) => deployContract(client, args),
536
+ getAddresses: () => getAddresses(client),
537
+ getChainId: () => getChainId(client),
538
+ getPermissions: () => getPermissions(client),
539
+ requestAddresses: () => requestAddresses(client),
540
+ requestPermissions: (args) => requestPermissions(client, args),
541
+ sendTransaction: (args) => sendTransaction(client, args),
542
+ signMessage: (args) => signMessage(client, args),
543
+ signTypedData: (args) => signTypedData(client, args),
544
+ switchChain: (args) => switchChain(client, args),
545
+ watchAsset: (args) => watchAsset(client, args),
546
+ writeContract: (args) => writeContract(client, args),
547
+ }
548
+ }
@@ -1,4 +1,3 @@
1
- import type { Chain as Chain_ } from '@wagmi/chains'
2
1
  import type { Address } from 'abitype'
3
2
 
4
3
  import type { Formatters } from './formatter.js'
@@ -6,13 +5,13 @@ import type { Serializers } from './serializer.js'
6
5
  import type { IsUndefined } from './utils.js'
7
6
 
8
7
  export type Chain<
9
- TFormatters extends Formatters | undefined = Formatters | undefined,
10
- TSerializers extends Serializers<TFormatters> | undefined =
11
- | Serializers<TFormatters>
8
+ formatters extends Formatters | undefined = Formatters | undefined,
9
+ serializers extends Serializers<formatters> | undefined =
10
+ | Serializers<formatters>
12
11
  | undefined,
13
- > = Chain_ & {
14
- formatters?: TFormatters
15
- serializers?: TSerializers
12
+ > = import('@wagmi/chains').Chain & {
13
+ formatters?: formatters | undefined
14
+ serializers?: serializers | undefined
16
15
  }
17
16
 
18
17
  export type ChainContract = {