ox 0.4.4 → 0.5.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 (61) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/_cjs/erc4337/EntryPoint.js +1320 -0
  3. package/_cjs/erc4337/EntryPoint.js.map +1 -0
  4. package/_cjs/erc4337/RpcSchema.js +3 -0
  5. package/_cjs/erc4337/RpcSchema.js.map +1 -0
  6. package/_cjs/erc4337/UserOperation.js +152 -0
  7. package/_cjs/erc4337/UserOperation.js.map +1 -0
  8. package/_cjs/erc4337/UserOperationGas.js +31 -0
  9. package/_cjs/erc4337/UserOperationGas.js.map +1 -0
  10. package/_cjs/erc4337/UserOperationReceipt.js +35 -0
  11. package/_cjs/erc4337/UserOperationReceipt.js.map +1 -0
  12. package/_cjs/erc4337/index.js +9 -0
  13. package/_cjs/erc4337/index.js.map +1 -0
  14. package/_cjs/index.docs.js +1 -0
  15. package/_cjs/index.docs.js.map +1 -1
  16. package/_cjs/version.js +1 -1
  17. package/_esm/erc4337/EntryPoint.js +1321 -0
  18. package/_esm/erc4337/EntryPoint.js.map +1 -0
  19. package/_esm/erc4337/RpcSchema.js +2 -0
  20. package/_esm/erc4337/RpcSchema.js.map +1 -0
  21. package/_esm/erc4337/UserOperation.js +324 -0
  22. package/_esm/erc4337/UserOperation.js.map +1 -0
  23. package/_esm/erc4337/UserOperationGas.js +61 -0
  24. package/_esm/erc4337/UserOperationGas.js.map +1 -0
  25. package/_esm/erc4337/UserOperationReceipt.js +79 -0
  26. package/_esm/erc4337/UserOperationReceipt.js.map +1 -0
  27. package/_esm/erc4337/index.js +31 -0
  28. package/_esm/erc4337/index.js.map +1 -0
  29. package/_esm/index.docs.js +1 -0
  30. package/_esm/index.docs.js.map +1 -1
  31. package/_esm/version.js +1 -1
  32. package/_types/erc4337/EntryPoint.d.ts +1480 -0
  33. package/_types/erc4337/EntryPoint.d.ts.map +1 -0
  34. package/_types/erc4337/RpcSchema.d.ts +159 -0
  35. package/_types/erc4337/RpcSchema.d.ts.map +1 -0
  36. package/_types/erc4337/UserOperation.d.ts +330 -0
  37. package/_types/erc4337/UserOperation.d.ts.map +1 -0
  38. package/_types/erc4337/UserOperationGas.d.ts +62 -0
  39. package/_types/erc4337/UserOperationGas.d.ts.map +1 -0
  40. package/_types/erc4337/UserOperationReceipt.d.ts +87 -0
  41. package/_types/erc4337/UserOperationReceipt.d.ts.map +1 -0
  42. package/_types/erc4337/index.d.ts +33 -0
  43. package/_types/erc4337/index.d.ts.map +1 -0
  44. package/_types/index.docs.d.ts +1 -0
  45. package/_types/index.docs.d.ts.map +1 -1
  46. package/_types/version.d.ts +1 -1
  47. package/erc4337/EntryPoint/package.json +6 -0
  48. package/erc4337/EntryPoint.ts +1419 -0
  49. package/erc4337/RpcSchema/package.json +6 -0
  50. package/erc4337/RpcSchema.ts +179 -0
  51. package/erc4337/UserOperation/package.json +6 -0
  52. package/erc4337/UserOperation.ts +617 -0
  53. package/erc4337/UserOperationGas/package.json +6 -0
  54. package/erc4337/UserOperationGas.ts +109 -0
  55. package/erc4337/UserOperationReceipt/package.json +6 -0
  56. package/erc4337/UserOperationReceipt.ts +139 -0
  57. package/erc4337/index.ts +38 -0
  58. package/erc4337/package.json +6 -0
  59. package/index.docs.ts +1 -0
  60. package/package.json +31 -1
  61. package/version.ts +1 -1
@@ -0,0 +1,33 @@
1
+ /** @entrypointCategory ERCs */
2
+ export type {};
3
+ /**
4
+ * Utility functions and types for working with [ERC-4337 EntryPoints](https://eips.ethereum.org/EIPS/eip-4337).
5
+ *
6
+ * @category ERC-4337
7
+ */
8
+ export * as EntryPoint from './EntryPoint.js';
9
+ /**
10
+ * Utility types for working with ERC-4337 JSON-RPC schemas.
11
+ *
12
+ * @category ERC-4337
13
+ */
14
+ export * as RpcSchema from './RpcSchema.js';
15
+ /**
16
+ * Utility functions and types for working with [ERC-4337 User Operations](https://eips.ethereum.org/EIPS/eip-4337).
17
+ *
18
+ * @category ERC-4337
19
+ */
20
+ export * as UserOperation from './UserOperation.js';
21
+ /**
22
+ * Utility functions and types for working with [ERC-4337 User Operation Gas](https://eips.ethereum.org/EIPS/eip-4337).
23
+ *
24
+ * @category ERC-4337
25
+ */
26
+ export * as UserOperationGas from './UserOperationGas.js';
27
+ /**
28
+ * Utility functions and types for working with [ERC-4337 User Operation Receipts](https://eips.ethereum.org/EIPS/eip-4337).
29
+ *
30
+ * @category ERC-4337
31
+ */
32
+ export * as UserOperationReceipt from './UserOperationReceipt.js';
33
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../erc4337/index.ts"],"names":[],"mappings":"AAAA,+BAA+B;AAE/B,YAAY,EAAE,CAAA;AAEd;;;;GAIG;AACH,OAAO,KAAK,UAAU,MAAM,iBAAiB,CAAA;AAE7C;;;;GAIG;AACH,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAE3C;;;;GAIG;AACH,OAAO,KAAK,aAAa,MAAM,oBAAoB,CAAA;AAEnD;;;;GAIG;AACH,OAAO,KAAK,gBAAgB,MAAM,uBAAuB,CAAA;AAEzD;;;;GAIG;AACH,OAAO,KAAK,oBAAoB,MAAM,2BAA2B,CAAA"}
@@ -1,4 +1,5 @@
1
1
  /** Used by api-extractor for docgen. https://github.com/microsoft/rushstack/issues/3557 */
2
2
  export * from './index.js';
3
+ export * from './erc4337/index.js';
3
4
  export * from './erc6492/index.js';
4
5
  //# sourceMappingURL=index.docs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.docs.d.ts","sourceRoot":"","sources":["../index.docs.ts"],"names":[],"mappings":"AACA,2FAA2F;AAC3F,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.docs.d.ts","sourceRoot":"","sources":["../index.docs.ts"],"names":[],"mappings":"AACA,2FAA2F;AAC3F,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA"}
@@ -1,3 +1,3 @@
1
1
  /** @internal */
2
- export declare const version = "0.4.4";
2
+ export declare const version = "0.5.0";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "type": "module",
3
+ "types": "../../_types/erc4337/EntryPoint.d.ts",
4
+ "main": "../../_cjs/erc4337/EntryPoint.js",
5
+ "module": "../../_esm/erc4337/EntryPoint.js"
6
+ }