@orderly.network/core 2.0.2 → 2.0.3-alpha.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.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -912,7 +912,11 @@ declare class Account {
|
|
|
912
912
|
scope?: string;
|
|
913
913
|
}): Promise<any>;
|
|
914
914
|
private generateApiKey;
|
|
915
|
-
importOrderlyKey(
|
|
915
|
+
importOrderlyKey(options: {
|
|
916
|
+
secretKey: string;
|
|
917
|
+
address: string;
|
|
918
|
+
chainNamespace: ChainNamespace;
|
|
919
|
+
}): Promise<true | undefined>;
|
|
916
920
|
checkOrderlyKey(address: string, orderlyKey: OrderlyKeyPair, accountId: string): Promise<true | undefined>;
|
|
917
921
|
settle(): Promise<any>;
|
|
918
922
|
destroyOrderlyKey(): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -912,7 +912,11 @@ declare class Account {
|
|
|
912
912
|
scope?: string;
|
|
913
913
|
}): Promise<any>;
|
|
914
914
|
private generateApiKey;
|
|
915
|
-
importOrderlyKey(
|
|
915
|
+
importOrderlyKey(options: {
|
|
916
|
+
secretKey: string;
|
|
917
|
+
address: string;
|
|
918
|
+
chainNamespace: ChainNamespace;
|
|
919
|
+
}): Promise<true | undefined>;
|
|
916
920
|
checkOrderlyKey(address: string, orderlyKey: OrderlyKeyPair, accountId: string): Promise<true | undefined>;
|
|
917
921
|
settle(): Promise<any>;
|
|
918
922
|
destroyOrderlyKey(): Promise<void>;
|