@memfork/cli 0.1.7 → 0.1.8
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/dist/commands/provision.js +1 -1
- package/dist/config.d.ts +2 -0
- package/dist/config.js +2 -0
- package/package.json +1 -1
|
@@ -128,7 +128,7 @@ export async function autoProvision(opts) {
|
|
|
128
128
|
treeId: "", // no tree yet — initTree() creates the object
|
|
129
129
|
signer: privateKey,
|
|
130
130
|
network,
|
|
131
|
-
packageId: consts.
|
|
131
|
+
packageId: consts.memforksPackageId,
|
|
132
132
|
memwal: {
|
|
133
133
|
accountId,
|
|
134
134
|
delegateKey: delegate.privateKey,
|
package/dist/config.d.ts
CHANGED
|
@@ -25,11 +25,13 @@
|
|
|
25
25
|
export declare const MEMWAL_CONSTANTS: {
|
|
26
26
|
readonly testnet: {
|
|
27
27
|
readonly packageId: "0xcf6ad755a1cdff7217865c796778fabe5aa399cb0cf2eba986f4b582047229c6";
|
|
28
|
+
readonly memforksPackageId: "0xc9f0a4964f810c794479bc5b66347998969d2c59d6797c313b8a96d2bdd6a914";
|
|
28
29
|
readonly registryId: "0xe80f2feec1c139616a86c9f71210152e2a7ca552b20841f2e192f99f75864437";
|
|
29
30
|
readonly relayer: "https://relayer.staging.memwal.ai";
|
|
30
31
|
};
|
|
31
32
|
readonly mainnet: {
|
|
32
33
|
readonly packageId: "0xcee7a6fd8de52ce645c38332bde23d4a30fd9426bc4681409733dd50958a24c6";
|
|
34
|
+
readonly memforksPackageId: "0x7df9719d799386d34d657c49ae8cd6f5f03b39036f7c428b556095e42afd852f";
|
|
33
35
|
readonly registryId: "0x0da982cefa26864ae834a8a0504b904233d49e20fcc17c373c8bed99c75a7edd";
|
|
34
36
|
readonly relayer: "https://relayer.memwal.ai";
|
|
35
37
|
};
|
package/dist/config.js
CHANGED
|
@@ -30,11 +30,13 @@ import os from "node:os";
|
|
|
30
30
|
export const MEMWAL_CONSTANTS = {
|
|
31
31
|
testnet: {
|
|
32
32
|
packageId: "0xcf6ad755a1cdff7217865c796778fabe5aa399cb0cf2eba986f4b582047229c6",
|
|
33
|
+
memforksPackageId: "0xc9f0a4964f810c794479bc5b66347998969d2c59d6797c313b8a96d2bdd6a914",
|
|
33
34
|
registryId: "0xe80f2feec1c139616a86c9f71210152e2a7ca552b20841f2e192f99f75864437",
|
|
34
35
|
relayer: "https://relayer.staging.memwal.ai",
|
|
35
36
|
},
|
|
36
37
|
mainnet: {
|
|
37
38
|
packageId: "0xcee7a6fd8de52ce645c38332bde23d4a30fd9426bc4681409733dd50958a24c6",
|
|
39
|
+
memforksPackageId: "0x7df9719d799386d34d657c49ae8cd6f5f03b39036f7c428b556095e42afd852f",
|
|
38
40
|
registryId: "0x0da982cefa26864ae834a8a0504b904233d49e20fcc17c373c8bed99c75a7edd",
|
|
39
41
|
relayer: "https://relayer.memwal.ai",
|
|
40
42
|
},
|