viem 2.44.1 → 2.44.4

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 (150) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/_cjs/actions/wallet/sendTransaction.js +6 -5
  3. package/_cjs/actions/wallet/sendTransaction.js.map +1 -1
  4. package/_cjs/actions/wallet/sendTransactionSync.js +6 -5
  5. package/_cjs/actions/wallet/sendTransactionSync.js.map +1 -1
  6. package/_cjs/chains/definitions/adi.js +26 -0
  7. package/_cjs/chains/definitions/adi.js.map +1 -0
  8. package/_cjs/chains/definitions/tempo.js +28 -0
  9. package/_cjs/chains/definitions/tempo.js.map +1 -0
  10. package/_cjs/chains/definitions/zkXPLA.js +28 -0
  11. package/_cjs/chains/definitions/zkXPLA.js.map +1 -0
  12. package/_cjs/chains/definitions/zkXPLATestnet.js +28 -0
  13. package/_cjs/chains/definitions/zkXPLATestnet.js.map +1 -0
  14. package/_cjs/chains/index.js +22 -14
  15. package/_cjs/chains/index.js.map +1 -1
  16. package/_cjs/errors/version.js +1 -1
  17. package/_cjs/tempo/Abis.js +2 -2
  18. package/_cjs/tempo/Abis.js.map +1 -1
  19. package/_cjs/tempo/Addresses.js +2 -1
  20. package/_cjs/tempo/Addresses.js.map +1 -1
  21. package/_cjs/tempo/Decorator.js +19 -0
  22. package/_cjs/tempo/Decorator.js.map +1 -1
  23. package/_cjs/tempo/Transport.js +1 -1
  24. package/_cjs/tempo/Transport.js.map +1 -1
  25. package/_cjs/tempo/actions/fee.js +91 -0
  26. package/_cjs/tempo/actions/fee.js.map +1 -1
  27. package/_cjs/tempo/actions/index.js +2 -1
  28. package/_cjs/tempo/actions/index.js.map +1 -1
  29. package/_cjs/tempo/actions/validator.js +308 -0
  30. package/_cjs/tempo/actions/validator.js.map +1 -0
  31. package/_cjs/utils/abi/decodeEventLog.js +29 -12
  32. package/_cjs/utils/abi/decodeEventLog.js.map +1 -1
  33. package/_cjs/utils/encoding/fromHex.js +11 -1
  34. package/_cjs/utils/encoding/fromHex.js.map +1 -1
  35. package/_cjs/utils/rpc/http.js +25 -1
  36. package/_cjs/utils/rpc/http.js.map +1 -1
  37. package/_esm/actions/wallet/sendTransaction.js +6 -5
  38. package/_esm/actions/wallet/sendTransaction.js.map +1 -1
  39. package/_esm/actions/wallet/sendTransactionSync.js +6 -5
  40. package/_esm/actions/wallet/sendTransactionSync.js.map +1 -1
  41. package/_esm/chains/definitions/adi.js +23 -0
  42. package/_esm/chains/definitions/adi.js.map +1 -0
  43. package/_esm/chains/definitions/tempo.js +25 -0
  44. package/_esm/chains/definitions/tempo.js.map +1 -0
  45. package/_esm/chains/definitions/zkXPLA.js +25 -0
  46. package/_esm/chains/definitions/zkXPLA.js.map +1 -0
  47. package/_esm/chains/definitions/zkXPLATestnet.js +25 -0
  48. package/_esm/chains/definitions/zkXPLATestnet.js.map +1 -0
  49. package/_esm/chains/index.js +4 -0
  50. package/_esm/chains/index.js.map +1 -1
  51. package/_esm/errors/version.js +1 -1
  52. package/_esm/tempo/Abis.js +1 -1
  53. package/_esm/tempo/Abis.js.map +1 -1
  54. package/_esm/tempo/Account.js +6 -6
  55. package/_esm/tempo/Addresses.js +1 -0
  56. package/_esm/tempo/Addresses.js.map +1 -1
  57. package/_esm/tempo/Decorator.js +19 -0
  58. package/_esm/tempo/Decorator.js.map +1 -1
  59. package/_esm/tempo/Transport.js +1 -1
  60. package/_esm/tempo/Transport.js.map +1 -1
  61. package/_esm/tempo/WebAuthnP256.js +2 -2
  62. package/_esm/tempo/actions/amm.js +28 -28
  63. package/_esm/tempo/actions/dex.js +68 -68
  64. package/_esm/tempo/actions/faucet.js +4 -4
  65. package/_esm/tempo/actions/fee.js +236 -10
  66. package/_esm/tempo/actions/fee.js.map +1 -1
  67. package/_esm/tempo/actions/index.js +1 -0
  68. package/_esm/tempo/actions/index.js.map +1 -1
  69. package/_esm/tempo/actions/nonce.js +4 -4
  70. package/_esm/tempo/actions/policy.js +36 -36
  71. package/_esm/tempo/actions/reward.js +28 -28
  72. package/_esm/tempo/actions/token.js +122 -122
  73. package/_esm/tempo/actions/validator.js +1017 -0
  74. package/_esm/tempo/actions/validator.js.map +1 -0
  75. package/_esm/utils/abi/decodeEventLog.js +34 -13
  76. package/_esm/utils/abi/decodeEventLog.js.map +1 -1
  77. package/_esm/utils/encoding/fromHex.js +12 -2
  78. package/_esm/utils/encoding/fromHex.js.map +1 -1
  79. package/_esm/utils/rpc/http.js +26 -1
  80. package/_esm/utils/rpc/http.js.map +1 -1
  81. package/_types/actions/wallet/sendTransaction.d.ts +4 -1
  82. package/_types/actions/wallet/sendTransaction.d.ts.map +1 -1
  83. package/_types/actions/wallet/sendTransactionSync.d.ts +2 -0
  84. package/_types/actions/wallet/sendTransactionSync.d.ts.map +1 -1
  85. package/_types/chains/definitions/adi.d.ts +48 -0
  86. package/_types/chains/definitions/adi.d.ts.map +1 -0
  87. package/_types/chains/definitions/tempo.d.ts +916 -0
  88. package/_types/chains/definitions/tempo.d.ts.map +1 -0
  89. package/_types/chains/definitions/zkXPLA.d.ts +50 -0
  90. package/_types/chains/definitions/zkXPLA.d.ts.map +1 -0
  91. package/_types/chains/definitions/zkXPLATestnet.d.ts +50 -0
  92. package/_types/chains/definitions/zkXPLATestnet.d.ts.map +1 -0
  93. package/_types/chains/index.d.ts +4 -0
  94. package/_types/chains/index.d.ts.map +1 -1
  95. package/_types/errors/version.d.ts +1 -1
  96. package/_types/tempo/Abis.d.ts +1 -1
  97. package/_types/tempo/Abis.d.ts.map +1 -1
  98. package/_types/tempo/Account.d.ts +6 -6
  99. package/_types/tempo/Addresses.d.ts +1 -0
  100. package/_types/tempo/Addresses.d.ts.map +1 -1
  101. package/_types/tempo/Decorator.d.ts +607 -208
  102. package/_types/tempo/Decorator.d.ts.map +1 -1
  103. package/_types/tempo/Transport.d.ts.map +1 -1
  104. package/_types/tempo/WebAuthnP256.d.ts +2 -2
  105. package/_types/tempo/actions/amm.d.ts +28 -28
  106. package/_types/tempo/actions/dex.d.ts +68 -68
  107. package/_types/tempo/actions/faucet.d.ts +4 -4
  108. package/_types/tempo/actions/fee.d.ts +380 -10
  109. package/_types/tempo/actions/fee.d.ts.map +1 -1
  110. package/_types/tempo/actions/index.d.ts +1 -0
  111. package/_types/tempo/actions/index.d.ts.map +1 -1
  112. package/_types/tempo/actions/nonce.d.ts +4 -4
  113. package/_types/tempo/actions/policy.d.ts +36 -36
  114. package/_types/tempo/actions/reward.d.ts +28 -28
  115. package/_types/tempo/actions/token.d.ts +122 -122
  116. package/_types/tempo/actions/validator.d.ts +1174 -0
  117. package/_types/tempo/actions/validator.d.ts.map +1 -0
  118. package/_types/utils/abi/decodeEventLog.d.ts.map +1 -1
  119. package/_types/utils/encoding/fromHex.d.ts +2 -2
  120. package/_types/utils/encoding/fromHex.d.ts.map +1 -1
  121. package/_types/utils/rpc/http.d.ts +8 -1
  122. package/_types/utils/rpc/http.d.ts.map +1 -1
  123. package/actions/wallet/sendTransaction.ts +10 -5
  124. package/actions/wallet/sendTransactionSync.ts +8 -4
  125. package/chains/definitions/adi.ts +23 -0
  126. package/chains/definitions/tempo.ts +25 -0
  127. package/chains/definitions/zkXPLA.ts +25 -0
  128. package/chains/definitions/zkXPLATestnet.ts +25 -0
  129. package/chains/index.ts +4 -0
  130. package/errors/version.ts +1 -1
  131. package/package.json +1 -1
  132. package/tempo/Abis.ts +1 -1
  133. package/tempo/Account.ts +6 -6
  134. package/tempo/Addresses.ts +1 -0
  135. package/tempo/Decorator.ts +672 -208
  136. package/tempo/Transport.ts +4 -1
  137. package/tempo/WebAuthnP256.ts +2 -2
  138. package/tempo/actions/amm.ts +28 -28
  139. package/tempo/actions/dex.ts +68 -68
  140. package/tempo/actions/faucet.ts +4 -4
  141. package/tempo/actions/fee.ts +346 -10
  142. package/tempo/actions/index.ts +1 -0
  143. package/tempo/actions/nonce.ts +4 -4
  144. package/tempo/actions/policy.ts +36 -36
  145. package/tempo/actions/reward.ts +28 -28
  146. package/tempo/actions/token.ts +122 -122
  147. package/tempo/actions/validator.ts +1417 -0
  148. package/utils/abi/decodeEventLog.ts +38 -14
  149. package/utils/encoding/fromHex.ts +17 -2
  150. package/utils/rpc/http.ts +31 -1
@@ -44,8 +44,8 @@ import type { TransactionReceipt } from '../Transaction.js'
44
44
  * @example
45
45
  * ```ts
46
46
  * import { createClient, http } from 'viem'
47
- * import { tempo } from 'tempo.ts/chains'
48
- * import { Actions } from 'tempo.ts/viem'
47
+ * import { tempo } from 'viem/chains'
48
+ * import { Actions } from 'viem/tempo'
49
49
  * import { privateKeyToAccount } from 'viem/accounts'
50
50
  *
51
51
  * const client = createClient({
@@ -124,8 +124,8 @@ export namespace approve {
124
124
  * @example
125
125
  * ```ts
126
126
  * import { createClient, http, walletActions } from 'viem'
127
- * import { tempo } from 'tempo.ts/chains'
128
- * import { Actions } from 'tempo.ts/viem'
127
+ * import { tempo } from 'viem/chains'
128
+ * import { Actions } from 'viem/tempo'
129
129
  *
130
130
  * const client = createClient({
131
131
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -173,8 +173,8 @@ export namespace approve {
173
173
  * @example
174
174
  * ```ts
175
175
  * import { createClient, http } from 'viem'
176
- * import { tempo } from 'tempo.ts/chains'
177
- * import { Actions } from 'tempo.ts/viem'
176
+ * import { tempo } from 'viem/chains'
177
+ * import { Actions } from 'viem/tempo'
178
178
  * import { privateKeyToAccount } from 'viem/accounts'
179
179
  *
180
180
  * const client = createClient({
@@ -246,8 +246,8 @@ export namespace approveSync {
246
246
  * @example
247
247
  * ```ts
248
248
  * import { createClient, http } from 'viem'
249
- * import { tempo } from 'tempo.ts/chains'
250
- * import { Actions } from 'tempo.ts/viem'
249
+ * import { tempo } from 'viem/chains'
250
+ * import { Actions } from 'viem/tempo'
251
251
  * import { privateKeyToAccount } from 'viem/accounts'
252
252
  *
253
253
  * const client = createClient({
@@ -326,8 +326,8 @@ export namespace burnBlocked {
326
326
  * @example
327
327
  * ```ts
328
328
  * import { createClient, http, walletActions } from 'viem'
329
- * import { tempo } from 'tempo.ts/chains'
330
- * import { Actions } from 'tempo.ts/viem'
329
+ * import { tempo } from 'viem/chains'
330
+ * import { Actions } from 'viem/tempo'
331
331
  *
332
332
  * const client = createClient({
333
333
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -381,8 +381,8 @@ export namespace burnBlocked {
381
381
  * @example
382
382
  * ```ts
383
383
  * import { createClient, http } from 'viem'
384
- * import { tempo } from 'tempo.ts/chains'
385
- * import { Actions } from 'tempo.ts/viem'
384
+ * import { tempo } from 'viem/chains'
385
+ * import { Actions } from 'viem/tempo'
386
386
  * import { privateKeyToAccount } from 'viem/accounts'
387
387
  *
388
388
  * const client = createClient({
@@ -453,8 +453,8 @@ export namespace burnBlockedSync {
453
453
  * @example
454
454
  * ```ts
455
455
  * import { createClient, http } from 'viem'
456
- * import { tempo } from 'tempo.ts/chains'
457
- * import { Actions } from 'tempo.ts/viem'
456
+ * import { tempo } from 'viem/chains'
457
+ * import { Actions } from 'viem/tempo'
458
458
  * import { privateKeyToAccount } from 'viem/accounts'
459
459
  *
460
460
  * const client = createClient({
@@ -532,8 +532,8 @@ export namespace burn {
532
532
  * @example
533
533
  * ```ts
534
534
  * import { createClient, http, walletActions } from 'viem'
535
- * import { tempo } from 'tempo.ts/chains'
536
- * import { Actions } from 'tempo.ts/viem'
535
+ * import { tempo } from 'viem/chains'
536
+ * import { Actions } from 'viem/tempo'
537
537
  *
538
538
  * const client = createClient({
539
539
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -594,8 +594,8 @@ export namespace burn {
594
594
  * @example
595
595
  * ```ts
596
596
  * import { createClient, http } from 'viem'
597
- * import { tempo } from 'tempo.ts/chains'
598
- * import { Actions } from 'tempo.ts/viem'
597
+ * import { tempo } from 'viem/chains'
598
+ * import { Actions } from 'viem/tempo'
599
599
  * import { privateKeyToAccount } from 'viem/accounts'
600
600
  *
601
601
  * const client = createClient({
@@ -664,8 +664,8 @@ export namespace burnSync {
664
664
  * @example
665
665
  * ```ts
666
666
  * import { createClient, http } from 'viem'
667
- * import { tempo } from 'tempo.ts/chains'
668
- * import { Actions } from 'tempo.ts/viem'
667
+ * import { tempo } from 'viem/chains'
668
+ * import { Actions } from 'viem/tempo'
669
669
  * import { privateKeyToAccount } from 'viem/accounts'
670
670
  *
671
671
  * const client = createClient({
@@ -741,8 +741,8 @@ export namespace changeTransferPolicy {
741
741
  * @example
742
742
  * ```ts
743
743
  * import { createClient, http, walletActions } from 'viem'
744
- * import { tempo } from 'tempo.ts/chains'
745
- * import { Actions } from 'tempo.ts/viem'
744
+ * import { tempo } from 'viem/chains'
745
+ * import { Actions } from 'viem/tempo'
746
746
  *
747
747
  * const client = createClient({
748
748
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -795,8 +795,8 @@ export namespace changeTransferPolicy {
795
795
  * @example
796
796
  * ```ts
797
797
  * import { createClient, http } from 'viem'
798
- * import { tempo } from 'tempo.ts/chains'
799
- * import { Actions } from 'tempo.ts/viem'
798
+ * import { tempo } from 'viem/chains'
799
+ * import { Actions } from 'viem/tempo'
800
800
  * import { privateKeyToAccount } from 'viem/accounts'
801
801
  *
802
802
  * const client = createClient({
@@ -865,8 +865,8 @@ export namespace changeTransferPolicySync {
865
865
  * @example
866
866
  * ```ts
867
867
  * import { createClient, http } from 'viem'
868
- * import { tempo } from 'tempo.ts/chains'
869
- * import { Actions } from 'tempo.ts/viem'
868
+ * import { tempo } from 'viem/chains'
869
+ * import { Actions } from 'viem/tempo'
870
870
  * import { privateKeyToAccount } from 'viem/accounts'
871
871
  *
872
872
  * const client = createClient({
@@ -969,8 +969,8 @@ export namespace create {
969
969
  * @example
970
970
  * ```ts
971
971
  * import { createClient, http, walletActions } from 'viem'
972
- * import { tempo } from 'tempo.ts/chains'
973
- * import { Actions } from 'tempo.ts/viem'
972
+ * import { tempo } from 'viem/chains'
973
+ * import { Actions } from 'viem/tempo'
974
974
  *
975
975
  * const client = createClient({
976
976
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1040,8 +1040,8 @@ export namespace create {
1040
1040
  * @example
1041
1041
  * ```ts
1042
1042
  * import { createClient, http } from 'viem'
1043
- * import { tempo } from 'tempo.ts/chains'
1044
- * import { Actions } from 'tempo.ts/viem'
1043
+ * import { tempo } from 'viem/chains'
1044
+ * import { Actions } from 'viem/tempo'
1045
1045
  * import { privateKeyToAccount } from 'viem/accounts'
1046
1046
  *
1047
1047
  * const client = createClient({
@@ -1115,8 +1115,8 @@ export namespace createSync {
1115
1115
  * @example
1116
1116
  * ```ts
1117
1117
  * import { createClient, http } from 'viem'
1118
- * import { tempo } from 'tempo.ts/chains'
1119
- * import { Actions } from 'tempo.ts/viem'
1118
+ * import { tempo } from 'viem/chains'
1119
+ * import { Actions } from 'viem/tempo'
1120
1120
  * import { privateKeyToAccount } from 'viem/accounts'
1121
1121
  *
1122
1122
  * const client = createClient({
@@ -1193,8 +1193,8 @@ export namespace getAllowance {
1193
1193
  * @example
1194
1194
  * ```ts
1195
1195
  * import { createClient, http } from 'viem'
1196
- * import { tempo } from 'tempo.ts/chains'
1197
- * import { Actions } from 'tempo.ts/viem'
1196
+ * import { tempo } from 'viem/chains'
1197
+ * import { Actions } from 'viem/tempo'
1198
1198
  * import { privateKeyToAccount } from 'viem/accounts'
1199
1199
  *
1200
1200
  * const client = createClient({
@@ -1269,8 +1269,8 @@ export namespace getBalance {
1269
1269
  * @example
1270
1270
  * ```ts
1271
1271
  * import { createClient, http } from 'viem'
1272
- * import { tempo } from 'tempo.ts/chains'
1273
- * import { Actions } from 'tempo.ts/viem'
1272
+ * import { tempo } from 'viem/chains'
1273
+ * import { Actions } from 'viem/tempo'
1274
1274
  * import { privateKeyToAccount } from 'viem/accounts'
1275
1275
  *
1276
1276
  * const client = createClient({
@@ -1473,8 +1473,8 @@ export declare namespace getMetadata {
1473
1473
  * @example
1474
1474
  * ```ts
1475
1475
  * import { createClient, http } from 'viem'
1476
- * import { tempo } from 'tempo.ts/chains'
1477
- * import { Actions } from 'tempo.ts/viem'
1476
+ * import { tempo } from 'viem/chains'
1477
+ * import { Actions } from 'viem/tempo'
1478
1478
  *
1479
1479
  * const client = createClient({
1480
1480
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1540,8 +1540,8 @@ export namespace getRoleAdmin {
1540
1540
  * @example
1541
1541
  * ```ts
1542
1542
  * import { createClient, http } from 'viem'
1543
- * import { tempo } from 'tempo.ts/chains'
1544
- * import { Actions } from 'tempo.ts/viem'
1543
+ * import { tempo } from 'viem/chains'
1544
+ * import { Actions } from 'viem/tempo'
1545
1545
  *
1546
1546
  * const client = createClient({
1547
1547
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1618,8 +1618,8 @@ export namespace hasRole {
1618
1618
  * @example
1619
1619
  * ```ts
1620
1620
  * import { createClient, http } from 'viem'
1621
- * import { tempo } from 'tempo.ts/chains'
1622
- * import { Actions } from 'tempo.ts/viem'
1621
+ * import { tempo } from 'viem/chains'
1622
+ * import { Actions } from 'viem/tempo'
1623
1623
  * import { privateKeyToAccount } from 'viem/accounts'
1624
1624
  *
1625
1625
  * const client = createClient({
@@ -1706,8 +1706,8 @@ export namespace grantRoles {
1706
1706
  * @example
1707
1707
  * ```ts
1708
1708
  * import { createClient, http, walletActions } from 'viem'
1709
- * import { tempo } from 'tempo.ts/chains'
1710
- * import { Actions } from 'tempo.ts/viem'
1709
+ * import { tempo } from 'viem/chains'
1710
+ * import { Actions } from 'viem/tempo'
1711
1711
  *
1712
1712
  * const client = createClient({
1713
1713
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1763,8 +1763,8 @@ export namespace grantRoles {
1763
1763
  * @example
1764
1764
  * ```ts
1765
1765
  * import { createClient, http } from 'viem'
1766
- * import { tempo } from 'tempo.ts/chains'
1767
- * import { Actions } from 'tempo.ts/viem'
1766
+ * import { tempo } from 'viem/chains'
1767
+ * import { Actions } from 'viem/tempo'
1768
1768
  * import { privateKeyToAccount } from 'viem/accounts'
1769
1769
  *
1770
1770
  * const client = createClient({
@@ -1831,8 +1831,8 @@ export namespace grantRolesSync {
1831
1831
  * @example
1832
1832
  * ```ts
1833
1833
  * import { createClient, http } from 'viem'
1834
- * import { tempo } from 'tempo.ts/chains'
1835
- * import { Actions } from 'tempo.ts/viem'
1834
+ * import { tempo } from 'viem/chains'
1835
+ * import { Actions } from 'viem/tempo'
1836
1836
  * import { privateKeyToAccount } from 'viem/accounts'
1837
1837
  *
1838
1838
  * const client = createClient({
@@ -1912,8 +1912,8 @@ export namespace mint {
1912
1912
  * @example
1913
1913
  * ```ts
1914
1914
  * import { createClient, http, walletActions } from 'viem'
1915
- * import { tempo } from 'tempo.ts/chains'
1916
- * import { Actions } from 'tempo.ts/viem'
1915
+ * import { tempo } from 'viem/chains'
1916
+ * import { Actions } from 'viem/tempo'
1917
1917
  *
1918
1918
  * const client = createClient({
1919
1919
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1975,8 +1975,8 @@ export namespace mint {
1975
1975
  * @example
1976
1976
  * ```ts
1977
1977
  * import { createClient, http } from 'viem'
1978
- * import { tempo } from 'tempo.ts/chains'
1979
- * import { Actions } from 'tempo.ts/viem'
1978
+ * import { tempo } from 'viem/chains'
1979
+ * import { Actions } from 'viem/tempo'
1980
1980
  * import { privateKeyToAccount } from 'viem/accounts'
1981
1981
  *
1982
1982
  * const client = createClient({
@@ -2046,8 +2046,8 @@ export namespace mintSync {
2046
2046
  * @example
2047
2047
  * ```ts
2048
2048
  * import { createClient, http } from 'viem'
2049
- * import { tempo } from 'tempo.ts/chains'
2050
- * import { Actions } from 'tempo.ts/viem'
2049
+ * import { tempo } from 'viem/chains'
2050
+ * import { Actions } from 'viem/tempo'
2051
2051
  * import { privateKeyToAccount } from 'viem/accounts'
2052
2052
  *
2053
2053
  * const client = createClient({
@@ -2120,8 +2120,8 @@ export namespace pause {
2120
2120
  * @example
2121
2121
  * ```ts
2122
2122
  * import { createClient, http, walletActions } from 'viem'
2123
- * import { tempo } from 'tempo.ts/chains'
2124
- * import { Actions } from 'tempo.ts/viem'
2123
+ * import { tempo } from 'viem/chains'
2124
+ * import { Actions } from 'viem/tempo'
2125
2125
  *
2126
2126
  * const client = createClient({
2127
2127
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2173,8 +2173,8 @@ export namespace pause {
2173
2173
  * @example
2174
2174
  * ```ts
2175
2175
  * import { createClient, http } from 'viem'
2176
- * import { tempo } from 'tempo.ts/chains'
2177
- * import { Actions } from 'tempo.ts/viem'
2176
+ * import { tempo } from 'viem/chains'
2177
+ * import { Actions } from 'viem/tempo'
2178
2178
  * import { privateKeyToAccount } from 'viem/accounts'
2179
2179
  *
2180
2180
  * const client = createClient({
@@ -2237,8 +2237,8 @@ export namespace pauseSync {
2237
2237
  * @example
2238
2238
  * ```ts
2239
2239
  * import { createClient, http } from 'viem'
2240
- * import { tempo } from 'tempo.ts/chains'
2241
- * import { Actions } from 'tempo.ts/viem'
2240
+ * import { tempo } from 'viem/chains'
2241
+ * import { Actions } from 'viem/tempo'
2242
2242
  * import { privateKeyToAccount } from 'viem/accounts'
2243
2243
  *
2244
2244
  * const client = createClient({
@@ -2322,8 +2322,8 @@ export namespace renounceRoles {
2322
2322
  * @example
2323
2323
  * ```ts
2324
2324
  * import { createClient, http, walletActions } from 'viem'
2325
- * import { tempo } from 'tempo.ts/chains'
2326
- * import { Actions } from 'tempo.ts/viem'
2325
+ * import { tempo } from 'viem/chains'
2326
+ * import { Actions } from 'viem/tempo'
2327
2327
  *
2328
2328
  * const client = createClient({
2329
2329
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2378,8 +2378,8 @@ export namespace renounceRoles {
2378
2378
  * @example
2379
2379
  * ```ts
2380
2380
  * import { createClient, http } from 'viem'
2381
- * import { tempo } from 'tempo.ts/chains'
2382
- * import { Actions } from 'tempo.ts/viem'
2381
+ * import { tempo } from 'viem/chains'
2382
+ * import { Actions } from 'viem/tempo'
2383
2383
  * import { privateKeyToAccount } from 'viem/accounts'
2384
2384
  *
2385
2385
  * const client = createClient({
@@ -2445,8 +2445,8 @@ export namespace renounceRolesSync {
2445
2445
  * @example
2446
2446
  * ```ts
2447
2447
  * import { createClient, http } from 'viem'
2448
- * import { tempo } from 'tempo.ts/chains'
2449
- * import { Actions } from 'tempo.ts/viem'
2448
+ * import { tempo } from 'viem/chains'
2449
+ * import { Actions } from 'viem/tempo'
2450
2450
  * import { privateKeyToAccount } from 'viem/accounts'
2451
2451
  *
2452
2452
  * const client = createClient({
@@ -2533,8 +2533,8 @@ export namespace revokeRoles {
2533
2533
  * @example
2534
2534
  * ```ts
2535
2535
  * import { createClient, http, walletActions } from 'viem'
2536
- * import { tempo } from 'tempo.ts/chains'
2537
- * import { Actions } from 'tempo.ts/viem'
2536
+ * import { tempo } from 'viem/chains'
2537
+ * import { Actions } from 'viem/tempo'
2538
2538
  *
2539
2539
  * const client = createClient({
2540
2540
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2590,8 +2590,8 @@ export namespace revokeRoles {
2590
2590
  * @example
2591
2591
  * ```ts
2592
2592
  * import { createClient, http } from 'viem'
2593
- * import { tempo } from 'tempo.ts/chains'
2594
- * import { Actions } from 'tempo.ts/viem'
2593
+ * import { tempo } from 'viem/chains'
2594
+ * import { Actions } from 'viem/tempo'
2595
2595
  * import { privateKeyToAccount } from 'viem/accounts'
2596
2596
  *
2597
2597
  * const client = createClient({
@@ -2658,8 +2658,8 @@ export namespace revokeRolesSync {
2658
2658
  * @example
2659
2659
  * ```ts
2660
2660
  * import { createClient, http } from 'viem'
2661
- * import { tempo } from 'tempo.ts/chains'
2662
- * import { Actions } from 'tempo.ts/viem'
2661
+ * import { tempo } from 'viem/chains'
2662
+ * import { Actions } from 'viem/tempo'
2663
2663
  * import { privateKeyToAccount } from 'viem/accounts'
2664
2664
  *
2665
2665
  * const client = createClient({
@@ -2735,8 +2735,8 @@ export namespace setSupplyCap {
2735
2735
  * @example
2736
2736
  * ```ts
2737
2737
  * import { createClient, http, walletActions } from 'viem'
2738
- * import { tempo } from 'tempo.ts/chains'
2739
- * import { Actions } from 'tempo.ts/viem'
2738
+ * import { tempo } from 'viem/chains'
2739
+ * import { Actions } from 'viem/tempo'
2740
2740
  *
2741
2741
  * const client = createClient({
2742
2742
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2789,8 +2789,8 @@ export namespace setSupplyCap {
2789
2789
  * @example
2790
2790
  * ```ts
2791
2791
  * import { createClient, http } from 'viem'
2792
- * import { tempo } from 'tempo.ts/chains'
2793
- * import { Actions } from 'tempo.ts/viem'
2792
+ * import { tempo } from 'viem/chains'
2793
+ * import { Actions } from 'viem/tempo'
2794
2794
  * import { privateKeyToAccount } from 'viem/accounts'
2795
2795
  *
2796
2796
  * const client = createClient({
@@ -2854,8 +2854,8 @@ export namespace setSupplyCapSync {
2854
2854
  * @example
2855
2855
  * ```ts
2856
2856
  * import { createClient, http } from 'viem'
2857
- * import { tempo } from 'tempo.ts/chains'
2858
- * import { Actions } from 'tempo.ts/viem'
2857
+ * import { tempo } from 'viem/chains'
2858
+ * import { Actions } from 'viem/tempo'
2859
2859
  * import { privateKeyToAccount } from 'viem/accounts'
2860
2860
  *
2861
2861
  * const client = createClient({
@@ -2934,8 +2934,8 @@ export namespace setRoleAdmin {
2934
2934
  * @example
2935
2935
  * ```ts
2936
2936
  * import { createClient, http, walletActions } from 'viem'
2937
- * import { tempo } from 'tempo.ts/chains'
2938
- * import { Actions } from 'tempo.ts/viem'
2937
+ * import { tempo } from 'viem/chains'
2938
+ * import { Actions } from 'viem/tempo'
2939
2939
  *
2940
2940
  * const client = createClient({
2941
2941
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2991,8 +2991,8 @@ export namespace setRoleAdmin {
2991
2991
  * @example
2992
2992
  * ```ts
2993
2993
  * import { createClient, http } from 'viem'
2994
- * import { tempo } from 'tempo.ts/chains'
2995
- * import { Actions } from 'tempo.ts/viem'
2994
+ * import { tempo } from 'viem/chains'
2995
+ * import { Actions } from 'viem/tempo'
2996
2996
  * import { privateKeyToAccount } from 'viem/accounts'
2997
2997
  *
2998
2998
  * const client = createClient({
@@ -3057,8 +3057,8 @@ export namespace setRoleAdminSync {
3057
3057
  * @example
3058
3058
  * ```ts
3059
3059
  * import { createClient, http } from 'viem'
3060
- * import { tempo } from 'tempo.ts/chains'
3061
- * import { Actions } from 'tempo.ts/viem'
3060
+ * import { tempo } from 'viem/chains'
3061
+ * import { Actions } from 'viem/tempo'
3062
3062
  * import { privateKeyToAccount } from 'viem/accounts'
3063
3063
  *
3064
3064
  * const client = createClient({
@@ -3140,8 +3140,8 @@ export namespace transfer {
3140
3140
  * @example
3141
3141
  * ```ts
3142
3142
  * import { createClient, http, walletActions } from 'viem'
3143
- * import { tempo } from 'tempo.ts/chains'
3144
- * import { Actions } from 'tempo.ts/viem'
3143
+ * import { tempo } from 'viem/chains'
3144
+ * import { Actions } from 'viem/tempo'
3145
3145
  *
3146
3146
  * const client = createClient({
3147
3147
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3215,8 +3215,8 @@ export namespace transfer {
3215
3215
  * @example
3216
3216
  * ```ts
3217
3217
  * import { createClient, http } from 'viem'
3218
- * import { tempo } from 'tempo.ts/chains'
3219
- * import { Actions } from 'tempo.ts/viem'
3218
+ * import { tempo } from 'viem/chains'
3219
+ * import { Actions } from 'viem/tempo'
3220
3220
  * import { privateKeyToAccount } from 'viem/accounts'
3221
3221
  *
3222
3222
  * const client = createClient({
@@ -3280,8 +3280,8 @@ export namespace transferSync {
3280
3280
  * @example
3281
3281
  * ```ts
3282
3282
  * import { createClient, http } from 'viem'
3283
- * import { tempo } from 'tempo.ts/chains'
3284
- * import { Actions } from 'tempo.ts/viem'
3283
+ * import { tempo } from 'viem/chains'
3284
+ * import { Actions } from 'viem/tempo'
3285
3285
  * import { privateKeyToAccount } from 'viem/accounts'
3286
3286
  *
3287
3287
  * const client = createClient({
@@ -3354,8 +3354,8 @@ export namespace unpause {
3354
3354
  * @example
3355
3355
  * ```ts
3356
3356
  * import { createClient, http, walletActions } from 'viem'
3357
- * import { tempo } from 'tempo.ts/chains'
3358
- * import { Actions } from 'tempo.ts/viem'
3357
+ * import { tempo } from 'viem/chains'
3358
+ * import { Actions } from 'viem/tempo'
3359
3359
  *
3360
3360
  * const client = createClient({
3361
3361
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3407,8 +3407,8 @@ export namespace unpause {
3407
3407
  * @example
3408
3408
  * ```ts
3409
3409
  * import { createClient, http } from 'viem'
3410
- * import { tempo } from 'tempo.ts/chains'
3411
- * import { Actions } from 'tempo.ts/viem'
3410
+ * import { tempo } from 'viem/chains'
3411
+ * import { Actions } from 'viem/tempo'
3412
3412
  * import { privateKeyToAccount } from 'viem/accounts'
3413
3413
  *
3414
3414
  * const client = createClient({
@@ -3471,8 +3471,8 @@ export namespace unpauseSync {
3471
3471
  * @example
3472
3472
  * ```ts
3473
3473
  * import { createClient, http } from 'viem'
3474
- * import { tempo } from 'tempo.ts/chains'
3475
- * import { Actions } from 'tempo.ts/viem'
3474
+ * import { tempo } from 'viem/chains'
3475
+ * import { Actions } from 'viem/tempo'
3476
3476
  * import { privateKeyToAccount } from 'viem/accounts'
3477
3477
  *
3478
3478
  * const client = createClient({
@@ -3548,8 +3548,8 @@ export namespace prepareUpdateQuoteToken {
3548
3548
  * @example
3549
3549
  * ```ts
3550
3550
  * import { createClient, http, walletActions } from 'viem'
3551
- * import { tempo } from 'tempo.ts/chains'
3552
- * import { Actions } from 'tempo.ts/viem'
3551
+ * import { tempo } from 'viem/chains'
3552
+ * import { Actions } from 'viem/tempo'
3553
3553
  *
3554
3554
  * const client = createClient({
3555
3555
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3602,8 +3602,8 @@ export namespace prepareUpdateQuoteToken {
3602
3602
  * @example
3603
3603
  * ```ts
3604
3604
  * import { createClient, http } from 'viem'
3605
- * import { tempo } from 'tempo.ts/chains'
3606
- * import { Actions } from 'tempo.ts/viem'
3605
+ * import { tempo } from 'viem/chains'
3606
+ * import { Actions } from 'viem/tempo'
3607
3607
  * import { privateKeyToAccount } from 'viem/accounts'
3608
3608
  *
3609
3609
  * const client = createClient({
@@ -3672,8 +3672,8 @@ export namespace prepareUpdateQuoteTokenSync {
3672
3672
  * @example
3673
3673
  * ```ts
3674
3674
  * import { createClient, http } from 'viem'
3675
- * import { tempo } from 'tempo.ts/chains'
3676
- * import { Actions } from 'tempo.ts/viem'
3675
+ * import { tempo } from 'viem/chains'
3676
+ * import { Actions } from 'viem/tempo'
3677
3677
  * import { privateKeyToAccount } from 'viem/accounts'
3678
3678
  *
3679
3679
  * const client = createClient({
@@ -3746,8 +3746,8 @@ export namespace updateQuoteToken {
3746
3746
  * @example
3747
3747
  * ```ts
3748
3748
  * import { createClient, http, walletActions } from 'viem'
3749
- * import { tempo } from 'tempo.ts/chains'
3750
- * import { Actions } from 'tempo.ts/viem'
3749
+ * import { tempo } from 'viem/chains'
3750
+ * import { Actions } from 'viem/tempo'
3751
3751
  *
3752
3752
  * const client = createClient({
3753
3753
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3799,8 +3799,8 @@ export namespace updateQuoteToken {
3799
3799
  * @example
3800
3800
  * ```ts
3801
3801
  * import { createClient, http } from 'viem'
3802
- * import { tempo } from 'tempo.ts/chains'
3803
- * import { Actions } from 'tempo.ts/viem'
3802
+ * import { tempo } from 'viem/chains'
3803
+ * import { Actions } from 'viem/tempo'
3804
3804
  * import { privateKeyToAccount } from 'viem/accounts'
3805
3805
  *
3806
3806
  * const client = createClient({
@@ -3868,8 +3868,8 @@ export namespace updateQuoteTokenSync {
3868
3868
  * @example
3869
3869
  * ```ts
3870
3870
  * import { createClient, http } from 'viem'
3871
- * import { tempo } from 'tempo.ts/chains'
3872
- * import { Actions } from 'tempo.ts/viem'
3871
+ * import { tempo } from 'viem/chains'
3872
+ * import { Actions } from 'viem/tempo'
3873
3873
  *
3874
3874
  * const client = createClient({
3875
3875
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3939,8 +3939,8 @@ export declare namespace watchApprove {
3939
3939
  * @example
3940
3940
  * ```ts
3941
3941
  * import { createClient, http } from 'viem'
3942
- * import { tempo } from 'tempo.ts/chains'
3943
- * import { Actions } from 'tempo.ts/viem'
3942
+ * import { tempo } from 'viem/chains'
3943
+ * import { Actions } from 'viem/tempo'
3944
3944
  *
3945
3945
  * const client = createClient({
3946
3946
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4007,8 +4007,8 @@ export declare namespace watchBurn {
4007
4007
  * @example
4008
4008
  * ```ts
4009
4009
  * import { createClient, http } from 'viem'
4010
- * import { tempo } from 'tempo.ts/chains'
4011
- * import { Actions } from 'tempo.ts/viem'
4010
+ * import { tempo } from 'viem/chains'
4011
+ * import { Actions } from 'viem/tempo'
4012
4012
  *
4013
4013
  * const client = createClient({
4014
4014
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4080,8 +4080,8 @@ export declare namespace watchCreate {
4080
4080
  * @example
4081
4081
  * ```ts
4082
4082
  * import { createClient, http } from 'viem'
4083
- * import { tempo } from 'tempo.ts/chains'
4084
- * import { Actions } from 'tempo.ts/viem'
4083
+ * import { tempo } from 'viem/chains'
4084
+ * import { Actions } from 'viem/tempo'
4085
4085
  *
4086
4086
  * const client = createClient({
4087
4087
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4150,8 +4150,8 @@ export declare namespace watchMint {
4150
4150
  * @example
4151
4151
  * ```ts
4152
4152
  * import { createClient, http } from 'viem'
4153
- * import { tempo } from 'tempo.ts/chains'
4154
- * import { Actions } from 'tempo.ts/viem'
4153
+ * import { tempo } from 'viem/chains'
4154
+ * import { Actions } from 'viem/tempo'
4155
4155
  *
4156
4156
  * const client = createClient({
4157
4157
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4221,8 +4221,8 @@ export declare namespace watchAdminRole {
4221
4221
  * @example
4222
4222
  * ```ts
4223
4223
  * import { createClient, http } from 'viem'
4224
- * import { tempo } from 'tempo.ts/chains'
4225
- * import { Actions } from 'tempo.ts/viem'
4224
+ * import { tempo } from 'viem/chains'
4225
+ * import { Actions } from 'viem/tempo'
4226
4226
  *
4227
4227
  * const client = createClient({
4228
4228
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4299,8 +4299,8 @@ export declare namespace watchRole {
4299
4299
  * @example
4300
4300
  * ```ts
4301
4301
  * import { createClient, http } from 'viem'
4302
- * import { tempo } from 'tempo.ts/chains'
4303
- * import { Actions } from 'tempo.ts/viem'
4302
+ * import { tempo } from 'viem/chains'
4303
+ * import { Actions } from 'viem/tempo'
4304
4304
  *
4305
4305
  * const client = createClient({
4306
4306
  * account: privateKeyToAccount('0x...'),
@@ -4371,8 +4371,8 @@ export declare namespace watchTransfer {
4371
4371
  * @example
4372
4372
  * ```ts
4373
4373
  * import { createClient, http } from 'viem'
4374
- * import { tempo } from 'tempo.ts/chains'
4375
- * import { Actions } from 'tempo.ts/viem'
4374
+ * import { tempo } from 'viem/chains'
4375
+ * import { Actions } from 'viem/tempo'
4376
4376
  *
4377
4377
  * const client = createClient({
4378
4378
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })