tempo.ts 0.2.0 → 0.3.0

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 (94) hide show
  1. package/README.md +24 -0
  2. package/dist/chains.d.ts +56 -1572
  3. package/dist/chains.d.ts.map +1 -1
  4. package/dist/chains.js +3 -1
  5. package/dist/chains.js.map +1 -1
  6. package/dist/viem/Actions/amm.d.ts +64 -43
  7. package/dist/viem/Actions/amm.d.ts.map +1 -1
  8. package/dist/viem/Actions/amm.js +62 -47
  9. package/dist/viem/Actions/amm.js.map +1 -1
  10. package/dist/viem/Actions/dex.d.ts +32 -32
  11. package/dist/viem/Actions/dex.js +32 -32
  12. package/dist/viem/Actions/faucet.d.ts +34 -0
  13. package/dist/viem/Actions/faucet.d.ts.map +1 -0
  14. package/dist/viem/Actions/faucet.js +33 -0
  15. package/dist/viem/Actions/faucet.js.map +1 -0
  16. package/dist/viem/Actions/fee.d.ts +14 -14
  17. package/dist/viem/Actions/fee.d.ts.map +1 -1
  18. package/dist/viem/Actions/fee.js +16 -14
  19. package/dist/viem/Actions/fee.js.map +1 -1
  20. package/dist/viem/Actions/index.d.ts +1 -0
  21. package/dist/viem/Actions/index.d.ts.map +1 -1
  22. package/dist/viem/Actions/index.js +1 -0
  23. package/dist/viem/Actions/index.js.map +1 -1
  24. package/dist/viem/Actions/policy.d.ts +46 -46
  25. package/dist/viem/Actions/policy.js +46 -46
  26. package/dist/viem/Actions/reward.d.ts +38 -38
  27. package/dist/viem/Actions/reward.js +38 -38
  28. package/dist/viem/Actions/token.d.ts +159 -159
  29. package/dist/viem/Actions/token.js +159 -159
  30. package/dist/viem/Chain.d.ts +8 -5
  31. package/dist/viem/Chain.d.ts.map +1 -1
  32. package/dist/viem/Chain.js +25 -25
  33. package/dist/viem/Chain.js.map +1 -1
  34. package/dist/viem/Decorator.d.ts +128 -101
  35. package/dist/viem/Decorator.d.ts.map +1 -1
  36. package/dist/viem/Decorator.js +4 -0
  37. package/dist/viem/Decorator.js.map +1 -1
  38. package/dist/wagmi/Actions/amm.d.ts +12 -12
  39. package/dist/wagmi/Actions/amm.js +12 -12
  40. package/dist/wagmi/Actions/dex.d.ts +25 -25
  41. package/dist/wagmi/Actions/dex.js +25 -25
  42. package/dist/wagmi/Actions/faucet.d.ts +35 -0
  43. package/dist/wagmi/Actions/faucet.d.ts.map +1 -0
  44. package/dist/wagmi/Actions/faucet.js +33 -0
  45. package/dist/wagmi/Actions/faucet.js.map +1 -0
  46. package/dist/wagmi/Actions/fee.d.ts +3 -3
  47. package/dist/wagmi/Actions/fee.js +3 -3
  48. package/dist/wagmi/Actions/index.d.ts +1 -0
  49. package/dist/wagmi/Actions/index.d.ts.map +1 -1
  50. package/dist/wagmi/Actions/index.js +1 -0
  51. package/dist/wagmi/Actions/index.js.map +1 -1
  52. package/dist/wagmi/Actions/reward.d.ts +10 -10
  53. package/dist/wagmi/Actions/reward.js +10 -10
  54. package/dist/wagmi/Actions/token.d.ts +45 -45
  55. package/dist/wagmi/Actions/token.js +46 -46
  56. package/dist/wagmi/Actions/token.js.map +1 -1
  57. package/dist/wagmi/Connector.d.ts +11 -3
  58. package/dist/wagmi/Connector.d.ts.map +1 -1
  59. package/dist/wagmi/Connector.js +16 -4
  60. package/dist/wagmi/Connector.js.map +1 -1
  61. package/dist/wagmi/Hooks/faucet.d.ts +39 -0
  62. package/dist/wagmi/Hooks/faucet.d.ts.map +1 -0
  63. package/dist/wagmi/Hooks/faucet.js +40 -0
  64. package/dist/wagmi/Hooks/faucet.js.map +1 -0
  65. package/dist/wagmi/Hooks/index.d.ts +1 -0
  66. package/dist/wagmi/Hooks/index.d.ts.map +1 -1
  67. package/dist/wagmi/Hooks/index.js +1 -0
  68. package/dist/wagmi/Hooks/index.js.map +1 -1
  69. package/package.json +1 -54
  70. package/src/chains.ts +3 -1
  71. package/src/viem/Actions/amm.test.ts +75 -0
  72. package/src/viem/Actions/amm.ts +63 -48
  73. package/src/viem/Actions/dex.ts +32 -32
  74. package/src/viem/Actions/faucet.ts +50 -0
  75. package/src/viem/Actions/fee.ts +16 -14
  76. package/src/viem/Actions/index.ts +1 -0
  77. package/src/viem/Actions/policy.ts +46 -46
  78. package/src/viem/Actions/reward.ts +38 -38
  79. package/src/viem/Actions/token.ts +159 -159
  80. package/src/viem/Chain.bench-d.ts +12 -0
  81. package/src/viem/Chain.ts +36 -32
  82. package/src/viem/Decorator.bench-d.ts +1 -1
  83. package/src/viem/Decorator.test.ts +1 -0
  84. package/src/viem/Decorator.ts +133 -101
  85. package/src/wagmi/Actions/amm.ts +12 -12
  86. package/src/wagmi/Actions/dex.ts +25 -25
  87. package/src/wagmi/Actions/faucet.ts +46 -0
  88. package/src/wagmi/Actions/fee.ts +3 -3
  89. package/src/wagmi/Actions/index.ts +1 -0
  90. package/src/wagmi/Actions/reward.ts +10 -10
  91. package/src/wagmi/Actions/token.ts +46 -46
  92. package/src/wagmi/Connector.ts +31 -8
  93. package/src/wagmi/Hooks/faucet.ts +76 -0
  94. package/src/wagmi/Hooks/index.ts +1 -0
@@ -14,7 +14,7 @@ import * as viem_Actions from '../../viem/Actions/token.js';
14
14
  * import { Actions } from 'tempo.ts/wagmi'
15
15
  *
16
16
  * const config = createConfig({
17
- * chains: [tempo],
17
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
18
18
  * transports: {
19
19
  * [tempo.id]: http(),
20
20
  * },
@@ -49,7 +49,7 @@ export declare namespace approve {
49
49
  * import { Actions } from 'tempo.ts/wagmi'
50
50
  *
51
51
  * const config = createConfig({
52
- * chains: [tempo],
52
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
53
53
  * transports: {
54
54
  * [tempo.id]: http(),
55
55
  * },
@@ -81,7 +81,7 @@ export declare namespace approveSync {
81
81
  * import { Actions } from 'tempo.ts/wagmi'
82
82
  *
83
83
  * const config = createConfig({
84
- * chains: [tempo],
84
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
85
85
  * transports: {
86
86
  * [tempo.id]: http(),
87
87
  * },
@@ -113,7 +113,7 @@ export declare namespace burn {
113
113
  * import { Actions } from 'tempo.ts/wagmi'
114
114
  *
115
115
  * const config = createConfig({
116
- * chains: [tempo],
116
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
117
117
  * transports: {
118
118
  * [tempo.id]: http(),
119
119
  * },
@@ -149,7 +149,7 @@ export declare namespace burnBlocked {
149
149
  * import { Actions } from 'tempo.ts/wagmi'
150
150
  *
151
151
  * const config = createConfig({
152
- * chains: [tempo],
152
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
153
153
  * transports: {
154
154
  * [tempo.id]: http(),
155
155
  * },
@@ -185,7 +185,7 @@ export declare namespace burnBlockedSync {
185
185
  * import { Actions } from 'tempo.ts/wagmi'
186
186
  *
187
187
  * const config = createConfig({
188
- * chains: [tempo],
188
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
189
189
  * transports: {
190
190
  * [tempo.id]: http(),
191
191
  * },
@@ -217,7 +217,7 @@ export declare namespace burnSync {
217
217
  * import { Actions } from 'tempo.ts/wagmi'
218
218
  *
219
219
  * const config = createConfig({
220
- * chains: [tempo],
220
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
221
221
  * transports: {
222
222
  * [tempo.id]: http(),
223
223
  * },
@@ -252,7 +252,7 @@ export declare namespace changeTransferPolicy {
252
252
  * import { Actions } from 'tempo.ts/wagmi'
253
253
  *
254
254
  * const config = createConfig({
255
- * chains: [tempo],
255
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
256
256
  * transports: {
257
257
  * [tempo.id]: http(),
258
258
  * },
@@ -284,7 +284,7 @@ export declare namespace changeTransferPolicySync {
284
284
  * import { Actions } from 'tempo.ts/wagmi'
285
285
  *
286
286
  * const config = createConfig({
287
- * chains: [tempo],
287
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
288
288
  * transports: {
289
289
  * [tempo.id]: http(),
290
290
  * },
@@ -320,7 +320,7 @@ export declare namespace create {
320
320
  * import { Actions } from 'tempo.ts/wagmi'
321
321
  *
322
322
  * const config = createConfig({
323
- * chains: [tempo],
323
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
324
324
  * transports: {
325
325
  * [tempo.id]: http(),
326
326
  * },
@@ -353,7 +353,7 @@ export declare namespace createSync {
353
353
  * import { Actions } from 'tempo.ts/wagmi'
354
354
  *
355
355
  * const config = createConfig({
356
- * chains: [tempo],
356
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
357
357
  * transports: {
358
358
  * [tempo.id]: http(),
359
359
  * },
@@ -387,7 +387,7 @@ export declare namespace updateQuoteToken {
387
387
  * import { Actions } from 'tempo.ts/wagmi'
388
388
  *
389
389
  * const config = createConfig({
390
- * chains: [tempo],
390
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
391
391
  * transports: {
392
392
  * [tempo.id]: http(),
393
393
  * },
@@ -418,7 +418,7 @@ export declare namespace updateQuoteTokenSync {
418
418
  * import { Actions } from 'tempo.ts/wagmi'
419
419
  *
420
420
  * const config = createConfig({
421
- * chains: [tempo],
421
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
422
422
  * transports: {
423
423
  * [tempo.id]: http(),
424
424
  * },
@@ -458,7 +458,7 @@ export declare namespace getAllowance {
458
458
  * import { Actions } from 'tempo.ts/wagmi'
459
459
  *
460
460
  * const config = createConfig({
461
- * chains: [tempo],
461
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
462
462
  * transports: {
463
463
  * [tempo.id]: http(),
464
464
  * },
@@ -497,7 +497,7 @@ export declare namespace getBalance {
497
497
  * import { Actions } from 'tempo.ts/wagmi'
498
498
  *
499
499
  * const config = createConfig({
500
- * chains: [tempo],
500
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
501
501
  * transports: {
502
502
  * [tempo.id]: http(),
503
503
  * },
@@ -546,7 +546,7 @@ export declare namespace getMetadata {
546
546
  * import { Actions } from 'tempo.ts/wagmi'
547
547
  *
548
548
  * const config = createConfig({
549
- * chains: [tempo],
549
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
550
550
  * transports: {
551
551
  * [tempo.id]: http(),
552
552
  * },
@@ -586,7 +586,7 @@ export declare namespace getRoleAdmin {
586
586
  * import { Actions } from 'tempo.ts/wagmi'
587
587
  *
588
588
  * const config = createConfig({
589
- * chains: [tempo],
589
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
590
590
  * transports: {
591
591
  * [tempo.id]: http(),
592
592
  * },
@@ -622,7 +622,7 @@ export declare namespace grantRoles {
622
622
  * import { Actions } from 'tempo.ts/wagmi'
623
623
  *
624
624
  * const config = createConfig({
625
- * chains: [tempo],
625
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
626
626
  * transports: {
627
627
  * [tempo.id]: http(),
628
628
  * },
@@ -655,7 +655,7 @@ export declare namespace grantRolesSync {
655
655
  * import { Actions } from 'tempo.ts/wagmi'
656
656
  *
657
657
  * const config = createConfig({
658
- * chains: [tempo],
658
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
659
659
  * transports: {
660
660
  * [tempo.id]: http(),
661
661
  * },
@@ -696,7 +696,7 @@ export declare namespace hasRole {
696
696
  * import { Actions } from 'tempo.ts/wagmi'
697
697
  *
698
698
  * const config = createConfig({
699
- * chains: [tempo],
699
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
700
700
  * transports: {
701
701
  * [tempo.id]: http(),
702
702
  * },
@@ -732,7 +732,7 @@ export declare namespace mint {
732
732
  * import { Actions } from 'tempo.ts/wagmi'
733
733
  *
734
734
  * const config = createConfig({
735
- * chains: [tempo],
735
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
736
736
  * transports: {
737
737
  * [tempo.id]: http(),
738
738
  * },
@@ -765,7 +765,7 @@ export declare namespace mintSync {
765
765
  * import { Actions } from 'tempo.ts/wagmi'
766
766
  *
767
767
  * const config = createConfig({
768
- * chains: [tempo],
768
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
769
769
  * transports: {
770
770
  * [tempo.id]: http(),
771
771
  * },
@@ -799,7 +799,7 @@ export declare namespace pause {
799
799
  * import { Actions } from 'tempo.ts/wagmi'
800
800
  *
801
801
  * const config = createConfig({
802
- * chains: [tempo],
802
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
803
803
  * transports: {
804
804
  * [tempo.id]: http(),
805
805
  * },
@@ -830,7 +830,7 @@ export declare namespace pauseSync {
830
830
  * import { Actions } from 'tempo.ts/wagmi'
831
831
  *
832
832
  * const config = createConfig({
833
- * chains: [tempo],
833
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
834
834
  * transports: {
835
835
  * [tempo.id]: http(),
836
836
  * },
@@ -865,7 +865,7 @@ export declare namespace renounceRoles {
865
865
  * import { Actions } from 'tempo.ts/wagmi'
866
866
  *
867
867
  * const config = createConfig({
868
- * chains: [tempo],
868
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
869
869
  * transports: {
870
870
  * [tempo.id]: http(),
871
871
  * },
@@ -897,7 +897,7 @@ export declare namespace renounceRolesSync {
897
897
  * import { Actions } from 'tempo.ts/wagmi'
898
898
  *
899
899
  * const config = createConfig({
900
- * chains: [tempo],
900
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
901
901
  * transports: {
902
902
  * [tempo.id]: http(),
903
903
  * },
@@ -933,7 +933,7 @@ export declare namespace revokeRoles {
933
933
  * import { Actions } from 'tempo.ts/wagmi'
934
934
  *
935
935
  * const config = createConfig({
936
- * chains: [tempo],
936
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
937
937
  * transports: {
938
938
  * [tempo.id]: http(),
939
939
  * },
@@ -966,7 +966,7 @@ export declare namespace revokeRolesSync {
966
966
  * import { Actions } from 'tempo.ts/wagmi'
967
967
  *
968
968
  * const config = createConfig({
969
- * chains: [tempo],
969
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
970
970
  * transports: {
971
971
  * [tempo.id]: http(),
972
972
  * },
@@ -1002,7 +1002,7 @@ export declare namespace setRoleAdmin {
1002
1002
  * import { Actions } from 'tempo.ts/wagmi'
1003
1003
  *
1004
1004
  * const config = createConfig({
1005
- * chains: [tempo],
1005
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1006
1006
  * transports: {
1007
1007
  * [tempo.id]: http(),
1008
1008
  * },
@@ -1035,7 +1035,7 @@ export declare namespace setRoleAdminSync {
1035
1035
  * import { Actions } from 'tempo.ts/wagmi'
1036
1036
  *
1037
1037
  * const config = createConfig({
1038
- * chains: [tempo],
1038
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1039
1039
  * transports: {
1040
1040
  * [tempo.id]: http(),
1041
1041
  * },
@@ -1070,7 +1070,7 @@ export declare namespace setSupplyCap {
1070
1070
  * import { Actions } from 'tempo.ts/wagmi'
1071
1071
  *
1072
1072
  * const config = createConfig({
1073
- * chains: [tempo],
1073
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1074
1074
  * transports: {
1075
1075
  * [tempo.id]: http(),
1076
1076
  * },
@@ -1102,7 +1102,7 @@ export declare namespace setSupplyCapSync {
1102
1102
  * import { Actions } from 'tempo.ts/wagmi'
1103
1103
  *
1104
1104
  * const config = createConfig({
1105
- * chains: [tempo],
1105
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1106
1106
  * transports: {
1107
1107
  * [tempo.id]: http(),
1108
1108
  * },
@@ -1137,7 +1137,7 @@ export declare namespace transfer {
1137
1137
  * import { Actions } from 'tempo.ts/wagmi'
1138
1138
  *
1139
1139
  * const config = createConfig({
1140
- * chains: [tempo],
1140
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1141
1141
  * transports: {
1142
1142
  * [tempo.id]: http(),
1143
1143
  * },
@@ -1169,7 +1169,7 @@ export declare namespace transferSync {
1169
1169
  * import { Actions } from 'tempo.ts/wagmi'
1170
1170
  *
1171
1171
  * const config = createConfig({
1172
- * chains: [tempo],
1172
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1173
1173
  * transports: {
1174
1174
  * [tempo.id]: http(),
1175
1175
  * },
@@ -1203,7 +1203,7 @@ export declare namespace unpause {
1203
1203
  * import { Actions } from 'tempo.ts/wagmi'
1204
1204
  *
1205
1205
  * const config = createConfig({
1206
- * chains: [tempo],
1206
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1207
1207
  * transports: {
1208
1208
  * [tempo.id]: http(),
1209
1209
  * },
@@ -1234,7 +1234,7 @@ export declare namespace unpauseSync {
1234
1234
  * import { Actions } from 'tempo.ts/wagmi'
1235
1235
  *
1236
1236
  * const config = createConfig({
1237
- * chains: [tempo],
1237
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1238
1238
  * transports: {
1239
1239
  * [tempo.id]: http(),
1240
1240
  * },
@@ -1269,7 +1269,7 @@ export declare namespace prepareUpdateQuoteToken {
1269
1269
  * import { Actions } from 'tempo.ts/wagmi'
1270
1270
  *
1271
1271
  * const config = createConfig({
1272
- * chains: [tempo],
1272
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1273
1273
  * transports: {
1274
1274
  * [tempo.id]: http(),
1275
1275
  * },
@@ -1301,7 +1301,7 @@ export declare namespace prepareUpdateQuoteTokenSync {
1301
1301
  * import { Actions } from 'tempo.ts/wagmi'
1302
1302
  *
1303
1303
  * const config = createConfig({
1304
- * chains: [tempo],
1304
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1305
1305
  * transports: {
1306
1306
  * [tempo.id]: http(),
1307
1307
  * },
@@ -1332,7 +1332,7 @@ export declare namespace watchAdminRole {
1332
1332
  * import { Actions } from 'tempo.ts/wagmi'
1333
1333
  *
1334
1334
  * const config = createConfig({
1335
- * chains: [tempo],
1335
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1336
1336
  * transports: {
1337
1337
  * [tempo.id]: http(),
1338
1338
  * },
@@ -1363,7 +1363,7 @@ export declare namespace watchApprove {
1363
1363
  * import { Actions } from 'tempo.ts/wagmi'
1364
1364
  *
1365
1365
  * const config = createConfig({
1366
- * chains: [tempo],
1366
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1367
1367
  * transports: {
1368
1368
  * [tempo.id]: http(),
1369
1369
  * },
@@ -1394,7 +1394,7 @@ export declare namespace watchBurn {
1394
1394
  * import { Actions } from 'tempo.ts/wagmi'
1395
1395
  *
1396
1396
  * const config = createConfig({
1397
- * chains: [tempo],
1397
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1398
1398
  * transports: {
1399
1399
  * [tempo.id]: http(),
1400
1400
  * },
@@ -1425,7 +1425,7 @@ export declare namespace watchCreate {
1425
1425
  * import { Actions } from 'tempo.ts/wagmi'
1426
1426
  *
1427
1427
  * const config = createConfig({
1428
- * chains: [tempo],
1428
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1429
1429
  * transports: {
1430
1430
  * [tempo.id]: http(),
1431
1431
  * },
@@ -1457,7 +1457,7 @@ export declare namespace watchMint {
1457
1457
  * import { Actions } from 'tempo.ts/wagmi'
1458
1458
  *
1459
1459
  * const config = createConfig({
1460
- * chains: [tempo],
1460
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1461
1461
  * transports: {
1462
1462
  * [tempo.id]: http(),
1463
1463
  * },
@@ -1488,7 +1488,7 @@ export declare namespace watchRole {
1488
1488
  * import { Actions } from 'tempo.ts/wagmi'
1489
1489
  *
1490
1490
  * const config = createConfig({
1491
- * chains: [tempo],
1491
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1492
1492
  * transports: {
1493
1493
  * [tempo.id]: http(),
1494
1494
  * },
@@ -1519,7 +1519,7 @@ export declare namespace watchTransfer {
1519
1519
  * import { Actions } from 'tempo.ts/wagmi'
1520
1520
  *
1521
1521
  * const config = createConfig({
1522
- * chains: [tempo],
1522
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
1523
1523
  * transports: {
1524
1524
  * [tempo.id]: http(),
1525
1525
  * },