@xyo-network/os-runtime 3.0.13 → 3.0.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/os-runtime",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.14",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@xyo-network/archivist": "^3.0.7",
|
|
40
40
|
"@xyo-network/archivist-indexeddb": "^3.0.7",
|
|
41
41
|
"@xyo-network/archivist-model": "^3.0.7",
|
|
42
|
-
"@xyo-network/bios": "^3.0.
|
|
43
|
-
"@xyo-network/bios-model": "^3.0.
|
|
42
|
+
"@xyo-network/bios": "^3.0.14",
|
|
43
|
+
"@xyo-network/bios-model": "^3.0.14",
|
|
44
44
|
"@xyo-network/bridge-model": "^3.0.7",
|
|
45
45
|
"@xyo-network/diviner-abstract": "^3.0.7",
|
|
46
46
|
"@xyo-network/diviner-model": "^3.0.7",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@xyo-network/diviner-payload-indexeddb": "^3.0.7",
|
|
49
49
|
"@xyo-network/diviner-payload-model": "^3.0.7",
|
|
50
50
|
"@xyo-network/diviner-temporal-indexing-model": "^3.0.7",
|
|
51
|
-
"@xyo-network/kernel": "^3.0.
|
|
52
|
-
"@xyo-network/kernel-model": "^3.0.
|
|
51
|
+
"@xyo-network/kernel": "^3.0.14",
|
|
52
|
+
"@xyo-network/kernel-model": "^3.0.14",
|
|
53
53
|
"@xyo-network/manifest": "^3.0.7",
|
|
54
54
|
"@xyo-network/manifest-wrapper": "^3.0.7",
|
|
55
55
|
"@xyo-network/module-abstract": "^3.0.7",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@xyo-network/module-model": "^3.0.7",
|
|
59
59
|
"@xyo-network/module-resolver": "^3.0.7",
|
|
60
60
|
"@xyo-network/node-model": "^3.0.7",
|
|
61
|
-
"@xyo-network/os-model": "^3.0.
|
|
61
|
+
"@xyo-network/os-model": "^3.0.14",
|
|
62
62
|
"@xyo-network/payload-builder": "^3.0.7",
|
|
63
63
|
"@xyo-network/payload-model": "^3.0.7",
|
|
64
64
|
"@xyo-network/wallet-model": "^3.0.7",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@types/uuid": "^10.0.0",
|
|
73
73
|
"@xylabs/ts-scripts-yarn3": "^4.0.1",
|
|
74
74
|
"@xylabs/tsconfig": "^4.0.1",
|
|
75
|
-
"@xyo-network/bios-nodejs": "^3.0.
|
|
75
|
+
"@xyo-network/bios-nodejs": "^3.0.14",
|
|
76
76
|
"typescript": "^5.5.4",
|
|
77
77
|
"vitest": "^2.0.5"
|
|
78
78
|
},
|
package/src/Caller.ts
CHANGED
|
@@ -116,7 +116,7 @@ export class DappCaller extends DappCallerBase {
|
|
|
116
116
|
/**
|
|
117
117
|
* Get the user wallet
|
|
118
118
|
*/
|
|
119
|
-
async getUserAccount(dappName: string, useSigners
|
|
119
|
+
async getUserAccount(dappName: string, useSigners?: boolean): Promise<AccountInstance> {
|
|
120
120
|
// old implementation
|
|
121
121
|
const diviner = await this.getDappArchivistPayloadDiviner()
|
|
122
122
|
const query: PayloadDivinerQueryPayload<SigningKeyFields> = {
|