@openfort/openfort-node 0.7.3 → 0.7.4
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -13
- package/dist/index.mjs.map +1 -1
- package/examples/evm/embedded/pregenerate.ts +1 -1
- package/openapi.json +4 -0
- package/package.json +1 -1
- package/pnpm-workspace.yaml +4 -0
|
@@ -11,7 +11,7 @@ const openfort = new Openfort(process.env.OPENFORT_API_KEY!, {
|
|
|
11
11
|
// This creates the user and wallet before they authenticate
|
|
12
12
|
const result = await openfort.accounts.evm.embedded.pregenerate(
|
|
13
13
|
{
|
|
14
|
-
email: "jaume+
|
|
14
|
+
email: "jaume+1123123@openfort.xyz",
|
|
15
15
|
accountType: "Externally Owned Account"
|
|
16
16
|
},
|
|
17
17
|
{
|
package/openapi.json
CHANGED
|
@@ -20701,6 +20701,10 @@
|
|
|
20701
20701
|
"name": "Session keys",
|
|
20702
20702
|
"tags": ["Sessions"]
|
|
20703
20703
|
},
|
|
20704
|
+
{
|
|
20705
|
+
"name": "Contracts",
|
|
20706
|
+
"tags": ["Contracts"]
|
|
20707
|
+
},
|
|
20704
20708
|
{
|
|
20705
20709
|
"name": "Sponsor transactions & Models",
|
|
20706
20710
|
"tags": ["Policies"]
|
package/package.json
CHANGED