tempo.ts 0.6.2 → 0.7.1

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 (91) hide show
  1. package/CHANGELOG.md +134 -0
  2. package/README.md +6 -2
  3. package/dist/ox/Transaction.js +1 -1
  4. package/dist/ox/Transaction.js.map +1 -1
  5. package/dist/server/Handler.d.ts +346 -0
  6. package/dist/server/Handler.d.ts.map +1 -0
  7. package/dist/server/Handler.js +441 -0
  8. package/dist/server/Handler.js.map +1 -0
  9. package/dist/server/Kv.d.ts +16 -0
  10. package/dist/server/Kv.d.ts.map +1 -0
  11. package/dist/server/Kv.js +25 -0
  12. package/dist/server/Kv.js.map +1 -0
  13. package/dist/server/index.d.ts +3 -0
  14. package/dist/server/index.d.ts.map +1 -0
  15. package/dist/server/index.js +3 -0
  16. package/dist/server/index.js.map +1 -0
  17. package/dist/server/internal/requestListener.d.ts +124 -0
  18. package/dist/server/internal/requestListener.d.ts.map +1 -0
  19. package/dist/server/internal/requestListener.js +174 -0
  20. package/dist/server/internal/requestListener.js.map +1 -0
  21. package/dist/viem/Actions/amm.d.ts +9 -41
  22. package/dist/viem/Actions/amm.d.ts.map +1 -1
  23. package/dist/viem/Actions/amm.js +15 -26
  24. package/dist/viem/Actions/amm.js.map +1 -1
  25. package/dist/viem/Actions/reward.d.ts +0 -1067
  26. package/dist/viem/Actions/reward.d.ts.map +1 -1
  27. package/dist/viem/Actions/reward.js +4 -212
  28. package/dist/viem/Actions/reward.js.map +1 -1
  29. package/dist/viem/Decorator.d.ts +0 -263
  30. package/dist/viem/Decorator.d.ts.map +1 -1
  31. package/dist/viem/Decorator.js +0 -10
  32. package/dist/viem/Decorator.js.map +1 -1
  33. package/dist/viem/Storage.d.ts +23 -0
  34. package/dist/viem/Storage.d.ts.map +1 -0
  35. package/dist/viem/Storage.js +47 -0
  36. package/dist/viem/Storage.js.map +1 -0
  37. package/dist/viem/Transport.d.ts +10 -1
  38. package/dist/viem/Transport.d.ts.map +1 -1
  39. package/dist/viem/Transport.js +22 -3
  40. package/dist/viem/Transport.js.map +1 -1
  41. package/dist/viem/internal/utils.d.ts +6 -0
  42. package/dist/viem/internal/utils.d.ts.map +1 -1
  43. package/dist/viem/internal/utils.js +24 -0
  44. package/dist/viem/internal/utils.js.map +1 -1
  45. package/dist/wagmi/Actions/reward.d.ts +0 -110
  46. package/dist/wagmi/Actions/reward.d.ts.map +1 -1
  47. package/dist/wagmi/Actions/reward.js +0 -121
  48. package/dist/wagmi/Actions/reward.js.map +1 -1
  49. package/dist/wagmi/Connector.d.ts +6 -17
  50. package/dist/wagmi/Connector.d.ts.map +1 -1
  51. package/dist/wagmi/Connector.js +17 -43
  52. package/dist/wagmi/Connector.js.map +1 -1
  53. package/dist/wagmi/Hooks/reward.d.ts +0 -88
  54. package/dist/wagmi/Hooks/reward.d.ts.map +1 -1
  55. package/dist/wagmi/Hooks/reward.js +0 -103
  56. package/dist/wagmi/Hooks/reward.js.map +1 -1
  57. package/dist/wagmi/KeyManager.d.ts +57 -0
  58. package/dist/wagmi/KeyManager.d.ts.map +1 -0
  59. package/dist/wagmi/KeyManager.js +101 -0
  60. package/dist/wagmi/KeyManager.js.map +1 -0
  61. package/dist/wagmi/index.d.ts +1 -0
  62. package/dist/wagmi/index.d.ts.map +1 -1
  63. package/dist/wagmi/index.js +1 -0
  64. package/dist/wagmi/index.js.map +1 -1
  65. package/package.json +8 -2
  66. package/src/ox/Transaction.ts +1 -1
  67. package/src/ox/e2e.test.ts +7 -0
  68. package/src/server/Handler.test.ts +566 -0
  69. package/src/server/Handler.ts +577 -0
  70. package/src/server/Kv.ts +40 -0
  71. package/src/server/index.ts +2 -0
  72. package/src/server/internal/requestListener.ts +285 -0
  73. package/src/viem/Actions/amm.test.ts +10 -284
  74. package/src/viem/Actions/amm.ts +32 -40
  75. package/src/viem/Actions/reward.test.ts +4 -212
  76. package/src/viem/Actions/reward.ts +4 -291
  77. package/src/viem/Decorator.ts +0 -294
  78. package/src/viem/Storage.ts +88 -0
  79. package/src/viem/Transport.ts +40 -2
  80. package/src/viem/e2e.test.ts +106 -3
  81. package/src/viem/internal/utils.ts +21 -0
  82. package/src/wagmi/Actions/amm.test.ts +7 -85
  83. package/src/wagmi/Actions/reward.test.ts +0 -99
  84. package/src/wagmi/Actions/reward.ts +0 -203
  85. package/src/wagmi/Connector.test.ts +4 -1
  86. package/src/wagmi/Connector.ts +24 -58
  87. package/src/wagmi/Hooks/amm.test.ts +8 -200
  88. package/src/wagmi/Hooks/reward.test.ts +1 -142
  89. package/src/wagmi/Hooks/reward.ts +0 -196
  90. package/src/wagmi/KeyManager.ts +159 -0
  91. package/src/wagmi/index.ts +1 -0
@@ -0,0 +1,57 @@
1
+ import type * as Hex from 'ox/Hex';
2
+ import type * as Handler from '../server/Handler.js';
3
+ import * as Storage from '../viem/Storage.js';
4
+ export type KeyManager = {
5
+ /** Function to fetch create options for WebAuthn. */
6
+ getChallenge?: (() => Promise<Handler.keyManager.ChallengeResponse>) | undefined;
7
+ /** Function to fetch the public key for a credential. */
8
+ getPublicKey: (parameters: Handler.keyManager.GetPublicKeyParameters) => Promise<Hex.Hex>;
9
+ /** Function to set the public key for a credential. */
10
+ setPublicKey: (parameters: Handler.keyManager.SetPublicKeyParameters) => Promise<void>;
11
+ };
12
+ /** Instantiates a key manager. */
13
+ export declare function from<manager extends KeyManager>(manager: manager): manager;
14
+ /** Instantiates a key manager from a Storage instance. */
15
+ export declare function fromStorage(s: Storage.Storage): KeyManager;
16
+ /**
17
+ * Instantiates a key manager from a localStorage instance.
18
+ *
19
+ * WARNING: Do not use this in production.
20
+ * This is because we are unable to extract a user's public key after the registration
21
+ * process. If a user clears their storage, or visits the website on a different device,
22
+ * they will not be able to access their account.
23
+ *
24
+ * Instead, we recommend to set up a remote store such as [`KeyManager.http`](#http) to register
25
+ * public keys against their WebAuthn credential.
26
+ *
27
+ * @see {@link http}
28
+ *
29
+ * @deprecated
30
+ */
31
+ export declare function localStorage(options?: Storage.localStorage.Options): KeyManager;
32
+ /**
33
+ * Instantiates a key manager that uses HTTP endpoints for credential management.
34
+ *
35
+ * @example
36
+ * ```tsx
37
+ * import { KeyManager } from 'tempo.ts/wagmi'
38
+ *
39
+ * const keyManager = KeyManager.http('https://api.example.com')
40
+ * ```
41
+ *
42
+ * @param url - The URL to use for the HTTP endpoints.
43
+ * @param options - Configuration options for HTTP endpoints.
44
+ * @returns A KeyManager instance that uses HTTP for credential operations.
45
+ */
46
+ export declare function http(url: string | {
47
+ getChallenge?: string | Request | undefined;
48
+ getPublicKey?: string | Request | undefined;
49
+ setPublicKey?: string | Request | undefined;
50
+ }, options?: http.Options): KeyManager;
51
+ export declare namespace http {
52
+ type Options = {
53
+ /** Custom fetch function. @default `globalThis.fetch`. */
54
+ fetch?: typeof fetch | undefined;
55
+ };
56
+ }
57
+ //# sourceMappingURL=KeyManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KeyManager.d.ts","sourceRoot":"","sources":["../../src/wagmi/KeyManager.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,GAAG,MAAM,QAAQ,CAAA;AAElC,OAAO,KAAK,KAAK,OAAO,MAAM,sBAAsB,CAAA;AACpD,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAE7C,MAAM,MAAM,UAAU,GAAG;IACvB,qDAAqD;IACrD,YAAY,CAAC,EACT,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC,GACrD,SAAS,CAAA;IACb,yDAAyD;IACzD,YAAY,EAAE,CACZ,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,sBAAsB,KAClD,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IACrB,uDAAuD;IACvD,YAAY,EAAE,CACZ,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,sBAAsB,KAClD,OAAO,CAAC,IAAI,CAAC,CAAA;CACnB,CAAA;AAED,kCAAkC;AAClC,wBAAgB,IAAI,CAAC,OAAO,SAAS,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAE1E;AAED,0DAA0D;AAC1D,wBAAgB,WAAW,CAAC,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,UAAU,CAY1D;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,YAAY,CAAC,OAAO,GAAE,OAAO,CAAC,YAAY,CAAC,OAAY,cAEtE;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,IAAI,CAClB,GAAG,EACC,MAAM,GACN;IACE,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAA;IAC3C,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAA;IAC3C,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAA;CAC5C,EACL,OAAO,GAAE,IAAI,CAAC,OAAY,GACzB,UAAU,CAqEZ;AAED,yBAAiB,IAAI,CAAC;IACpB,KAAY,OAAO,GAAG;QACpB,0DAA0D;QAC1D,KAAK,CAAC,EAAE,OAAO,KAAK,GAAG,SAAS,CAAA;KACjC,CAAA;CACF"}
@@ -0,0 +1,101 @@
1
+ import * as Json from 'ox/Json';
2
+ import * as Storage from '../viem/Storage.js';
3
+ /** Instantiates a key manager. */
4
+ export function from(manager) {
5
+ return manager;
6
+ }
7
+ /** Instantiates a key manager from a Storage instance. */
8
+ export function fromStorage(s) {
9
+ const storage = Storage.from(s, { key: 'webAuthn:publicKey' });
10
+ return from({
11
+ async getPublicKey(parameters) {
12
+ const publicKey = await storage.getItem(parameters.credential.id);
13
+ if (!publicKey)
14
+ throw new Error('publicKey not found.');
15
+ return publicKey;
16
+ },
17
+ async setPublicKey(parameters) {
18
+ await storage.setItem(parameters.credential.id, parameters.publicKey);
19
+ },
20
+ });
21
+ }
22
+ /**
23
+ * Instantiates a key manager from a localStorage instance.
24
+ *
25
+ * WARNING: Do not use this in production.
26
+ * This is because we are unable to extract a user's public key after the registration
27
+ * process. If a user clears their storage, or visits the website on a different device,
28
+ * they will not be able to access their account.
29
+ *
30
+ * Instead, we recommend to set up a remote store such as [`KeyManager.http`](#http) to register
31
+ * public keys against their WebAuthn credential.
32
+ *
33
+ * @see {@link http}
34
+ *
35
+ * @deprecated
36
+ */
37
+ export function localStorage(options = {}) {
38
+ return fromStorage(Storage.localStorage(options));
39
+ }
40
+ /**
41
+ * Instantiates a key manager that uses HTTP endpoints for credential management.
42
+ *
43
+ * @example
44
+ * ```tsx
45
+ * import { KeyManager } from 'tempo.ts/wagmi'
46
+ *
47
+ * const keyManager = KeyManager.http('https://api.example.com')
48
+ * ```
49
+ *
50
+ * @param url - The URL to use for the HTTP endpoints.
51
+ * @param options - Configuration options for HTTP endpoints.
52
+ * @returns A KeyManager instance that uses HTTP for credential operations.
53
+ */
54
+ export function http(url, options = {}) {
55
+ const { fetch: fetchFn = globalThis.fetch } = options;
56
+ const { getChallenge, getPublicKey, setPublicKey } = (() => {
57
+ const base = typeof url === 'string' ? url : '';
58
+ const urls = typeof url === 'object' ? url : {};
59
+ return {
60
+ getChallenge: urls.getChallenge ?? `${base}/challenge`,
61
+ getPublicKey: urls.getPublicKey ?? `${base}/:credentialId`,
62
+ setPublicKey: urls.setPublicKey ?? `${base}/:credentialId`,
63
+ };
64
+ })();
65
+ return from({
66
+ async getChallenge() {
67
+ const request = getChallenge instanceof Request
68
+ ? getChallenge
69
+ : new Request(getChallenge);
70
+ const response = await fetchFn(request);
71
+ if (!response.ok)
72
+ throw new Error(`Failed to get create options: ${response.statusText}`);
73
+ return await response.json();
74
+ },
75
+ async getPublicKey(parameters) {
76
+ const request = getPublicKey instanceof Request
77
+ ? getPublicKey
78
+ : new Request(getPublicKey);
79
+ const response = await fetchFn(new Request(request.url.replace(':credentialId', parameters.credential.id), request));
80
+ if (!response.ok)
81
+ throw new Error(`Failed to get public key: ${response.statusText}`);
82
+ const data = await response.json();
83
+ return data.publicKey;
84
+ },
85
+ async setPublicKey(parameters) {
86
+ const request = setPublicKey instanceof Request
87
+ ? setPublicKey
88
+ : new Request(setPublicKey);
89
+ const response = await fetchFn(new Request(request.url.replace(':credentialId', parameters.credential.id), request), {
90
+ method: 'POST',
91
+ headers: {
92
+ 'Content-Type': 'application/json',
93
+ },
94
+ body: Json.stringify(parameters),
95
+ });
96
+ if (!response.ok)
97
+ throw new Error(`Failed to set public key: ${response.statusText}`);
98
+ },
99
+ });
100
+ }
101
+ //# sourceMappingURL=KeyManager.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"KeyManager.js","sourceRoot":"","sources":["../../src/wagmi/KeyManager.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,IAAI,MAAM,SAAS,CAAA;AAE/B,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAiB7C,kCAAkC;AAClC,MAAM,UAAU,IAAI,CAA6B,OAAgB;IAC/D,OAAO,OAAO,CAAA;AAChB,CAAC;AAED,0DAA0D;AAC1D,MAAM,UAAU,WAAW,CAAC,CAAkB;IAC5C,MAAM,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,GAAG,EAAE,oBAAoB,EAAE,CAAC,CAAA;IAC9D,OAAO,IAAI,CAAC;QACV,KAAK,CAAC,YAAY,CAAC,UAAU;YAC3B,MAAM,SAAS,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC,CAAA;YACjE,IAAI,CAAC,SAAS;gBAAE,MAAM,IAAI,KAAK,CAAC,sBAAsB,CAAC,CAAA;YACvD,OAAO,SAAoB,CAAA;QAC7B,CAAC;QACD,KAAK,CAAC,YAAY,CAAC,UAAU;YAC3B,MAAM,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,EAAE,UAAU,CAAC,SAAS,CAAC,CAAA;QACvE,CAAC;KACF,CAAC,CAAA;AACJ,CAAC;AAED;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,YAAY,CAAC,UAAwC,EAAE;IACrE,OAAO,WAAW,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC,CAAA;AACnD,CAAC;AAED;;;;;;;;;;;;;GAaG;AACH,MAAM,UAAU,IAAI,CAClB,GAMK,EACL,UAAwB,EAAE;IAE1B,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,UAAU,CAAC,KAAK,EAAE,GAAG,OAAO,CAAA;IACrD,MAAM,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,GAAG,CAAC,GAAG,EAAE;QACzD,MAAM,IAAI,GAAG,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAC/C,MAAM,IAAI,GAAG,OAAO,GAAG,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAA;QAC/C,OAAO;YACL,YAAY,EAAE,IAAI,CAAC,YAAY,IAAI,GAAG,IAAI,YAAY;YACtD,YAAY,EAAE,IAAI,CAAC,YAAY,IAAI,GAAG,IAAI,gBAAgB;YAC1D,YAAY,EAAE,IAAI,CAAC,YAAY,IAAI,GAAG,IAAI,gBAAgB;SAC3D,CAAA;IACH,CAAC,CAAC,EAAE,CAAA;IAEJ,OAAO,IAAI,CAAC;QACV,KAAK,CAAC,YAAY;YAChB,MAAM,OAAO,GACX,YAAY,YAAY,OAAO;gBAC7B,CAAC,CAAC,YAAY;gBACd,CAAC,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC,CAAA;YAE/B,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,CAAA;YAEvC,IAAI,CAAC,QAAQ,CAAC,EAAE;gBACd,MAAM,IAAI,KAAK,CAAC,iCAAiC,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAA;YACzE,OAAO,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAA;QAC9B,CAAC;QAED,KAAK,CAAC,YAAY,CAAC,UAAU;YAC3B,MAAM,OAAO,GACX,YAAY,YAAY,OAAO;gBAC7B,CAAC,CAAC,YAAY;gBACd,CAAC,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC,CAAA;YAE/B,MAAM,QAAQ,GAAG,MAAM,OAAO,CAC5B,IAAI,OAAO,CACT,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC,EAC9D,OAAO,CACR,CACF,CAAA;YAED,IAAI,CAAC,QAAQ,CAAC,EAAE;gBACd,MAAM,IAAI,KAAK,CAAC,6BAA6B,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAA;YACrE,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAA;YAClC,OAAO,IAAI,CAAC,SAAoB,CAAA;QAClC,CAAC;QAED,KAAK,CAAC,YAAY,CAAC,UAAU;YAC3B,MAAM,OAAO,GACX,YAAY,YAAY,OAAO;gBAC7B,CAAC,CAAC,YAAY;gBACd,CAAC,CAAC,IAAI,OAAO,CAAC,YAAY,CAAC,CAAA;YAE/B,MAAM,QAAQ,GAAG,MAAM,OAAO,CAC5B,IAAI,OAAO,CACT,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC,EAC9D,OAAO,CACR,EACD;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;iBACnC;gBACD,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC;aACjC,CACF,CAAA;YAED,IAAI,CAAC,QAAQ,CAAC,EAAE;gBACd,MAAM,IAAI,KAAK,CAAC,6BAA6B,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAA;QACvE,CAAC;KACF,CAAC,CAAA;AACJ,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export * as Actions from './Actions/index.js';
2
2
  export { dangerous_secp256k1, webAuthn } from './Connector.js';
3
3
  export * as Hooks from './Hooks/index.js';
4
+ export * as KeyManager from './KeyManager.js';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/wagmi/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9D,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/wagmi/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9D,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAA;AACzC,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAA"}
@@ -1,4 +1,5 @@
1
1
  export * as Actions from './Actions/index.js';
2
2
  export { dangerous_secp256k1, webAuthn } from './Connector.js';
3
3
  export * as Hooks from './Hooks/index.js';
4
+ export * as KeyManager from './KeyManager.js';
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/wagmi/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9D,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/wagmi/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAC9D,OAAO,KAAK,KAAK,MAAM,kBAAkB,CAAA;AACzC,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAA"}
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "tempo.ts",
3
3
  "type": "module",
4
- "version": "0.6.2",
4
+ "version": "0.7.1",
5
5
  "dependencies": {
6
- "ox": "~0.9.16"
6
+ "@remix-run/fetch-router": "~0.12.0",
7
+ "ox": "~0.9.17"
7
8
  },
8
9
  "peerDependencies": {
9
10
  "@tanstack/query-core": ">=5.0.0",
@@ -65,6 +66,11 @@
65
66
  "types": "./dist/prool/index.d.ts",
66
67
  "default": "./dist/prool/index.js"
67
68
  },
69
+ "./server": {
70
+ "src": "./src/server/index.ts",
71
+ "types": "./dist/server/index.d.ts",
72
+ "default": "./dist/server/index.js"
73
+ },
68
74
  "./viem": {
69
75
  "src": "./src/viem/index.ts",
70
76
  "types": "./dist/viem/index.d.ts",
@@ -188,7 +188,7 @@ export function fromRpc<
188
188
  if (transaction.calls)
189
189
  transaction_.calls = transaction.calls.map((call) => ({
190
190
  to: call.to,
191
- value: call.value ? BigInt(call.value) : undefined,
191
+ value: call.value && call.value !== '0x' ? BigInt(call.value) : undefined,
192
192
  // @ts-expect-error
193
193
  data: call.input || call.data || '0x',
194
194
  }))
@@ -75,6 +75,8 @@ test('behavior: default (secp256k1)', async () => {
75
75
  hash,
76
76
  feeToken: _,
77
77
  from,
78
+ // @ts-expect-error
79
+ keyAuthorization: __,
78
80
  nonce,
79
81
  maxFeePerGas,
80
82
  maxPriorityFeePerGas,
@@ -213,6 +215,8 @@ test('behavior: default (p256)', async () => {
213
215
  chainId,
214
216
  feeToken: _,
215
217
  from,
218
+ // @ts-expect-error
219
+ keyAuthorization: __,
216
220
  hash,
217
221
  nonce,
218
222
  maxFeePerGas,
@@ -351,6 +355,7 @@ test('behavior: default (p256 - webcrypto)', async () => {
351
355
  chainId,
352
356
  feeToken: _,
353
357
  from,
358
+ keyAuthorization: __,
354
359
  hash,
355
360
  nonce,
356
361
  maxFeePerGas,
@@ -496,6 +501,8 @@ test('behavior: default (webauthn)', async () => {
496
501
  chainId,
497
502
  feeToken: _,
498
503
  from,
504
+ // @ts-expect-error
505
+ keyAuthorization: __,
499
506
  hash,
500
507
  nonce,
501
508
  maxFeePerGas,