@initia/interwovenkit-react 2.0.4 → 2.0.6
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 +4 -1
- package/dist/index.js +4722 -4559
- package/dist/styles.css +1 -1
- package/dist/styles.js +1 -1
- package/package.json +34 -34
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ declare interface Config {
|
|
|
27
27
|
aminoConverters?: AminoConverters;
|
|
28
28
|
registryUrl: string;
|
|
29
29
|
routerApiUrl: string;
|
|
30
|
+
glyphUrl: string;
|
|
30
31
|
usernamesModuleAddress: string;
|
|
31
32
|
theme: "light" | "dark";
|
|
32
33
|
container?: HTMLElement;
|
|
@@ -87,9 +88,11 @@ export declare class MoveError extends Error {
|
|
|
87
88
|
declare class OfflineSigner implements OfflineAminoSigner {
|
|
88
89
|
private address;
|
|
89
90
|
private signMessage;
|
|
90
|
-
|
|
91
|
+
private layer1RestUrl;
|
|
92
|
+
constructor(address: string, signMessage: (message: string) => Promise<string>, layer1RestUrl: string);
|
|
91
93
|
private cachedPublicKey;
|
|
92
94
|
private getCachedPublicKey;
|
|
95
|
+
private getPublicKeyFromRestApi;
|
|
93
96
|
private getPublicKey;
|
|
94
97
|
getAccounts(): Promise<readonly AccountData[]>;
|
|
95
98
|
signAmino(signerAddress: string, signDoc: StdSignDoc): Promise<AminoSignResponse>;
|