viem 2.44.2 → 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 (101) hide show
  1. package/CHANGELOG.md +16 -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/errors/version.js +1 -1
  7. package/_cjs/tempo/Abis.js +2 -2
  8. package/_cjs/tempo/Abis.js.map +1 -1
  9. package/_cjs/tempo/Addresses.js +2 -1
  10. package/_cjs/tempo/Addresses.js.map +1 -1
  11. package/_cjs/tempo/Decorator.js +19 -0
  12. package/_cjs/tempo/Decorator.js.map +1 -1
  13. package/_cjs/tempo/Transport.js +1 -1
  14. package/_cjs/tempo/Transport.js.map +1 -1
  15. package/_cjs/tempo/actions/fee.js +91 -0
  16. package/_cjs/tempo/actions/fee.js.map +1 -1
  17. package/_cjs/tempo/actions/index.js +2 -1
  18. package/_cjs/tempo/actions/index.js.map +1 -1
  19. package/_cjs/tempo/actions/validator.js +308 -0
  20. package/_cjs/tempo/actions/validator.js.map +1 -0
  21. package/_cjs/utils/abi/decodeEventLog.js +29 -12
  22. package/_cjs/utils/abi/decodeEventLog.js.map +1 -1
  23. package/_esm/actions/wallet/sendTransaction.js +6 -5
  24. package/_esm/actions/wallet/sendTransaction.js.map +1 -1
  25. package/_esm/actions/wallet/sendTransactionSync.js +6 -5
  26. package/_esm/actions/wallet/sendTransactionSync.js.map +1 -1
  27. package/_esm/errors/version.js +1 -1
  28. package/_esm/tempo/Abis.js +1 -1
  29. package/_esm/tempo/Abis.js.map +1 -1
  30. package/_esm/tempo/Account.js +6 -6
  31. package/_esm/tempo/Addresses.js +1 -0
  32. package/_esm/tempo/Addresses.js.map +1 -1
  33. package/_esm/tempo/Decorator.js +19 -0
  34. package/_esm/tempo/Decorator.js.map +1 -1
  35. package/_esm/tempo/Transport.js +1 -1
  36. package/_esm/tempo/Transport.js.map +1 -1
  37. package/_esm/tempo/WebAuthnP256.js +2 -2
  38. package/_esm/tempo/actions/amm.js +28 -28
  39. package/_esm/tempo/actions/dex.js +68 -68
  40. package/_esm/tempo/actions/faucet.js +4 -4
  41. package/_esm/tempo/actions/fee.js +236 -10
  42. package/_esm/tempo/actions/fee.js.map +1 -1
  43. package/_esm/tempo/actions/index.js +1 -0
  44. package/_esm/tempo/actions/index.js.map +1 -1
  45. package/_esm/tempo/actions/nonce.js +4 -4
  46. package/_esm/tempo/actions/policy.js +36 -36
  47. package/_esm/tempo/actions/reward.js +28 -28
  48. package/_esm/tempo/actions/token.js +122 -122
  49. package/_esm/tempo/actions/validator.js +1017 -0
  50. package/_esm/tempo/actions/validator.js.map +1 -0
  51. package/_esm/utils/abi/decodeEventLog.js +34 -13
  52. package/_esm/utils/abi/decodeEventLog.js.map +1 -1
  53. package/_types/actions/wallet/sendTransaction.d.ts +4 -1
  54. package/_types/actions/wallet/sendTransaction.d.ts.map +1 -1
  55. package/_types/actions/wallet/sendTransactionSync.d.ts +2 -0
  56. package/_types/actions/wallet/sendTransactionSync.d.ts.map +1 -1
  57. package/_types/errors/version.d.ts +1 -1
  58. package/_types/tempo/Abis.d.ts +1 -1
  59. package/_types/tempo/Abis.d.ts.map +1 -1
  60. package/_types/tempo/Account.d.ts +6 -6
  61. package/_types/tempo/Addresses.d.ts +1 -0
  62. package/_types/tempo/Addresses.d.ts.map +1 -1
  63. package/_types/tempo/Decorator.d.ts +607 -208
  64. package/_types/tempo/Decorator.d.ts.map +1 -1
  65. package/_types/tempo/Transport.d.ts.map +1 -1
  66. package/_types/tempo/WebAuthnP256.d.ts +2 -2
  67. package/_types/tempo/actions/amm.d.ts +28 -28
  68. package/_types/tempo/actions/dex.d.ts +68 -68
  69. package/_types/tempo/actions/faucet.d.ts +4 -4
  70. package/_types/tempo/actions/fee.d.ts +380 -10
  71. package/_types/tempo/actions/fee.d.ts.map +1 -1
  72. package/_types/tempo/actions/index.d.ts +1 -0
  73. package/_types/tempo/actions/index.d.ts.map +1 -1
  74. package/_types/tempo/actions/nonce.d.ts +4 -4
  75. package/_types/tempo/actions/policy.d.ts +36 -36
  76. package/_types/tempo/actions/reward.d.ts +28 -28
  77. package/_types/tempo/actions/token.d.ts +122 -122
  78. package/_types/tempo/actions/validator.d.ts +1174 -0
  79. package/_types/tempo/actions/validator.d.ts.map +1 -0
  80. package/_types/utils/abi/decodeEventLog.d.ts.map +1 -1
  81. package/actions/wallet/sendTransaction.ts +10 -5
  82. package/actions/wallet/sendTransactionSync.ts +8 -4
  83. package/errors/version.ts +1 -1
  84. package/package.json +1 -1
  85. package/tempo/Abis.ts +1 -1
  86. package/tempo/Account.ts +6 -6
  87. package/tempo/Addresses.ts +1 -0
  88. package/tempo/Decorator.ts +672 -208
  89. package/tempo/Transport.ts +4 -1
  90. package/tempo/WebAuthnP256.ts +2 -2
  91. package/tempo/actions/amm.ts +28 -28
  92. package/tempo/actions/dex.ts +68 -68
  93. package/tempo/actions/faucet.ts +4 -4
  94. package/tempo/actions/fee.ts +346 -10
  95. package/tempo/actions/index.ts +1 -0
  96. package/tempo/actions/nonce.ts +4 -4
  97. package/tempo/actions/policy.ts +36 -36
  98. package/tempo/actions/reward.ts +28 -28
  99. package/tempo/actions/token.ts +122 -122
  100. package/tempo/actions/validator.ts +1417 -0
  101. package/utils/abi/decodeEventLog.ts +38 -14
@@ -25,8 +25,8 @@ import type { TransactionReceipt } from '../Transaction.js';
25
25
  * @example
26
26
  * ```ts
27
27
  * import { createClient, http } from 'viem'
28
- * import { tempo } from 'tempo.ts/chains'
29
- * import { Actions } from 'tempo.ts/viem'
28
+ * import { tempo } from 'viem/chains'
29
+ * import { Actions } from 'viem/tempo'
30
30
  * import { privateKeyToAccount } from 'viem/accounts'
31
31
  *
32
32
  * const client = createClient({
@@ -71,8 +71,8 @@ export declare namespace approve {
71
71
  * @example
72
72
  * ```ts
73
73
  * import { createClient, http, walletActions } from 'viem'
74
- * import { tempo } from 'tempo.ts/chains'
75
- * import { Actions } from 'tempo.ts/viem'
74
+ * import { tempo } from 'viem/chains'
75
+ * import { Actions } from 'viem/tempo'
76
76
  *
77
77
  * const client = createClient({
78
78
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -880,8 +880,8 @@ export declare namespace approve {
880
880
  * @example
881
881
  * ```ts
882
882
  * import { createClient, http } from 'viem'
883
- * import { tempo } from 'tempo.ts/chains'
884
- * import { Actions } from 'tempo.ts/viem'
883
+ * import { tempo } from 'viem/chains'
884
+ * import { Actions } from 'viem/tempo'
885
885
  * import { privateKeyToAccount } from 'viem/accounts'
886
886
  *
887
887
  * const client = createClient({
@@ -919,8 +919,8 @@ export declare namespace approveSync {
919
919
  * @example
920
920
  * ```ts
921
921
  * import { createClient, http } from 'viem'
922
- * import { tempo } from 'tempo.ts/chains'
923
- * import { Actions } from 'tempo.ts/viem'
922
+ * import { tempo } from 'viem/chains'
923
+ * import { Actions } from 'viem/tempo'
924
924
  * import { privateKeyToAccount } from 'viem/accounts'
925
925
  *
926
926
  * const client = createClient({
@@ -966,8 +966,8 @@ export declare namespace burnBlocked {
966
966
  * @example
967
967
  * ```ts
968
968
  * import { createClient, http, walletActions } from 'viem'
969
- * import { tempo } from 'tempo.ts/chains'
970
- * import { Actions } from 'tempo.ts/viem'
969
+ * import { tempo } from 'viem/chains'
970
+ * import { Actions } from 'viem/tempo'
971
971
  *
972
972
  * const client = createClient({
973
973
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -1779,8 +1779,8 @@ export declare namespace burnBlocked {
1779
1779
  * @example
1780
1780
  * ```ts
1781
1781
  * import { createClient, http } from 'viem'
1782
- * import { tempo } from 'tempo.ts/chains'
1783
- * import { Actions } from 'tempo.ts/viem'
1782
+ * import { tempo } from 'viem/chains'
1783
+ * import { Actions } from 'viem/tempo'
1784
1784
  * import { privateKeyToAccount } from 'viem/accounts'
1785
1785
  *
1786
1786
  * const client = createClient({
@@ -1819,8 +1819,8 @@ export declare namespace burnBlockedSync {
1819
1819
  * @example
1820
1820
  * ```ts
1821
1821
  * import { createClient, http } from 'viem'
1822
- * import { tempo } from 'tempo.ts/chains'
1823
- * import { Actions } from 'tempo.ts/viem'
1822
+ * import { tempo } from 'viem/chains'
1823
+ * import { Actions } from 'viem/tempo'
1824
1824
  * import { privateKeyToAccount } from 'viem/accounts'
1825
1825
  *
1826
1826
  * const client = createClient({
@@ -1865,8 +1865,8 @@ export declare namespace burn {
1865
1865
  * @example
1866
1866
  * ```ts
1867
1867
  * import { createClient, http, walletActions } from 'viem'
1868
- * import { tempo } from 'tempo.ts/chains'
1869
- * import { Actions } from 'tempo.ts/viem'
1868
+ * import { tempo } from 'viem/chains'
1869
+ * import { Actions } from 'viem/tempo'
1870
1870
  *
1871
1871
  * const client = createClient({
1872
1872
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -2686,8 +2686,8 @@ export declare namespace burn {
2686
2686
  * @example
2687
2687
  * ```ts
2688
2688
  * import { createClient, http } from 'viem'
2689
- * import { tempo } from 'tempo.ts/chains'
2690
- * import { Actions } from 'tempo.ts/viem'
2689
+ * import { tempo } from 'viem/chains'
2690
+ * import { Actions } from 'viem/tempo'
2691
2691
  * import { privateKeyToAccount } from 'viem/accounts'
2692
2692
  *
2693
2693
  * const client = createClient({
@@ -2724,8 +2724,8 @@ export declare namespace burnSync {
2724
2724
  * @example
2725
2725
  * ```ts
2726
2726
  * import { createClient, http } from 'viem'
2727
- * import { tempo } from 'tempo.ts/chains'
2728
- * import { Actions } from 'tempo.ts/viem'
2727
+ * import { tempo } from 'viem/chains'
2728
+ * import { Actions } from 'viem/tempo'
2729
2729
  * import { privateKeyToAccount } from 'viem/accounts'
2730
2730
  *
2731
2731
  * const client = createClient({
@@ -2768,8 +2768,8 @@ export declare namespace changeTransferPolicy {
2768
2768
  * @example
2769
2769
  * ```ts
2770
2770
  * import { createClient, http, walletActions } from 'viem'
2771
- * import { tempo } from 'tempo.ts/chains'
2772
- * import { Actions } from 'tempo.ts/viem'
2771
+ * import { tempo } from 'viem/chains'
2772
+ * import { Actions } from 'viem/tempo'
2773
2773
  *
2774
2774
  * const client = createClient({
2775
2775
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3577,8 +3577,8 @@ export declare namespace changeTransferPolicy {
3577
3577
  * @example
3578
3578
  * ```ts
3579
3579
  * import { createClient, http } from 'viem'
3580
- * import { tempo } from 'tempo.ts/chains'
3581
- * import { Actions } from 'tempo.ts/viem'
3580
+ * import { tempo } from 'viem/chains'
3581
+ * import { Actions } from 'viem/tempo'
3582
3582
  * import { privateKeyToAccount } from 'viem/accounts'
3583
3583
  *
3584
3584
  * const client = createClient({
@@ -3615,8 +3615,8 @@ export declare namespace changeTransferPolicySync {
3615
3615
  * @example
3616
3616
  * ```ts
3617
3617
  * import { createClient, http } from 'viem'
3618
- * import { tempo } from 'tempo.ts/chains'
3619
- * import { Actions } from 'tempo.ts/viem'
3618
+ * import { tempo } from 'viem/chains'
3619
+ * import { Actions } from 'viem/tempo'
3620
3620
  * import { privateKeyToAccount } from 'viem/accounts'
3621
3621
  *
3622
3622
  * const client = createClient({
@@ -3672,8 +3672,8 @@ export declare namespace create {
3672
3672
  * @example
3673
3673
  * ```ts
3674
3674
  * import { createClient, http, walletActions } 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
  *
3678
3678
  * const client = createClient({
3679
3679
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -3842,8 +3842,8 @@ export declare namespace create {
3842
3842
  * @example
3843
3843
  * ```ts
3844
3844
  * import { createClient, http } from 'viem'
3845
- * import { tempo } from 'tempo.ts/chains'
3846
- * import { Actions } from 'tempo.ts/viem'
3845
+ * import { tempo } from 'viem/chains'
3846
+ * import { Actions } from 'viem/tempo'
3847
3847
  * import { privateKeyToAccount } from 'viem/accounts'
3848
3848
  *
3849
3849
  * const client = createClient({
@@ -3884,8 +3884,8 @@ export declare namespace createSync {
3884
3884
  * @example
3885
3885
  * ```ts
3886
3886
  * import { createClient, http } from 'viem'
3887
- * import { tempo } from 'tempo.ts/chains'
3888
- * import { Actions } from 'tempo.ts/viem'
3887
+ * import { tempo } from 'viem/chains'
3888
+ * import { Actions } from 'viem/tempo'
3889
3889
  * import { privateKeyToAccount } from 'viem/accounts'
3890
3890
  *
3891
3891
  * const client = createClient({
@@ -3953,8 +3953,8 @@ export declare namespace getAllowance {
3953
3953
  * @example
3954
3954
  * ```ts
3955
3955
  * import { createClient, http } from 'viem'
3956
- * import { tempo } from 'tempo.ts/chains'
3957
- * import { Actions } from 'tempo.ts/viem'
3956
+ * import { tempo } from 'viem/chains'
3957
+ * import { Actions } from 'viem/tempo'
3958
3958
  * import { privateKeyToAccount } from 'viem/accounts'
3959
3959
  *
3960
3960
  * const client = createClient({
@@ -4017,8 +4017,8 @@ export declare namespace getBalance {
4017
4017
  * @example
4018
4018
  * ```ts
4019
4019
  * import { createClient, http } from 'viem'
4020
- * import { tempo } from 'tempo.ts/chains'
4021
- * import { Actions } from 'tempo.ts/viem'
4020
+ * import { tempo } from 'viem/chains'
4021
+ * import { Actions } from 'viem/tempo'
4022
4022
  * import { privateKeyToAccount } from 'viem/accounts'
4023
4023
  *
4024
4024
  * const client = createClient({
@@ -4096,8 +4096,8 @@ export declare namespace getMetadata {
4096
4096
  * @example
4097
4097
  * ```ts
4098
4098
  * import { createClient, http } from 'viem'
4099
- * import { tempo } from 'tempo.ts/chains'
4100
- * import { Actions } from 'tempo.ts/viem'
4099
+ * import { tempo } from 'viem/chains'
4100
+ * import { Actions } from 'viem/tempo'
4101
4101
  *
4102
4102
  * const client = createClient({
4103
4103
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4159,8 +4159,8 @@ export declare namespace getRoleAdmin {
4159
4159
  * @example
4160
4160
  * ```ts
4161
4161
  * import { createClient, http } from 'viem'
4162
- * import { tempo } from 'tempo.ts/chains'
4163
- * import { Actions } from 'tempo.ts/viem'
4162
+ * import { tempo } from 'viem/chains'
4163
+ * import { Actions } from 'viem/tempo'
4164
4164
  *
4165
4165
  * const client = createClient({
4166
4166
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -4228,8 +4228,8 @@ export declare namespace hasRole {
4228
4228
  * @example
4229
4229
  * ```ts
4230
4230
  * import { createClient, http } from 'viem'
4231
- * import { tempo } from 'tempo.ts/chains'
4232
- * import { Actions } from 'tempo.ts/viem'
4231
+ * import { tempo } from 'viem/chains'
4232
+ * import { Actions } from 'viem/tempo'
4233
4233
  * import { privateKeyToAccount } from 'viem/accounts'
4234
4234
  *
4235
4235
  * const client = createClient({
@@ -4278,8 +4278,8 @@ export declare namespace grantRoles {
4278
4278
  * @example
4279
4279
  * ```ts
4280
4280
  * import { createClient, http, walletActions } from 'viem'
4281
- * import { tempo } from 'tempo.ts/chains'
4282
- * import { Actions } from 'tempo.ts/viem'
4281
+ * import { tempo } from 'viem/chains'
4282
+ * import { Actions } from 'viem/tempo'
4283
4283
  *
4284
4284
  * const client = createClient({
4285
4285
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -5091,8 +5091,8 @@ export declare namespace grantRoles {
5091
5091
  * @example
5092
5092
  * ```ts
5093
5093
  * import { createClient, http } from 'viem'
5094
- * import { tempo } from 'tempo.ts/chains'
5095
- * import { Actions } from 'tempo.ts/viem'
5094
+ * import { tempo } from 'viem/chains'
5095
+ * import { Actions } from 'viem/tempo'
5096
5096
  * import { privateKeyToAccount } from 'viem/accounts'
5097
5097
  *
5098
5098
  * const client = createClient({
@@ -5131,8 +5131,8 @@ export declare namespace grantRolesSync {
5131
5131
  * @example
5132
5132
  * ```ts
5133
5133
  * import { createClient, http } from 'viem'
5134
- * import { tempo } from 'tempo.ts/chains'
5135
- * import { Actions } from 'tempo.ts/viem'
5134
+ * import { tempo } from 'viem/chains'
5135
+ * import { Actions } from 'viem/tempo'
5136
5136
  * import { privateKeyToAccount } from 'viem/accounts'
5137
5137
  *
5138
5138
  * const client = createClient({
@@ -5180,8 +5180,8 @@ export declare namespace mint {
5180
5180
  * @example
5181
5181
  * ```ts
5182
5182
  * import { createClient, http, walletActions } from 'viem'
5183
- * import { tempo } from 'tempo.ts/chains'
5184
- * import { Actions } from 'tempo.ts/viem'
5183
+ * import { tempo } from 'viem/chains'
5184
+ * import { Actions } from 'viem/tempo'
5185
5185
  *
5186
5186
  * const client = createClient({
5187
5187
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -6008,8 +6008,8 @@ export declare namespace mint {
6008
6008
  * @example
6009
6009
  * ```ts
6010
6010
  * import { createClient, http } from 'viem'
6011
- * import { tempo } from 'tempo.ts/chains'
6012
- * import { Actions } from 'tempo.ts/viem'
6011
+ * import { tempo } from 'viem/chains'
6012
+ * import { Actions } from 'viem/tempo'
6013
6013
  * import { privateKeyToAccount } from 'viem/accounts'
6014
6014
  *
6015
6015
  * const client = createClient({
@@ -6047,8 +6047,8 @@ export declare namespace mintSync {
6047
6047
  * @example
6048
6048
  * ```ts
6049
6049
  * import { createClient, http } from 'viem'
6050
- * import { tempo } from 'tempo.ts/chains'
6051
- * import { Actions } from 'tempo.ts/viem'
6050
+ * import { tempo } from 'viem/chains'
6051
+ * import { Actions } from 'viem/tempo'
6052
6052
  * import { privateKeyToAccount } from 'viem/accounts'
6053
6053
  *
6054
6054
  * const client = createClient({
@@ -6088,8 +6088,8 @@ export declare namespace pause {
6088
6088
  * @example
6089
6089
  * ```ts
6090
6090
  * import { createClient, http, walletActions } from 'viem'
6091
- * import { tempo } from 'tempo.ts/chains'
6092
- * import { Actions } from 'tempo.ts/viem'
6091
+ * import { tempo } from 'viem/chains'
6092
+ * import { Actions } from 'viem/tempo'
6093
6093
  *
6094
6094
  * const client = createClient({
6095
6095
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -6893,8 +6893,8 @@ export declare namespace pause {
6893
6893
  * @example
6894
6894
  * ```ts
6895
6895
  * import { createClient, http } from 'viem'
6896
- * import { tempo } from 'tempo.ts/chains'
6897
- * import { Actions } from 'tempo.ts/viem'
6896
+ * import { tempo } from 'viem/chains'
6897
+ * import { Actions } from 'viem/tempo'
6898
6898
  * import { privateKeyToAccount } from 'viem/accounts'
6899
6899
  *
6900
6900
  * const client = createClient({
@@ -6930,8 +6930,8 @@ export declare namespace pauseSync {
6930
6930
  * @example
6931
6931
  * ```ts
6932
6932
  * import { createClient, http } from 'viem'
6933
- * import { tempo } from 'tempo.ts/chains'
6934
- * import { Actions } from 'tempo.ts/viem'
6933
+ * import { tempo } from 'viem/chains'
6934
+ * import { Actions } from 'viem/tempo'
6935
6935
  * import { privateKeyToAccount } from 'viem/accounts'
6936
6936
  *
6937
6937
  * const client = createClient({
@@ -6977,8 +6977,8 @@ export declare namespace renounceRoles {
6977
6977
  * @example
6978
6978
  * ```ts
6979
6979
  * import { createClient, http, walletActions } from 'viem'
6980
- * import { tempo } from 'tempo.ts/chains'
6981
- * import { Actions } from 'tempo.ts/viem'
6980
+ * import { tempo } from 'viem/chains'
6981
+ * import { Actions } from 'viem/tempo'
6982
6982
  *
6983
6983
  * const client = createClient({
6984
6984
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -7786,8 +7786,8 @@ export declare namespace renounceRoles {
7786
7786
  * @example
7787
7787
  * ```ts
7788
7788
  * import { createClient, http } from 'viem'
7789
- * import { tempo } from 'tempo.ts/chains'
7790
- * import { Actions } from 'tempo.ts/viem'
7789
+ * import { tempo } from 'viem/chains'
7790
+ * import { Actions } from 'viem/tempo'
7791
7791
  * import { privateKeyToAccount } from 'viem/accounts'
7792
7792
  *
7793
7793
  * const client = createClient({
@@ -7825,8 +7825,8 @@ export declare namespace renounceRolesSync {
7825
7825
  * @example
7826
7826
  * ```ts
7827
7827
  * import { createClient, http } from 'viem'
7828
- * import { tempo } from 'tempo.ts/chains'
7829
- * import { Actions } from 'tempo.ts/viem'
7828
+ * import { tempo } from 'viem/chains'
7829
+ * import { Actions } from 'viem/tempo'
7830
7830
  * import { privateKeyToAccount } from 'viem/accounts'
7831
7831
  *
7832
7832
  * const client = createClient({
@@ -7875,8 +7875,8 @@ export declare namespace revokeRoles {
7875
7875
  * @example
7876
7876
  * ```ts
7877
7877
  * import { createClient, http, walletActions } from 'viem'
7878
- * import { tempo } from 'tempo.ts/chains'
7879
- * import { Actions } from 'tempo.ts/viem'
7878
+ * import { tempo } from 'viem/chains'
7879
+ * import { Actions } from 'viem/tempo'
7880
7880
  *
7881
7881
  * const client = createClient({
7882
7882
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -8688,8 +8688,8 @@ export declare namespace revokeRoles {
8688
8688
  * @example
8689
8689
  * ```ts
8690
8690
  * import { createClient, http } from 'viem'
8691
- * import { tempo } from 'tempo.ts/chains'
8692
- * import { Actions } from 'tempo.ts/viem'
8691
+ * import { tempo } from 'viem/chains'
8692
+ * import { Actions } from 'viem/tempo'
8693
8693
  * import { privateKeyToAccount } from 'viem/accounts'
8694
8694
  *
8695
8695
  * const client = createClient({
@@ -8728,8 +8728,8 @@ export declare namespace revokeRolesSync {
8728
8728
  * @example
8729
8729
  * ```ts
8730
8730
  * import { createClient, http } from 'viem'
8731
- * import { tempo } from 'tempo.ts/chains'
8732
- * import { Actions } from 'tempo.ts/viem'
8731
+ * import { tempo } from 'viem/chains'
8732
+ * import { Actions } from 'viem/tempo'
8733
8733
  * import { privateKeyToAccount } from 'viem/accounts'
8734
8734
  *
8735
8735
  * const client = createClient({
@@ -8772,8 +8772,8 @@ export declare namespace setSupplyCap {
8772
8772
  * @example
8773
8773
  * ```ts
8774
8774
  * import { createClient, http, walletActions } from 'viem'
8775
- * import { tempo } from 'tempo.ts/chains'
8776
- * import { Actions } from 'tempo.ts/viem'
8775
+ * import { tempo } from 'viem/chains'
8776
+ * import { Actions } from 'viem/tempo'
8777
8777
  *
8778
8778
  * const client = createClient({
8779
8779
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -9581,8 +9581,8 @@ export declare namespace setSupplyCap {
9581
9581
  * @example
9582
9582
  * ```ts
9583
9583
  * import { createClient, http } from 'viem'
9584
- * import { tempo } from 'tempo.ts/chains'
9585
- * import { Actions } from 'tempo.ts/viem'
9584
+ * import { tempo } from 'viem/chains'
9585
+ * import { Actions } from 'viem/tempo'
9586
9586
  * import { privateKeyToAccount } from 'viem/accounts'
9587
9587
  *
9588
9588
  * const client = createClient({
@@ -9619,8 +9619,8 @@ export declare namespace setSupplyCapSync {
9619
9619
  * @example
9620
9620
  * ```ts
9621
9621
  * import { createClient, http } from 'viem'
9622
- * import { tempo } from 'tempo.ts/chains'
9623
- * import { Actions } from 'tempo.ts/viem'
9622
+ * import { tempo } from 'viem/chains'
9623
+ * import { Actions } from 'viem/tempo'
9624
9624
  * import { privateKeyToAccount } from 'viem/accounts'
9625
9625
  *
9626
9626
  * const client = createClient({
@@ -9666,8 +9666,8 @@ export declare namespace setRoleAdmin {
9666
9666
  * @example
9667
9667
  * ```ts
9668
9668
  * import { createClient, http, walletActions } from 'viem'
9669
- * import { tempo } from 'tempo.ts/chains'
9670
- * import { Actions } from 'tempo.ts/viem'
9669
+ * import { tempo } from 'viem/chains'
9670
+ * import { Actions } from 'viem/tempo'
9671
9671
  *
9672
9672
  * const client = createClient({
9673
9673
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -10479,8 +10479,8 @@ export declare namespace setRoleAdmin {
10479
10479
  * @example
10480
10480
  * ```ts
10481
10481
  * import { createClient, http } from 'viem'
10482
- * import { tempo } from 'tempo.ts/chains'
10483
- * import { Actions } from 'tempo.ts/viem'
10482
+ * import { tempo } from 'viem/chains'
10483
+ * import { Actions } from 'viem/tempo'
10484
10484
  * import { privateKeyToAccount } from 'viem/accounts'
10485
10485
  *
10486
10486
  * const client = createClient({
@@ -10518,8 +10518,8 @@ export declare namespace setRoleAdminSync {
10518
10518
  * @example
10519
10519
  * ```ts
10520
10520
  * import { createClient, http } from 'viem'
10521
- * import { tempo } from 'tempo.ts/chains'
10522
- * import { Actions } from 'tempo.ts/viem'
10521
+ * import { tempo } from 'viem/chains'
10522
+ * import { Actions } from 'viem/tempo'
10523
10523
  * import { privateKeyToAccount } from 'viem/accounts'
10524
10524
  *
10525
10525
  * const client = createClient({
@@ -10568,8 +10568,8 @@ export declare namespace transfer {
10568
10568
  * @example
10569
10569
  * ```ts
10570
10570
  * import { createClient, http, walletActions } from 'viem'
10571
- * import { tempo } from 'tempo.ts/chains'
10572
- * import { Actions } from 'tempo.ts/viem'
10571
+ * import { tempo } from 'viem/chains'
10572
+ * import { Actions } from 'viem/tempo'
10573
10573
  *
10574
10574
  * const client = createClient({
10575
10575
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -11435,8 +11435,8 @@ export declare namespace transfer {
11435
11435
  * @example
11436
11436
  * ```ts
11437
11437
  * import { createClient, http } from 'viem'
11438
- * import { tempo } from 'tempo.ts/chains'
11439
- * import { Actions } from 'tempo.ts/viem'
11438
+ * import { tempo } from 'viem/chains'
11439
+ * import { Actions } from 'viem/tempo'
11440
11440
  * import { privateKeyToAccount } from 'viem/accounts'
11441
11441
  *
11442
11442
  * const client = createClient({
@@ -11473,8 +11473,8 @@ export declare namespace transferSync {
11473
11473
  * @example
11474
11474
  * ```ts
11475
11475
  * import { createClient, http } from 'viem'
11476
- * import { tempo } from 'tempo.ts/chains'
11477
- * import { Actions } from 'tempo.ts/viem'
11476
+ * import { tempo } from 'viem/chains'
11477
+ * import { Actions } from 'viem/tempo'
11478
11478
  * import { privateKeyToAccount } from 'viem/accounts'
11479
11479
  *
11480
11480
  * const client = createClient({
@@ -11514,8 +11514,8 @@ export declare namespace unpause {
11514
11514
  * @example
11515
11515
  * ```ts
11516
11516
  * import { createClient, http, walletActions } from 'viem'
11517
- * import { tempo } from 'tempo.ts/chains'
11518
- * import { Actions } from 'tempo.ts/viem'
11517
+ * import { tempo } from 'viem/chains'
11518
+ * import { Actions } from 'viem/tempo'
11519
11519
  *
11520
11520
  * const client = createClient({
11521
11521
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -12319,8 +12319,8 @@ export declare namespace unpause {
12319
12319
  * @example
12320
12320
  * ```ts
12321
12321
  * import { createClient, http } from 'viem'
12322
- * import { tempo } from 'tempo.ts/chains'
12323
- * import { Actions } from 'tempo.ts/viem'
12322
+ * import { tempo } from 'viem/chains'
12323
+ * import { Actions } from 'viem/tempo'
12324
12324
  * import { privateKeyToAccount } from 'viem/accounts'
12325
12325
  *
12326
12326
  * const client = createClient({
@@ -12356,8 +12356,8 @@ export declare namespace unpauseSync {
12356
12356
  * @example
12357
12357
  * ```ts
12358
12358
  * import { createClient, http } from 'viem'
12359
- * import { tempo } from 'tempo.ts/chains'
12360
- * import { Actions } from 'tempo.ts/viem'
12359
+ * import { tempo } from 'viem/chains'
12360
+ * import { Actions } from 'viem/tempo'
12361
12361
  * import { privateKeyToAccount } from 'viem/accounts'
12362
12362
  *
12363
12363
  * const client = createClient({
@@ -12400,8 +12400,8 @@ export declare namespace prepareUpdateQuoteToken {
12400
12400
  * @example
12401
12401
  * ```ts
12402
12402
  * import { createClient, http, walletActions } from 'viem'
12403
- * import { tempo } from 'tempo.ts/chains'
12404
- * import { Actions } from 'tempo.ts/viem'
12403
+ * import { tempo } from 'viem/chains'
12404
+ * import { Actions } from 'viem/tempo'
12405
12405
  *
12406
12406
  * const client = createClient({
12407
12407
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -13209,8 +13209,8 @@ export declare namespace prepareUpdateQuoteToken {
13209
13209
  * @example
13210
13210
  * ```ts
13211
13211
  * import { createClient, http } from 'viem'
13212
- * import { tempo } from 'tempo.ts/chains'
13213
- * import { Actions } from 'tempo.ts/viem'
13212
+ * import { tempo } from 'viem/chains'
13213
+ * import { Actions } from 'viem/tempo'
13214
13214
  * import { privateKeyToAccount } from 'viem/accounts'
13215
13215
  *
13216
13216
  * const client = createClient({
@@ -13247,8 +13247,8 @@ export declare namespace prepareUpdateQuoteTokenSync {
13247
13247
  * @example
13248
13248
  * ```ts
13249
13249
  * import { createClient, http } from 'viem'
13250
- * import { tempo } from 'tempo.ts/chains'
13251
- * import { Actions } from 'tempo.ts/viem'
13250
+ * import { tempo } from 'viem/chains'
13251
+ * import { Actions } from 'viem/tempo'
13252
13252
  * import { privateKeyToAccount } from 'viem/accounts'
13253
13253
  *
13254
13254
  * const client = createClient({
@@ -13288,8 +13288,8 @@ export declare namespace updateQuoteToken {
13288
13288
  * @example
13289
13289
  * ```ts
13290
13290
  * import { createClient, http, walletActions } from 'viem'
13291
- * import { tempo } from 'tempo.ts/chains'
13292
- * import { Actions } from 'tempo.ts/viem'
13291
+ * import { tempo } from 'viem/chains'
13292
+ * import { Actions } from 'viem/tempo'
13293
13293
  *
13294
13294
  * const client = createClient({
13295
13295
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14093,8 +14093,8 @@ export declare namespace updateQuoteToken {
14093
14093
  * @example
14094
14094
  * ```ts
14095
14095
  * import { createClient, http } from 'viem'
14096
- * import { tempo } from 'tempo.ts/chains'
14097
- * import { Actions } from 'tempo.ts/viem'
14096
+ * import { tempo } from 'viem/chains'
14097
+ * import { Actions } from 'viem/tempo'
14098
14098
  * import { privateKeyToAccount } from 'viem/accounts'
14099
14099
  *
14100
14100
  * const client = createClient({
@@ -14130,8 +14130,8 @@ export declare namespace updateQuoteTokenSync {
14130
14130
  * @example
14131
14131
  * ```ts
14132
14132
  * import { createClient, http } from 'viem'
14133
- * import { tempo } from 'tempo.ts/chains'
14134
- * import { Actions } from 'tempo.ts/viem'
14133
+ * import { tempo } from 'viem/chains'
14134
+ * import { Actions } from 'viem/tempo'
14135
14135
  *
14136
14136
  * const client = createClient({
14137
14137
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14169,8 +14169,8 @@ export declare namespace watchApprove {
14169
14169
  * @example
14170
14170
  * ```ts
14171
14171
  * import { createClient, http } from 'viem'
14172
- * import { tempo } from 'tempo.ts/chains'
14173
- * import { Actions } from 'tempo.ts/viem'
14172
+ * import { tempo } from 'viem/chains'
14173
+ * import { Actions } from 'viem/tempo'
14174
14174
  *
14175
14175
  * const client = createClient({
14176
14176
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14208,8 +14208,8 @@ export declare namespace watchBurn {
14208
14208
  * @example
14209
14209
  * ```ts
14210
14210
  * import { createClient, http } from 'viem'
14211
- * import { tempo } from 'tempo.ts/chains'
14212
- * import { Actions } from 'tempo.ts/viem'
14211
+ * import { tempo } from 'viem/chains'
14212
+ * import { Actions } from 'viem/tempo'
14213
14213
  *
14214
14214
  * const client = createClient({
14215
14215
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14245,8 +14245,8 @@ export declare namespace watchCreate {
14245
14245
  * @example
14246
14246
  * ```ts
14247
14247
  * import { createClient, http } from 'viem'
14248
- * import { tempo } from 'tempo.ts/chains'
14249
- * import { Actions } from 'tempo.ts/viem'
14248
+ * import { tempo } from 'viem/chains'
14249
+ * import { Actions } from 'viem/tempo'
14250
14250
  *
14251
14251
  * const client = createClient({
14252
14252
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14285,8 +14285,8 @@ export declare namespace watchMint {
14285
14285
  * @example
14286
14286
  * ```ts
14287
14287
  * import { createClient, http } from 'viem'
14288
- * import { tempo } from 'tempo.ts/chains'
14289
- * import { Actions } from 'tempo.ts/viem'
14288
+ * import { tempo } from 'viem/chains'
14289
+ * import { Actions } from 'viem/tempo'
14290
14290
  *
14291
14291
  * const client = createClient({
14292
14292
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14324,8 +14324,8 @@ export declare namespace watchAdminRole {
14324
14324
  * @example
14325
14325
  * ```ts
14326
14326
  * import { createClient, http } from 'viem'
14327
- * import { tempo } from 'tempo.ts/chains'
14328
- * import { Actions } from 'tempo.ts/viem'
14327
+ * import { tempo } from 'viem/chains'
14328
+ * import { Actions } from 'viem/tempo'
14329
14329
  *
14330
14330
  * const client = createClient({
14331
14331
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
@@ -14366,8 +14366,8 @@ export declare namespace watchRole {
14366
14366
  * @example
14367
14367
  * ```ts
14368
14368
  * import { createClient, http } from 'viem'
14369
- * import { tempo } from 'tempo.ts/chains'
14370
- * import { Actions } from 'tempo.ts/viem'
14369
+ * import { tempo } from 'viem/chains'
14370
+ * import { Actions } from 'viem/tempo'
14371
14371
  *
14372
14372
  * const client = createClient({
14373
14373
  * account: privateKeyToAccount('0x...'),
@@ -14406,8 +14406,8 @@ export declare namespace watchTransfer {
14406
14406
  * @example
14407
14407
  * ```ts
14408
14408
  * import { createClient, http } from 'viem'
14409
- * import { tempo } from 'tempo.ts/chains'
14410
- * import { Actions } from 'tempo.ts/viem'
14409
+ * import { tempo } from 'viem/chains'
14410
+ * import { Actions } from 'viem/tempo'
14411
14411
  *
14412
14412
  * const client = createClient({
14413
14413
  * chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })