@xyo-network/react-chain-model 1.7.1 → 1.7.2
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/browser/index.d.ts +3 -26
- package/package.json +4 -4
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,26 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
_debug: () => void;
|
|
5
|
-
connections: {
|
|
6
|
-
[chainId: string]: ChainConnection;
|
|
7
|
-
};
|
|
8
|
-
provider?: XyoProvider;
|
|
9
|
-
walletExtensionId: () => string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
declare global {
|
|
13
|
-
interface Window {
|
|
14
|
-
xyo: XyoGlobal;
|
|
15
|
-
}
|
|
16
|
-
var xyo: XyoGlobal;
|
|
17
|
-
var xyoWalletExtensionId: string;
|
|
18
|
-
}
|
|
19
|
-
declare const hasXyoWalletInjectable: () => boolean;
|
|
20
|
-
declare const hasXyoWalletProvider: () => boolean;
|
|
21
|
-
declare function getXyoProvider(options: {
|
|
22
|
-
assert: true;
|
|
23
|
-
}): XyoProvider;
|
|
24
|
-
|
|
25
|
-
export { getXyoProvider, hasXyoWalletInjectable, hasXyoWalletProvider };
|
|
26
|
-
export type { XyoGlobal };
|
|
1
|
+
export * from './provider/index.ts';
|
|
2
|
+
export * from './types/index.ts';
|
|
3
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/react-chain-model",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"description": "XYO Layer One React SDK Stake",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"module": "dist/browser/index.mjs",
|
|
35
35
|
"types": "dist/browser/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xyo-network/xl1-protocol": "^1.
|
|
37
|
+
"@xyo-network/xl1-protocol": "^1.7.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
41
|
-
"@xylabs/tsconfig-react": "^7.0.0-rc.
|
|
40
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
41
|
+
"@xylabs/tsconfig-react": "^7.0.0-rc.27",
|
|
42
42
|
"knip": "^5.61.3",
|
|
43
43
|
"typescript": "^5.8.3"
|
|
44
44
|
},
|