@initia/interwovenkit-react 2.0.0-rc.7 → 2.0.0
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/index.cjs +2 -2
- package/dist/index.d.ts +10 -0
- package/dist/index.js +2497 -2478
- package/dist/styles.css +1 -1
- package/dist/styles.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,16 @@ export declare const InterwovenKitProvider: ({ children, ...config }: PropsWithC
|
|
|
73
73
|
|
|
74
74
|
export declare const MAINNET: Config;
|
|
75
75
|
|
|
76
|
+
export declare class MoveError extends Error {
|
|
77
|
+
originalError: Error;
|
|
78
|
+
moduleAddress: string;
|
|
79
|
+
moduleName: string;
|
|
80
|
+
errorCode: string;
|
|
81
|
+
errorCodeHex: string;
|
|
82
|
+
isFromRegistry: boolean;
|
|
83
|
+
constructor(message: string, originalError: Error, moduleAddress: string, moduleName: string, errorCode: string, errorCodeHex: string, isFromRegistry: boolean);
|
|
84
|
+
}
|
|
85
|
+
|
|
76
86
|
declare class OfflineSigner implements OfflineAminoSigner {
|
|
77
87
|
private address;
|
|
78
88
|
private signMessage;
|