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
@@ -10,7 +10,7 @@ import * as viem_Actions from '../../viem/Actions/dex.js';
10
10
  * import { Actions } from 'tempo.ts/wagmi'
11
11
  *
12
12
  * const config = createConfig({
13
- * chains: [tempo],
13
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
14
14
  * transports: {
15
15
  * [tempo.id]: http(),
16
16
  * },
@@ -51,7 +51,7 @@ export async function buy(config, parameters) {
51
51
  * import { Actions } from 'tempo.ts/wagmi'
52
52
  *
53
53
  * const config = createConfig({
54
- * chains: [tempo],
54
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
55
55
  * transports: {
56
56
  * [tempo.id]: http(),
57
57
  * },
@@ -89,7 +89,7 @@ export async function buySync(config, parameters) {
89
89
  * import { Actions } from 'tempo.ts/wagmi'
90
90
  *
91
91
  * const config = createConfig({
92
- * chains: [tempo],
92
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
93
93
  * transports: {
94
94
  * [tempo.id]: http(),
95
95
  * },
@@ -127,7 +127,7 @@ export async function cancel(config, parameters) {
127
127
  * import { Actions } from 'tempo.ts/wagmi'
128
128
  *
129
129
  * const config = createConfig({
130
- * chains: [tempo],
130
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
131
131
  * transports: {
132
132
  * [tempo.id]: http(),
133
133
  * },
@@ -162,7 +162,7 @@ export async function cancelSync(config, parameters) {
162
162
  * import { Actions } from 'tempo.ts/wagmi'
163
163
  *
164
164
  * const config = createConfig({
165
- * chains: [tempo],
165
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
166
166
  * transports: {
167
167
  * [tempo.id]: http(),
168
168
  * },
@@ -200,7 +200,7 @@ export async function createPair(config, parameters) {
200
200
  * import { Actions } from 'tempo.ts/wagmi'
201
201
  *
202
202
  * const config = createConfig({
203
- * chains: [tempo],
203
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
204
204
  * transports: {
205
205
  * [tempo.id]: http(),
206
206
  * },
@@ -235,7 +235,7 @@ export async function createPairSync(config, parameters) {
235
235
  * import { Actions } from 'tempo.ts/wagmi'
236
236
  *
237
237
  * const config = createConfig({
238
- * chains: [tempo],
238
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
239
239
  * transports: {
240
240
  * [tempo.id]: http(),
241
241
  * },
@@ -286,7 +286,7 @@ export function getBalance(config, parameters) {
286
286
  * import { Actions } from 'tempo.ts/wagmi'
287
287
  *
288
288
  * const config = createConfig({
289
- * chains: [tempo],
289
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
290
290
  * transports: {
291
291
  * [tempo.id]: http(),
292
292
  * },
@@ -336,7 +336,7 @@ export function getBuyQuote(config, parameters) {
336
336
  * import { Actions } from 'tempo.ts/wagmi'
337
337
  *
338
338
  * const config = createConfig({
339
- * chains: [tempo],
339
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
340
340
  * transports: {
341
341
  * [tempo.id]: http(),
342
342
  * },
@@ -384,7 +384,7 @@ export function getOrder(config, parameters) {
384
384
  * import { Actions } from 'tempo.ts/wagmi'
385
385
  *
386
386
  * const config = createConfig({
387
- * chains: [tempo],
387
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
388
388
  * transports: {
389
389
  * [tempo.id]: http(),
390
390
  * },
@@ -439,7 +439,7 @@ export function getOrders(config, parameters = {}) {
439
439
  * import { Actions } from 'tempo.ts/wagmi'
440
440
  *
441
441
  * const config = createConfig({
442
- * chains: [tempo],
442
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
443
443
  * transports: {
444
444
  * [tempo.id]: http(),
445
445
  * },
@@ -488,7 +488,7 @@ export function getOrderbook(config, parameters) {
488
488
  * import { Actions, Tick } from 'tempo.ts/wagmi'
489
489
  *
490
490
  * const config = createConfig({
491
- * chains: [tempo],
491
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
492
492
  * transports: {
493
493
  * [tempo.id]: http(),
494
494
  * },
@@ -538,7 +538,7 @@ export function getPriceLevel(config, parameters) {
538
538
  * import { Actions } from 'tempo.ts/wagmi'
539
539
  *
540
540
  * const config = createConfig({
541
- * chains: [tempo],
541
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
542
542
  * transports: {
543
543
  * [tempo.id]: http(),
544
544
  * },
@@ -588,7 +588,7 @@ export function getSellQuote(config, parameters) {
588
588
  * import { Actions } from 'tempo.ts/wagmi'
589
589
  *
590
590
  * const config = createConfig({
591
- * chains: [tempo],
591
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
592
592
  * transports: {
593
593
  * [tempo.id]: http(),
594
594
  * },
@@ -626,7 +626,7 @@ export async function place(config, parameters) {
626
626
  * import { Actions } from 'tempo.ts/wagmi'
627
627
  *
628
628
  * const config = createConfig({
629
- * chains: [tempo],
629
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
630
630
  * transports: {
631
631
  * [tempo.id]: http(),
632
632
  * },
@@ -668,7 +668,7 @@ export async function placeFlip(config, parameters) {
668
668
  * import { Actions } from 'tempo.ts/wagmi'
669
669
  *
670
670
  * const config = createConfig({
671
- * chains: [tempo],
671
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
672
672
  * transports: {
673
673
  * [tempo.id]: http(),
674
674
  * },
@@ -710,7 +710,7 @@ export async function placeFlipSync(config, parameters) {
710
710
  * import { Actions } from 'tempo.ts/wagmi'
711
711
  *
712
712
  * const config = createConfig({
713
- * chains: [tempo],
713
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
714
714
  * transports: {
715
715
  * [tempo.id]: http(),
716
716
  * },
@@ -748,7 +748,7 @@ export async function placeSync(config, parameters) {
748
748
  * import { Actions } from 'tempo.ts/wagmi'
749
749
  *
750
750
  * const config = createConfig({
751
- * chains: [tempo],
751
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
752
752
  * transports: {
753
753
  * [tempo.id]: http(),
754
754
  * },
@@ -789,7 +789,7 @@ export async function sell(config, parameters) {
789
789
  * import { Actions } from 'tempo.ts/wagmi'
790
790
  *
791
791
  * const config = createConfig({
792
- * chains: [tempo],
792
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
793
793
  * transports: {
794
794
  * [tempo.id]: http(),
795
795
  * },
@@ -827,7 +827,7 @@ export async function sellSync(config, parameters) {
827
827
  * import { Actions } from 'tempo.ts/wagmi'
828
828
  *
829
829
  * const config = createConfig({
830
- * chains: [tempo],
830
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
831
831
  * transports: {
832
832
  * [tempo.id]: http(),
833
833
  * },
@@ -859,7 +859,7 @@ export function watchFlipOrderPlaced(config, parameters) {
859
859
  * import { Actions } from 'tempo.ts/wagmi'
860
860
  *
861
861
  * const config = createConfig({
862
- * chains: [tempo],
862
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
863
863
  * transports: {
864
864
  * [tempo.id]: http(),
865
865
  * },
@@ -891,7 +891,7 @@ export function watchOrderCancelled(config, parameters) {
891
891
  * import { Actions } from 'tempo.ts/wagmi'
892
892
  *
893
893
  * const config = createConfig({
894
- * chains: [tempo],
894
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
895
895
  * transports: {
896
896
  * [tempo.id]: http(),
897
897
  * },
@@ -923,7 +923,7 @@ export function watchOrderFilled(config, parameters) {
923
923
  * import { Actions } from 'tempo.ts/wagmi'
924
924
  *
925
925
  * const config = createConfig({
926
- * chains: [tempo],
926
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
927
927
  * transports: {
928
928
  * [tempo.id]: http(),
929
929
  * },
@@ -955,7 +955,7 @@ export function watchOrderPlaced(config, parameters) {
955
955
  * import { Actions } from 'tempo.ts/wagmi'
956
956
  *
957
957
  * const config = createConfig({
958
- * chains: [tempo],
958
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
959
959
  * transports: {
960
960
  * [tempo.id]: http(),
961
961
  * },
@@ -994,7 +994,7 @@ export async function withdraw(config, parameters) {
994
994
  * import { Actions } from 'tempo.ts/wagmi'
995
995
  *
996
996
  * const config = createConfig({
997
- * chains: [tempo],
997
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
998
998
  * transports: {
999
999
  * [tempo.id]: http(),
1000
1000
  * },
@@ -0,0 +1,35 @@
1
+ import type { Config } from '@wagmi/core';
2
+ import type { ChainIdParameter, UnionCompute } from '@wagmi/core/internal';
3
+ import * as viem_Actions from '../../viem/Actions/faucet.js';
4
+ /**
5
+ * Funds an account with an initial amount of set token(s)
6
+ * on Tempo's testnet.
7
+ *
8
+ * @example
9
+ * ```ts
10
+ * import { createConfig, http } from '@wagmi/core'
11
+ * import { tempo } from 'tempo.ts/chains'
12
+ * import { Actions } from 'tempo.ts/wagmi'
13
+ *
14
+ * const config = createConfig({
15
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
16
+ * transports: {
17
+ * [tempo.id]: http(),
18
+ * },
19
+ * })
20
+ *
21
+ * const hashes = await Actions.faucet.fund(config, {
22
+ * account: '0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef',
23
+ * })
24
+ * ```
25
+ *
26
+ * @param config - Config.
27
+ * @param parameters - Parameters.
28
+ * @returns The transaction hashes.
29
+ */
30
+ export declare function fund<config extends Config>(config: config, parameters: fund.Parameters<config>): Promise<fund.ReturnValue>;
31
+ export declare namespace fund {
32
+ type Parameters<config extends Config> = UnionCompute<ChainIdParameter<config> & viem_Actions.fund.Parameters>;
33
+ type ReturnValue = viem_Actions.fund.ReturnValue;
34
+ }
35
+ //# sourceMappingURL=faucet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"faucet.d.ts","sourceRoot":"","sources":["../../../src/wagmi/Actions/faucet.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAA;AACzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,YAAY,MAAM,8BAA8B,CAAA;AAE5D;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAsB,IAAI,CAAC,MAAM,SAAS,MAAM,EAC9C,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,GAClC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,CAI3B;AAED,MAAM,CAAC,OAAO,WAAW,IAAI,CAAC;IAC5B,KAAY,UAAU,CAAC,MAAM,SAAS,MAAM,IAAI,YAAY,CAC1D,gBAAgB,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,IAAI,CAAC,UAAU,CACxD,CAAA;IAED,KAAY,WAAW,GAAG,YAAY,CAAC,IAAI,CAAC,WAAW,CAAA;CACxD"}
@@ -0,0 +1,33 @@
1
+ import * as viem_Actions from '../../viem/Actions/faucet.js';
2
+ /**
3
+ * Funds an account with an initial amount of set token(s)
4
+ * on Tempo's testnet.
5
+ *
6
+ * @example
7
+ * ```ts
8
+ * import { createConfig, http } from '@wagmi/core'
9
+ * import { tempo } from 'tempo.ts/chains'
10
+ * import { Actions } from 'tempo.ts/wagmi'
11
+ *
12
+ * const config = createConfig({
13
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
14
+ * transports: {
15
+ * [tempo.id]: http(),
16
+ * },
17
+ * })
18
+ *
19
+ * const hashes = await Actions.faucet.fund(config, {
20
+ * account: '0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef',
21
+ * })
22
+ * ```
23
+ *
24
+ * @param config - Config.
25
+ * @param parameters - Parameters.
26
+ * @returns The transaction hashes.
27
+ */
28
+ export async function fund(config, parameters) {
29
+ const { chainId, ...rest } = parameters;
30
+ const client = config.getClient({ chainId });
31
+ return viem_Actions.fund(client, rest);
32
+ }
33
+ //# sourceMappingURL=faucet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"faucet.js","sourceRoot":"","sources":["../../../src/wagmi/Actions/faucet.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,YAAY,MAAM,8BAA8B,CAAA;AAE5D;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,CAAC,KAAK,UAAU,IAAI,CACxB,MAAc,EACd,UAAmC;IAEnC,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,EAAE,GAAG,UAAU,CAAA;IACvC,MAAM,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,EAAE,OAAO,EAAE,CAAC,CAAA;IAC5C,OAAO,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;AACxC,CAAC"}
@@ -14,7 +14,7 @@ import * as viem_Actions from '../../viem/Actions/fee.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
  * },
@@ -53,7 +53,7 @@ export declare namespace getUserToken {
53
53
  * import { Actions } from 'tempo.ts/wagmi'
54
54
  *
55
55
  * const config = createConfig({
56
- * chains: [tempo],
56
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
57
57
  * transports: {
58
58
  * [tempo.id]: http(),
59
59
  * },
@@ -87,7 +87,7 @@ export declare namespace setUserToken {
87
87
  * import { Actions } from 'tempo.ts/wagmi'
88
88
  *
89
89
  * const config = createConfig({
90
- * chains: [tempo],
90
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
91
91
  * transports: {
92
92
  * [tempo.id]: http(),
93
93
  * },
@@ -10,7 +10,7 @@ import * as viem_Actions from '../../viem/Actions/fee.js';
10
10
  * import { Actions } from 'tempo.ts/wagmi'
11
11
  *
12
12
  * const config = createConfig({
13
- * chains: [tempo],
13
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
14
14
  * transports: {
15
15
  * [tempo.id]: http(),
16
16
  * },
@@ -60,7 +60,7 @@ export function getUserToken(config, parameters) {
60
60
  * import { Actions } from 'tempo.ts/wagmi'
61
61
  *
62
62
  * const config = createConfig({
63
- * chains: [tempo],
63
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
64
64
  * transports: {
65
65
  * [tempo.id]: http(),
66
66
  * },
@@ -98,7 +98,7 @@ export async function setUserToken(config, parameters) {
98
98
  * import { Actions } from 'tempo.ts/wagmi'
99
99
  *
100
100
  * const config = createConfig({
101
- * chains: [tempo],
101
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
102
102
  * transports: {
103
103
  * [tempo.id]: http(),
104
104
  * },
@@ -1,5 +1,6 @@
1
1
  export * as amm from './amm.js';
2
2
  export * as dex from './dex.js';
3
+ export * as faucet from './faucet.js';
3
4
  export * as fee from './fee.js';
4
5
  export * as reward from './reward.js';
5
6
  export * as token from './token.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wagmi/Actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/wagmi/Actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA"}
@@ -1,5 +1,6 @@
1
1
  export * as amm from './amm.js';
2
2
  export * as dex from './dex.js';
3
+ export * as faucet from './faucet.js';
3
4
  export * as fee from './fee.js';
4
5
  export * as reward from './reward.js';
5
6
  export * as token from './token.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/wagmi/Actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/wagmi/Actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,GAAG,MAAM,UAAU,CAAA;AAC/B,OAAO,KAAK,MAAM,MAAM,aAAa,CAAA;AACrC,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA"}
@@ -14,7 +14,7 @@ import * as viem_Actions from '../../viem/Actions/reward.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
  * },
@@ -46,7 +46,7 @@ export declare namespace cancel {
46
46
  * import { Actions } from 'tempo.ts/wagmi'
47
47
  *
48
48
  * const config = createConfig({
49
- * chains: [tempo],
49
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
50
50
  * transports: {
51
51
  * [tempo.id]: http(),
52
52
  * },
@@ -78,7 +78,7 @@ export declare namespace cancelSync {
78
78
  * import { Actions } from 'tempo.ts/wagmi'
79
79
  *
80
80
  * const config = createConfig({
81
- * chains: [tempo],
81
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
82
82
  * transports: {
83
83
  * [tempo.id]: http(),
84
84
  * },
@@ -109,7 +109,7 @@ export declare namespace claim {
109
109
  * import { Actions } from 'tempo.ts/wagmi'
110
110
  *
111
111
  * const config = createConfig({
112
- * chains: [tempo],
112
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
113
113
  * transports: {
114
114
  * [tempo.id]: http(),
115
115
  * },
@@ -140,7 +140,7 @@ export declare namespace claimSync {
140
140
  * import { Actions } from 'tempo.ts/wagmi'
141
141
  *
142
142
  * const config = createConfig({
143
- * chains: [tempo],
143
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
144
144
  * transports: {
145
145
  * [tempo.id]: http(),
146
146
  * },
@@ -186,7 +186,7 @@ export declare namespace getStream {
186
186
  * import { Actions } from 'tempo.ts/wagmi'
187
187
  *
188
188
  * const config = createConfig({
189
- * chains: [tempo],
189
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
190
190
  * transports: {
191
191
  * [tempo.id]: http(),
192
192
  * },
@@ -225,7 +225,7 @@ export declare namespace getTotalPerSecond {
225
225
  * import { Actions } from 'tempo.ts/wagmi'
226
226
  *
227
227
  * const config = createConfig({
228
- * chains: [tempo],
228
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
229
229
  * transports: {
230
230
  * [tempo.id]: http(),
231
231
  * },
@@ -257,7 +257,7 @@ export declare namespace setRecipient {
257
257
  * import { Actions } from 'tempo.ts/wagmi'
258
258
  *
259
259
  * const config = createConfig({
260
- * chains: [tempo],
260
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
261
261
  * transports: {
262
262
  * [tempo.id]: http(),
263
263
  * },
@@ -289,7 +289,7 @@ export declare namespace setRecipientSync {
289
289
  * import { Actions } from 'tempo.ts/wagmi'
290
290
  *
291
291
  * const config = createConfig({
292
- * chains: [tempo],
292
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
293
293
  * transports: {
294
294
  * [tempo.id]: http(),
295
295
  * },
@@ -322,7 +322,7 @@ export declare namespace start {
322
322
  * import { Actions } from 'tempo.ts/wagmi'
323
323
  *
324
324
  * const config = createConfig({
325
- * chains: [tempo],
325
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
326
326
  * transports: {
327
327
  * [tempo.id]: http(),
328
328
  * },
@@ -10,7 +10,7 @@ import * as viem_Actions from '../../viem/Actions/reward.js';
10
10
  * import { Actions } from 'tempo.ts/wagmi'
11
11
  *
12
12
  * const config = createConfig({
13
- * chains: [tempo],
13
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
14
14
  * transports: {
15
15
  * [tempo.id]: http(),
16
16
  * },
@@ -46,7 +46,7 @@ export async function cancel(config, parameters) {
46
46
  * import { Actions } from 'tempo.ts/wagmi'
47
47
  *
48
48
  * const config = createConfig({
49
- * chains: [tempo],
49
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
50
50
  * transports: {
51
51
  * [tempo.id]: http(),
52
52
  * },
@@ -82,7 +82,7 @@ export async function cancelSync(config, parameters) {
82
82
  * import { Actions } from 'tempo.ts/wagmi'
83
83
  *
84
84
  * const config = createConfig({
85
- * chains: [tempo],
85
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
86
86
  * transports: {
87
87
  * [tempo.id]: http(),
88
88
  * },
@@ -117,7 +117,7 @@ export async function claim(config, parameters) {
117
117
  * import { Actions } from 'tempo.ts/wagmi'
118
118
  *
119
119
  * const config = createConfig({
120
- * chains: [tempo],
120
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
121
121
  * transports: {
122
122
  * [tempo.id]: http(),
123
123
  * },
@@ -152,7 +152,7 @@ export async function claimSync(config, parameters) {
152
152
  * import { Actions } from 'tempo.ts/wagmi'
153
153
  *
154
154
  * const config = createConfig({
155
- * chains: [tempo],
155
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
156
156
  * transports: {
157
157
  * [tempo.id]: http(),
158
158
  * },
@@ -201,7 +201,7 @@ export function getStream(config, parameters) {
201
201
  * import { Actions } from 'tempo.ts/wagmi'
202
202
  *
203
203
  * const config = createConfig({
204
- * chains: [tempo],
204
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
205
205
  * transports: {
206
206
  * [tempo.id]: http(),
207
207
  * },
@@ -249,7 +249,7 @@ export function getTotalPerSecond(config, parameters) {
249
249
  * import { Actions } from 'tempo.ts/wagmi'
250
250
  *
251
251
  * const config = createConfig({
252
- * chains: [tempo],
252
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
253
253
  * transports: {
254
254
  * [tempo.id]: http(),
255
255
  * },
@@ -285,7 +285,7 @@ export async function setRecipient(config, parameters) {
285
285
  * import { Actions } from 'tempo.ts/wagmi'
286
286
  *
287
287
  * const config = createConfig({
288
- * chains: [tempo],
288
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
289
289
  * transports: {
290
290
  * [tempo.id]: http(),
291
291
  * },
@@ -321,7 +321,7 @@ export async function setRecipientSync(config, parameters) {
321
321
  * import { Actions } from 'tempo.ts/wagmi'
322
322
  *
323
323
  * const config = createConfig({
324
- * chains: [tempo],
324
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
325
325
  * transports: {
326
326
  * [tempo.id]: http(),
327
327
  * },
@@ -358,7 +358,7 @@ export async function start(config, parameters) {
358
358
  * import { Actions } from 'tempo.ts/wagmi'
359
359
  *
360
360
  * const config = createConfig({
361
- * chains: [tempo],
361
+ * chains: [tempo({ feeToken: '0x20c0000000000000000000000000000000000001' })],
362
362
  * transports: {
363
363
  * [tempo.id]: http(),
364
364
  * },