@xuda.io/account_module 1.2.2272 → 1.2.2273
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/index.mjs +1 -5
- package/index.mjs.premerge.bak +4725 -0
- package/package.json +1 -1
- package/scripts/run_backfill.mjs +1 -5
- package/scripts/run_backfill.mjs.premerge.bak +51 -0
- package/scripts/run_migrate_account.mjs +1 -5
- package/scripts/run_migrate_account.mjs.premerge.bak +54 -0
- package/scripts/run_migrate_all.mjs +1 -5
- package/scripts/run_migrate_all.mjs.premerge.bak +109 -0
package/index.mjs
CHANGED
|
@@ -37,11 +37,7 @@ const account_info_properties = [
|
|
|
37
37
|
'public_profile_disabled',
|
|
38
38
|
];
|
|
39
39
|
|
|
40
|
-
global._conf = (
|
|
41
|
-
await import(path.join(process.env.XUDA_HOME, process.env.XUDA_CONFIG), {
|
|
42
|
-
with: { type: 'json' },
|
|
43
|
-
})
|
|
44
|
-
).default;
|
|
40
|
+
global._conf = (await import(path.join(process.env.XUDA_HOME, "common", "load_conf.mjs"))).loadConf();
|
|
45
41
|
|
|
46
42
|
const _common = await import(path.join(process.env.XUDA_HOME, 'common', 'xuda_node_common.mjs'));
|
|
47
43
|
const _utils = await import(path.join(process.env.XUDA_HOME, 'common', 'xuda-cpi-utils.mjs'));
|