viem 2.48.2 → 2.48.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.
- package/CHANGELOG.md +12 -0
- package/_cjs/errors/version.js +1 -1
- package/_cjs/tempo/Addresses.js +2 -1
- package/_cjs/tempo/Addresses.js.map +1 -1
- package/_cjs/tempo/Decorator.js +7 -0
- package/_cjs/tempo/Decorator.js.map +1 -1
- package/_cjs/tempo/actions/index.js +2 -1
- package/_cjs/tempo/actions/index.js.map +1 -1
- package/_cjs/tempo/actions/virtualAddress.js +95 -0
- package/_cjs/tempo/actions/virtualAddress.js.map +1 -0
- package/_cjs/tempo/index.js +7 -2
- package/_cjs/tempo/index.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_esm/tempo/Addresses.js +1 -0
- package/_esm/tempo/Addresses.js.map +1 -1
- package/_esm/tempo/Decorator.js +7 -0
- package/_esm/tempo/Decorator.js.map +1 -1
- package/_esm/tempo/actions/accessKey.js +10 -10
- package/_esm/tempo/actions/amm.js +14 -14
- package/_esm/tempo/actions/dex.js +34 -34
- package/_esm/tempo/actions/faucet.js +2 -2
- package/_esm/tempo/actions/fee.js +10 -10
- package/_esm/tempo/actions/index.js +1 -0
- package/_esm/tempo/actions/index.js.map +1 -1
- package/_esm/tempo/actions/nonce.js +2 -2
- package/_esm/tempo/actions/policy.js +18 -18
- package/_esm/tempo/actions/reward.js +14 -14
- package/_esm/tempo/actions/token.js +61 -61
- package/_esm/tempo/actions/validator.js +27 -27
- package/_esm/tempo/actions/virtualAddress.js +228 -0
- package/_esm/tempo/actions/virtualAddress.js.map +1 -0
- package/_esm/tempo/index.js +3 -3
- package/_esm/tempo/index.js.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/tempo/Addresses.d.ts +1 -0
- package/_types/tempo/Addresses.d.ts.map +1 -1
- package/_types/tempo/Decorator.d.ts +101 -1
- package/_types/tempo/Decorator.d.ts.map +1 -1
- package/_types/tempo/actions/accessKey.d.ts +10 -10
- package/_types/tempo/actions/amm.d.ts +14 -14
- package/_types/tempo/actions/dex.d.ts +34 -34
- package/_types/tempo/actions/faucet.d.ts +2 -2
- package/_types/tempo/actions/fee.d.ts +10 -10
- package/_types/tempo/actions/index.d.ts +1 -0
- package/_types/tempo/actions/index.d.ts.map +1 -1
- package/_types/tempo/actions/nonce.d.ts +2 -2
- package/_types/tempo/actions/policy.d.ts +18 -18
- package/_types/tempo/actions/reward.d.ts +14 -14
- package/_types/tempo/actions/token.d.ts +61 -61
- package/_types/tempo/actions/validator.d.ts +27 -27
- package/_types/tempo/actions/virtualAddress.d.ts +350 -0
- package/_types/tempo/actions/virtualAddress.d.ts.map +1 -0
- package/_types/tempo/index.d.ts +2 -2
- package/_types/tempo/index.d.ts.map +1 -1
- package/errors/version.ts +1 -1
- package/package.json +2 -2
- package/tempo/Addresses.ts +1 -0
- package/tempo/Decorator.ts +125 -1
- package/tempo/actions/accessKey.ts +10 -10
- package/tempo/actions/amm.ts +14 -14
- package/tempo/actions/dex.ts +34 -34
- package/tempo/actions/faucet.ts +2 -2
- package/tempo/actions/fee.ts +10 -10
- package/tempo/actions/index.ts +1 -0
- package/tempo/actions/nonce.ts +2 -2
- package/tempo/actions/policy.ts +18 -18
- package/tempo/actions/reward.ts +14 -14
- package/tempo/actions/token.ts +61 -61
- package/tempo/actions/validator.ts +27 -27
- package/tempo/actions/virtualAddress.ts +337 -0
- package/tempo/index.ts +10 -3
- package/_cjs/tempo/Secp256k1.js +0 -6
- package/_cjs/tempo/Secp256k1.js.map +0 -1
- package/_esm/tempo/Secp256k1.js +0 -3
- package/_esm/tempo/Secp256k1.js.map +0 -1
- package/_types/tempo/Secp256k1.d.ts +0 -2
- package/_types/tempo/Secp256k1.d.ts.map +0 -1
- package/tempo/Secp256k1.ts +0 -2
|
@@ -31,7 +31,7 @@ import type { TransactionReceipt } from '../Transaction.js';
|
|
|
31
31
|
*
|
|
32
32
|
* const client = createClient({
|
|
33
33
|
* account: privateKeyToAccount('0x...'),
|
|
34
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
34
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
35
35
|
* transport: http(),
|
|
36
36
|
* })
|
|
37
37
|
*
|
|
@@ -75,7 +75,7 @@ export declare namespace approve {
|
|
|
75
75
|
* import { Actions } from 'viem/tempo'
|
|
76
76
|
*
|
|
77
77
|
* const client = createClient({
|
|
78
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
78
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
79
79
|
* transport: http(),
|
|
80
80
|
* }).extend(walletActions)
|
|
81
81
|
*
|
|
@@ -940,7 +940,7 @@ export declare namespace approve {
|
|
|
940
940
|
*
|
|
941
941
|
* const client = createClient({
|
|
942
942
|
* account: privateKeyToAccount('0x...'),
|
|
943
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
943
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
944
944
|
* transport: http(),
|
|
945
945
|
* })
|
|
946
946
|
*
|
|
@@ -979,7 +979,7 @@ export declare namespace approveSync {
|
|
|
979
979
|
*
|
|
980
980
|
* const client = createClient({
|
|
981
981
|
* account: privateKeyToAccount('0x...'),
|
|
982
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
982
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
983
983
|
* transport: http(),
|
|
984
984
|
* })
|
|
985
985
|
*
|
|
@@ -1024,7 +1024,7 @@ export declare namespace burnBlocked {
|
|
|
1024
1024
|
* import { Actions } from 'viem/tempo'
|
|
1025
1025
|
*
|
|
1026
1026
|
* const client = createClient({
|
|
1027
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1027
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1028
1028
|
* transport: http(),
|
|
1029
1029
|
* }).extend(walletActions)
|
|
1030
1030
|
*
|
|
@@ -1893,7 +1893,7 @@ export declare namespace burnBlocked {
|
|
|
1893
1893
|
*
|
|
1894
1894
|
* const client = createClient({
|
|
1895
1895
|
* account: privateKeyToAccount('0x...'),
|
|
1896
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1896
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1897
1897
|
* transport: http(),
|
|
1898
1898
|
* })
|
|
1899
1899
|
*
|
|
@@ -1933,7 +1933,7 @@ export declare namespace burnBlockedSync {
|
|
|
1933
1933
|
*
|
|
1934
1934
|
* const client = createClient({
|
|
1935
1935
|
* account: privateKeyToAccount('0x...'),
|
|
1936
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1936
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1937
1937
|
* transport: http(),
|
|
1938
1938
|
* })
|
|
1939
1939
|
*
|
|
@@ -1977,7 +1977,7 @@ export declare namespace burn {
|
|
|
1977
1977
|
* import { Actions } from 'viem/tempo'
|
|
1978
1978
|
*
|
|
1979
1979
|
* const client = createClient({
|
|
1980
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1980
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
1981
1981
|
* transport: http(),
|
|
1982
1982
|
* }).extend(walletActions)
|
|
1983
1983
|
*
|
|
@@ -2854,7 +2854,7 @@ export declare namespace burn {
|
|
|
2854
2854
|
*
|
|
2855
2855
|
* const client = createClient({
|
|
2856
2856
|
* account: privateKeyToAccount('0x...'),
|
|
2857
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2857
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2858
2858
|
* transport: http(),
|
|
2859
2859
|
* })
|
|
2860
2860
|
*
|
|
@@ -2892,7 +2892,7 @@ export declare namespace burnSync {
|
|
|
2892
2892
|
*
|
|
2893
2893
|
* const client = createClient({
|
|
2894
2894
|
* account: privateKeyToAccount('0x...'),
|
|
2895
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2895
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2896
2896
|
* transport: http(),
|
|
2897
2897
|
* })
|
|
2898
2898
|
*
|
|
@@ -2934,7 +2934,7 @@ export declare namespace changeTransferPolicy {
|
|
|
2934
2934
|
* import { Actions } from 'viem/tempo'
|
|
2935
2935
|
*
|
|
2936
2936
|
* const client = createClient({
|
|
2937
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2937
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
2938
2938
|
* transport: http(),
|
|
2939
2939
|
* }).extend(walletActions)
|
|
2940
2940
|
*
|
|
@@ -3799,7 +3799,7 @@ export declare namespace changeTransferPolicy {
|
|
|
3799
3799
|
*
|
|
3800
3800
|
* const client = createClient({
|
|
3801
3801
|
* account: privateKeyToAccount('0x...'),
|
|
3802
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3802
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3803
3803
|
* transport: http(),
|
|
3804
3804
|
* })
|
|
3805
3805
|
*
|
|
@@ -3837,7 +3837,7 @@ export declare namespace changeTransferPolicySync {
|
|
|
3837
3837
|
*
|
|
3838
3838
|
* const client = createClient({
|
|
3839
3839
|
* account: privateKeyToAccount('0x...'),
|
|
3840
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3840
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3841
3841
|
* transport: http(),
|
|
3842
3842
|
* })
|
|
3843
3843
|
*
|
|
@@ -3892,7 +3892,7 @@ export declare namespace create {
|
|
|
3892
3892
|
* import { Actions } from 'viem/tempo'
|
|
3893
3893
|
*
|
|
3894
3894
|
* const client = createClient({
|
|
3895
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3895
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
3896
3896
|
* transport: http(),
|
|
3897
3897
|
* }).extend(walletActions)
|
|
3898
3898
|
*
|
|
@@ -4064,7 +4064,7 @@ export declare namespace create {
|
|
|
4064
4064
|
*
|
|
4065
4065
|
* const client = createClient({
|
|
4066
4066
|
* account: privateKeyToAccount('0x...'),
|
|
4067
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4067
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4068
4068
|
* transport: http(),
|
|
4069
4069
|
* })
|
|
4070
4070
|
*
|
|
@@ -4106,7 +4106,7 @@ export declare namespace createSync {
|
|
|
4106
4106
|
*
|
|
4107
4107
|
* const client = createClient({
|
|
4108
4108
|
* account: privateKeyToAccount('0x...'),
|
|
4109
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4109
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4110
4110
|
* transport: http(),
|
|
4111
4111
|
* })
|
|
4112
4112
|
*
|
|
@@ -4175,7 +4175,7 @@ export declare namespace getAllowance {
|
|
|
4175
4175
|
*
|
|
4176
4176
|
* const client = createClient({
|
|
4177
4177
|
* account: privateKeyToAccount('0x...'),
|
|
4178
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4178
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4179
4179
|
* transport: http(),
|
|
4180
4180
|
* })
|
|
4181
4181
|
*
|
|
@@ -4239,7 +4239,7 @@ export declare namespace getBalance {
|
|
|
4239
4239
|
*
|
|
4240
4240
|
* const client = createClient({
|
|
4241
4241
|
* account: privateKeyToAccount('0x...'),
|
|
4242
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4242
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4243
4243
|
* transport: http(),
|
|
4244
4244
|
* })
|
|
4245
4245
|
*
|
|
@@ -4316,7 +4316,7 @@ export declare namespace getMetadata {
|
|
|
4316
4316
|
* import { Actions } from 'viem/tempo'
|
|
4317
4317
|
*
|
|
4318
4318
|
* const client = createClient({
|
|
4319
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4319
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4320
4320
|
* transport: http(),
|
|
4321
4321
|
* })
|
|
4322
4322
|
*
|
|
@@ -4379,7 +4379,7 @@ export declare namespace getRoleAdmin {
|
|
|
4379
4379
|
* import { Actions } from 'viem/tempo'
|
|
4380
4380
|
*
|
|
4381
4381
|
* const client = createClient({
|
|
4382
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4382
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4383
4383
|
* transport: http(),
|
|
4384
4384
|
* })
|
|
4385
4385
|
*
|
|
@@ -4450,7 +4450,7 @@ export declare namespace hasRole {
|
|
|
4450
4450
|
*
|
|
4451
4451
|
* const client = createClient({
|
|
4452
4452
|
* account: privateKeyToAccount('0x...'),
|
|
4453
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4453
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4454
4454
|
* transport: http(),
|
|
4455
4455
|
* })
|
|
4456
4456
|
*
|
|
@@ -4498,7 +4498,7 @@ export declare namespace grantRoles {
|
|
|
4498
4498
|
* import { Actions } from 'viem/tempo'
|
|
4499
4499
|
*
|
|
4500
4500
|
* const client = createClient({
|
|
4501
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4501
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
4502
4502
|
* transport: http(),
|
|
4503
4503
|
* }).extend(walletActions)
|
|
4504
4504
|
*
|
|
@@ -5367,7 +5367,7 @@ export declare namespace grantRoles {
|
|
|
5367
5367
|
*
|
|
5368
5368
|
* const client = createClient({
|
|
5369
5369
|
* account: privateKeyToAccount('0x...'),
|
|
5370
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5370
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5371
5371
|
* transport: http(),
|
|
5372
5372
|
* })
|
|
5373
5373
|
*
|
|
@@ -5407,7 +5407,7 @@ export declare namespace grantRolesSync {
|
|
|
5407
5407
|
*
|
|
5408
5408
|
* const client = createClient({
|
|
5409
5409
|
* account: privateKeyToAccount('0x...'),
|
|
5410
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5410
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5411
5411
|
* transport: http(),
|
|
5412
5412
|
* })
|
|
5413
5413
|
*
|
|
@@ -5454,7 +5454,7 @@ export declare namespace mint {
|
|
|
5454
5454
|
* import { Actions } from 'viem/tempo'
|
|
5455
5455
|
*
|
|
5456
5456
|
* const client = createClient({
|
|
5457
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5457
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
5458
5458
|
* transport: http(),
|
|
5459
5459
|
* }).extend(walletActions)
|
|
5460
5460
|
*
|
|
@@ -6338,7 +6338,7 @@ export declare namespace mint {
|
|
|
6338
6338
|
*
|
|
6339
6339
|
* const client = createClient({
|
|
6340
6340
|
* account: privateKeyToAccount('0x...'),
|
|
6341
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6341
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6342
6342
|
* transport: http(),
|
|
6343
6343
|
* })
|
|
6344
6344
|
*
|
|
@@ -6377,7 +6377,7 @@ export declare namespace mintSync {
|
|
|
6377
6377
|
*
|
|
6378
6378
|
* const client = createClient({
|
|
6379
6379
|
* account: privateKeyToAccount('0x...'),
|
|
6380
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6380
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6381
6381
|
* transport: http(),
|
|
6382
6382
|
* })
|
|
6383
6383
|
*
|
|
@@ -6416,7 +6416,7 @@ export declare namespace pause {
|
|
|
6416
6416
|
* import { Actions } from 'viem/tempo'
|
|
6417
6417
|
*
|
|
6418
6418
|
* const client = createClient({
|
|
6419
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6419
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
6420
6420
|
* transport: http(),
|
|
6421
6421
|
* }).extend(walletActions)
|
|
6422
6422
|
*
|
|
@@ -7277,7 +7277,7 @@ export declare namespace pause {
|
|
|
7277
7277
|
*
|
|
7278
7278
|
* const client = createClient({
|
|
7279
7279
|
* account: privateKeyToAccount('0x...'),
|
|
7280
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7280
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7281
7281
|
* transport: http(),
|
|
7282
7282
|
* })
|
|
7283
7283
|
*
|
|
@@ -7314,7 +7314,7 @@ export declare namespace pauseSync {
|
|
|
7314
7314
|
*
|
|
7315
7315
|
* const client = createClient({
|
|
7316
7316
|
* account: privateKeyToAccount('0x...'),
|
|
7317
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7317
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7318
7318
|
* transport: http(),
|
|
7319
7319
|
* })
|
|
7320
7320
|
*
|
|
@@ -7359,7 +7359,7 @@ export declare namespace renounceRoles {
|
|
|
7359
7359
|
* import { Actions } from 'viem/tempo'
|
|
7360
7360
|
*
|
|
7361
7361
|
* const client = createClient({
|
|
7362
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7362
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
7363
7363
|
* transport: http(),
|
|
7364
7364
|
* }).extend(walletActions)
|
|
7365
7365
|
*
|
|
@@ -8224,7 +8224,7 @@ export declare namespace renounceRoles {
|
|
|
8224
8224
|
*
|
|
8225
8225
|
* const client = createClient({
|
|
8226
8226
|
* account: privateKeyToAccount('0x...'),
|
|
8227
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8227
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8228
8228
|
* transport: http(),
|
|
8229
8229
|
* })
|
|
8230
8230
|
*
|
|
@@ -8263,7 +8263,7 @@ export declare namespace renounceRolesSync {
|
|
|
8263
8263
|
*
|
|
8264
8264
|
* const client = createClient({
|
|
8265
8265
|
* account: privateKeyToAccount('0x...'),
|
|
8266
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8266
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8267
8267
|
* transport: http(),
|
|
8268
8268
|
* })
|
|
8269
8269
|
*
|
|
@@ -8311,7 +8311,7 @@ export declare namespace revokeRoles {
|
|
|
8311
8311
|
* import { Actions } from 'viem/tempo'
|
|
8312
8312
|
*
|
|
8313
8313
|
* const client = createClient({
|
|
8314
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8314
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
8315
8315
|
* transport: http(),
|
|
8316
8316
|
* }).extend(walletActions)
|
|
8317
8317
|
*
|
|
@@ -9180,7 +9180,7 @@ export declare namespace revokeRoles {
|
|
|
9180
9180
|
*
|
|
9181
9181
|
* const client = createClient({
|
|
9182
9182
|
* account: privateKeyToAccount('0x...'),
|
|
9183
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9183
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9184
9184
|
* transport: http(),
|
|
9185
9185
|
* })
|
|
9186
9186
|
*
|
|
@@ -9220,7 +9220,7 @@ export declare namespace revokeRolesSync {
|
|
|
9220
9220
|
*
|
|
9221
9221
|
* const client = createClient({
|
|
9222
9222
|
* account: privateKeyToAccount('0x...'),
|
|
9223
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9223
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9224
9224
|
* transport: http(),
|
|
9225
9225
|
* })
|
|
9226
9226
|
*
|
|
@@ -9262,7 +9262,7 @@ export declare namespace setSupplyCap {
|
|
|
9262
9262
|
* import { Actions } from 'viem/tempo'
|
|
9263
9263
|
*
|
|
9264
9264
|
* const client = createClient({
|
|
9265
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9265
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
9266
9266
|
* transport: http(),
|
|
9267
9267
|
* }).extend(walletActions)
|
|
9268
9268
|
*
|
|
@@ -10127,7 +10127,7 @@ export declare namespace setSupplyCap {
|
|
|
10127
10127
|
*
|
|
10128
10128
|
* const client = createClient({
|
|
10129
10129
|
* account: privateKeyToAccount('0x...'),
|
|
10130
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10130
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10131
10131
|
* transport: http(),
|
|
10132
10132
|
* })
|
|
10133
10133
|
*
|
|
@@ -10165,7 +10165,7 @@ export declare namespace setSupplyCapSync {
|
|
|
10165
10165
|
*
|
|
10166
10166
|
* const client = createClient({
|
|
10167
10167
|
* account: privateKeyToAccount('0x...'),
|
|
10168
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10168
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10169
10169
|
* transport: http(),
|
|
10170
10170
|
* })
|
|
10171
10171
|
*
|
|
@@ -10210,7 +10210,7 @@ export declare namespace setRoleAdmin {
|
|
|
10210
10210
|
* import { Actions } from 'viem/tempo'
|
|
10211
10211
|
*
|
|
10212
10212
|
* const client = createClient({
|
|
10213
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10213
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
10214
10214
|
* transport: http(),
|
|
10215
10215
|
* }).extend(walletActions)
|
|
10216
10216
|
*
|
|
@@ -11079,7 +11079,7 @@ export declare namespace setRoleAdmin {
|
|
|
11079
11079
|
*
|
|
11080
11080
|
* const client = createClient({
|
|
11081
11081
|
* account: privateKeyToAccount('0x...'),
|
|
11082
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11082
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11083
11083
|
* transport: http(),
|
|
11084
11084
|
* })
|
|
11085
11085
|
*
|
|
@@ -11118,7 +11118,7 @@ export declare namespace setRoleAdminSync {
|
|
|
11118
11118
|
*
|
|
11119
11119
|
* const client = createClient({
|
|
11120
11120
|
* account: privateKeyToAccount('0x...'),
|
|
11121
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11121
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11122
11122
|
* transport: http(),
|
|
11123
11123
|
* })
|
|
11124
11124
|
*
|
|
@@ -11166,7 +11166,7 @@ export declare namespace transfer {
|
|
|
11166
11166
|
* import { Actions } from 'viem/tempo'
|
|
11167
11167
|
*
|
|
11168
11168
|
* const client = createClient({
|
|
11169
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11169
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
11170
11170
|
* transport: http(),
|
|
11171
11171
|
* }).extend(walletActions)
|
|
11172
11172
|
*
|
|
@@ -12089,7 +12089,7 @@ export declare namespace transfer {
|
|
|
12089
12089
|
*
|
|
12090
12090
|
* const client = createClient({
|
|
12091
12091
|
* account: privateKeyToAccount('0x...'),
|
|
12092
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12092
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12093
12093
|
* transport: http(),
|
|
12094
12094
|
* })
|
|
12095
12095
|
*
|
|
@@ -12127,7 +12127,7 @@ export declare namespace transferSync {
|
|
|
12127
12127
|
*
|
|
12128
12128
|
* const client = createClient({
|
|
12129
12129
|
* account: privateKeyToAccount('0x...'),
|
|
12130
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12130
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12131
12131
|
* transport: http(),
|
|
12132
12132
|
* })
|
|
12133
12133
|
*
|
|
@@ -12166,7 +12166,7 @@ export declare namespace unpause {
|
|
|
12166
12166
|
* import { Actions } from 'viem/tempo'
|
|
12167
12167
|
*
|
|
12168
12168
|
* const client = createClient({
|
|
12169
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12169
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
12170
12170
|
* transport: http(),
|
|
12171
12171
|
* }).extend(walletActions)
|
|
12172
12172
|
*
|
|
@@ -13027,7 +13027,7 @@ export declare namespace unpause {
|
|
|
13027
13027
|
*
|
|
13028
13028
|
* const client = createClient({
|
|
13029
13029
|
* account: privateKeyToAccount('0x...'),
|
|
13030
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13030
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13031
13031
|
* transport: http(),
|
|
13032
13032
|
* })
|
|
13033
13033
|
*
|
|
@@ -13064,7 +13064,7 @@ export declare namespace unpauseSync {
|
|
|
13064
13064
|
*
|
|
13065
13065
|
* const client = createClient({
|
|
13066
13066
|
* account: privateKeyToAccount('0x...'),
|
|
13067
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13067
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13068
13068
|
* transport: http(),
|
|
13069
13069
|
* })
|
|
13070
13070
|
*
|
|
@@ -13106,7 +13106,7 @@ export declare namespace prepareUpdateQuoteToken {
|
|
|
13106
13106
|
* import { Actions } from 'viem/tempo'
|
|
13107
13107
|
*
|
|
13108
13108
|
* const client = createClient({
|
|
13109
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13109
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13110
13110
|
* transport: http(),
|
|
13111
13111
|
* }).extend(walletActions)
|
|
13112
13112
|
*
|
|
@@ -13971,7 +13971,7 @@ export declare namespace prepareUpdateQuoteToken {
|
|
|
13971
13971
|
*
|
|
13972
13972
|
* const client = createClient({
|
|
13973
13973
|
* account: privateKeyToAccount('0x...'),
|
|
13974
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13974
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
13975
13975
|
* transport: http(),
|
|
13976
13976
|
* })
|
|
13977
13977
|
*
|
|
@@ -14009,7 +14009,7 @@ export declare namespace prepareUpdateQuoteTokenSync {
|
|
|
14009
14009
|
*
|
|
14010
14010
|
* const client = createClient({
|
|
14011
14011
|
* account: privateKeyToAccount('0x...'),
|
|
14012
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14012
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14013
14013
|
* transport: http(),
|
|
14014
14014
|
* })
|
|
14015
14015
|
*
|
|
@@ -14048,7 +14048,7 @@ export declare namespace updateQuoteToken {
|
|
|
14048
14048
|
* import { Actions } from 'viem/tempo'
|
|
14049
14049
|
*
|
|
14050
14050
|
* const client = createClient({
|
|
14051
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14051
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14052
14052
|
* transport: http(),
|
|
14053
14053
|
* }).extend(walletActions)
|
|
14054
14054
|
*
|
|
@@ -14909,7 +14909,7 @@ export declare namespace updateQuoteToken {
|
|
|
14909
14909
|
*
|
|
14910
14910
|
* const client = createClient({
|
|
14911
14911
|
* account: privateKeyToAccount('0x...'),
|
|
14912
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14912
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14913
14913
|
* transport: http(),
|
|
14914
14914
|
* })
|
|
14915
14915
|
*
|
|
@@ -14944,7 +14944,7 @@ export declare namespace updateQuoteTokenSync {
|
|
|
14944
14944
|
* import { Actions } from 'viem/tempo'
|
|
14945
14945
|
*
|
|
14946
14946
|
* const client = createClient({
|
|
14947
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14947
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14948
14948
|
* transport: http(),
|
|
14949
14949
|
* })
|
|
14950
14950
|
*
|
|
@@ -14983,7 +14983,7 @@ export declare namespace watchApprove {
|
|
|
14983
14983
|
* import { Actions } from 'viem/tempo'
|
|
14984
14984
|
*
|
|
14985
14985
|
* const client = createClient({
|
|
14986
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14986
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
14987
14987
|
* transport: http(),
|
|
14988
14988
|
* })
|
|
14989
14989
|
*
|
|
@@ -15022,7 +15022,7 @@ export declare namespace watchBurn {
|
|
|
15022
15022
|
* import { Actions } from 'viem/tempo'
|
|
15023
15023
|
*
|
|
15024
15024
|
* const client = createClient({
|
|
15025
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15025
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15026
15026
|
* transport: http(),
|
|
15027
15027
|
* })
|
|
15028
15028
|
*
|
|
@@ -15059,7 +15059,7 @@ export declare namespace watchCreate {
|
|
|
15059
15059
|
* import { Actions } from 'viem/tempo'
|
|
15060
15060
|
*
|
|
15061
15061
|
* const client = createClient({
|
|
15062
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15062
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15063
15063
|
* transport: http(),
|
|
15064
15064
|
* })
|
|
15065
15065
|
*
|
|
@@ -15099,7 +15099,7 @@ export declare namespace watchMint {
|
|
|
15099
15099
|
* import { Actions } from 'viem/tempo'
|
|
15100
15100
|
*
|
|
15101
15101
|
* const client = createClient({
|
|
15102
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15102
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15103
15103
|
* transport: http(),
|
|
15104
15104
|
* })
|
|
15105
15105
|
*
|
|
@@ -15138,7 +15138,7 @@ export declare namespace watchAdminRole {
|
|
|
15138
15138
|
* import { Actions } from 'viem/tempo'
|
|
15139
15139
|
*
|
|
15140
15140
|
* const client = createClient({
|
|
15141
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15141
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15142
15142
|
* transport: http(),
|
|
15143
15143
|
* })
|
|
15144
15144
|
*
|
|
@@ -15181,7 +15181,7 @@ export declare namespace watchRole {
|
|
|
15181
15181
|
*
|
|
15182
15182
|
* const client = createClient({
|
|
15183
15183
|
* account: privateKeyToAccount('0x...'),
|
|
15184
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15184
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15185
15185
|
* transport: http(),
|
|
15186
15186
|
* })
|
|
15187
15187
|
*
|
|
@@ -15220,7 +15220,7 @@ export declare namespace watchTransfer {
|
|
|
15220
15220
|
* import { Actions } from 'viem/tempo'
|
|
15221
15221
|
*
|
|
15222
15222
|
* const client = createClient({
|
|
15223
|
-
* chain: tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15223
|
+
* chain: tempo.extend({ feeToken: '0x20c0000000000000000000000000000000000001' })
|
|
15224
15224
|
* transport: http(),
|
|
15225
15225
|
* })
|
|
15226
15226
|
*
|