@openfort/openfort-node 0.9.2 → 0.10.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 (47) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/index.d.mts +559 -582
  3. package/dist/index.d.ts +559 -582
  4. package/dist/index.js +539 -189
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.mjs +538 -182
  7. package/dist/index.mjs.map +1 -1
  8. package/examples/evm/delegation/sendTransaction.ts +34 -0
  9. package/examples/evm/policies/createAccountPolicy.ts +68 -0
  10. package/examples/evm/policies/createProjectPolicy.ts +53 -0
  11. package/examples/evm/policies/deletePolicy.ts +34 -0
  12. package/examples/evm/policies/getPolicyById.ts +34 -0
  13. package/examples/evm/policies/listAccountPolicies.ts +11 -0
  14. package/examples/evm/policies/listPolicies.ts +11 -0
  15. package/examples/evm/policies/listProjectPolicies.ts +11 -0
  16. package/examples/evm/policies/signTypedDataPolicy.ts +35 -0
  17. package/examples/evm/policies/updatePolicy.ts +44 -0
  18. package/examples/evm/policies/validation.ts +45 -0
  19. package/examples/evm/transactions/sendTransaction.ts +44 -0
  20. package/examples/package.json +13 -0
  21. package/examples/pnpm-lock.yaml +933 -0
  22. package/examples/solana/policies/createSolAllowlistPolicy.ts +27 -0
  23. package/examples/solana/policies/createSolMessagePolicy.ts +29 -0
  24. package/examples/solana/policies/createSplTokenLimitsPolicy.ts +33 -0
  25. package/examples/solana/transactions/sendRawTransaction.ts +23 -0
  26. package/examples/solana/transactions/sendTransaction.ts +37 -0
  27. package/examples/solana/transactions/transfer.ts +44 -0
  28. package/knip.json +10 -1
  29. package/openapi.json +28 -637
  30. package/package.json +42 -4
  31. package/tsconfig.json +3 -4
  32. package/examples/policies/createAccountPolicy.ts +0 -71
  33. package/examples/policies/createEvmPolicy.ts +0 -149
  34. package/examples/policies/createSolanaPolicy.ts +0 -176
  35. package/examples/policies/createTypedDataPolicy.ts +0 -159
  36. package/examples/policies/deletePolicy.ts +0 -34
  37. package/examples/policies/getPolicy.ts +0 -41
  38. package/examples/policies/listPolicies.ts +0 -34
  39. package/examples/policies/multiRulePolicy.ts +0 -133
  40. package/examples/policies/updatePolicy.ts +0 -77
  41. package/examples/policies/validatePolicy.ts +0 -176
  42. /package/examples/{contracts → evm/contracts}/createContract.ts +0 -0
  43. /package/examples/{contracts → evm/contracts}/listContracts.ts +0 -0
  44. /package/examples/{transactions → evm/transactionIntents}/createTransactionIntent.ts +0 -0
  45. /package/examples/{transactions → evm/transactionIntents}/estimateGas.ts +0 -0
  46. /package/examples/{transactions → evm/transactionIntents}/getTransactionIntent.ts +0 -0
  47. /package/examples/{transactions → evm/transactionIntents}/listTransactionIntents.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#82](https://github.com/openfort-xyz/openfort-node/pull/82) [`9405310`](https://github.com/openfort-xyz/openfort-node/commit/94053105e6bd26505da3545f79d5280c2a1095c0) Thanks [@0xbri3t](https://github.com/0xbri3t)! - improve bundle size and introduce send tx with solana gasless
8
+
9
+ ## 0.9.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#80](https://github.com/openfort-xyz/openfort-node/pull/80) [`12bfbf7`](https://github.com/openfort-xyz/openfort-node/commit/12bfbf70fcd9cab38d25a23de22672e2adcb15a5) Thanks [@0xbri3t](https://github.com/0xbri3t)! - sendTransaction abstraction
14
+
3
15
  ## 0.9.2
4
16
 
5
17
  ### Patch Changes