@orderly.network/core 2.0.1 → 2.0.2-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 +3 -1
- package/dist/index.d.ts +3 -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
|
@@ -911,7 +911,9 @@ declare class Account {
|
|
|
911
911
|
tag?: string;
|
|
912
912
|
scope?: string;
|
|
913
913
|
}): Promise<any>;
|
|
914
|
-
private
|
|
914
|
+
private generateApiKey;
|
|
915
|
+
importOrderlyKey(address: string, secretKey: string): Promise<true | undefined>;
|
|
916
|
+
checkOrderlyKey(address: string, orderlyKey: OrderlyKeyPair, accountId: string): Promise<true | undefined>;
|
|
915
917
|
settle(): Promise<any>;
|
|
916
918
|
destroyOrderlyKey(): Promise<void>;
|
|
917
919
|
disconnect(): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -911,7 +911,9 @@ declare class Account {
|
|
|
911
911
|
tag?: string;
|
|
912
912
|
scope?: string;
|
|
913
913
|
}): Promise<any>;
|
|
914
|
-
private
|
|
914
|
+
private generateApiKey;
|
|
915
|
+
importOrderlyKey(address: string, secretKey: string): Promise<true | undefined>;
|
|
916
|
+
checkOrderlyKey(address: string, orderlyKey: OrderlyKeyPair, accountId: string): Promise<true | undefined>;
|
|
915
917
|
settle(): Promise<any>;
|
|
916
918
|
destroyOrderlyKey(): Promise<void>;
|
|
917
919
|
disconnect(): Promise<void>;
|