@trustwallet/wallet-core 4.6.7 → 4.6.8
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/generated/core_proto.d.ts +1 -468
- package/dist/generated/core_proto.js +2 -1346
- package/dist/lib/wallet-core.js +120 -118
- package/dist/lib/wallet-core.wasm +0 -0
- package/dist/src/wallet-core.d.ts +2 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -999,6 +999,7 @@ export class StoredKey {
|
|
|
999
999
|
removeAccountForCoinDerivation(coin: CoinType, derivation: Derivation): void;
|
|
1000
1000
|
removeAccountForCoinDerivationPath(coin: CoinType, derivationPath: string): void;
|
|
1001
1001
|
store(path: string): boolean;
|
|
1002
|
+
storeWithTemporaryFile(path: string, temporaryPath: string): boolean;
|
|
1002
1003
|
decryptPrivateKey(password: Uint8Array | Buffer): Uint8Array;
|
|
1003
1004
|
decryptPrivateKeyEncoded(password: Uint8Array | Buffer): string;
|
|
1004
1005
|
decryptMnemonic(password: Uint8Array | Buffer): string;
|
|
@@ -1007,6 +1008,7 @@ export class StoredKey {
|
|
|
1007
1008
|
exportJSON(): Uint8Array;
|
|
1008
1009
|
fixAddresses(password: Uint8Array | Buffer): boolean;
|
|
1009
1010
|
updateAddress(coin: CoinType): boolean;
|
|
1011
|
+
fixEncryption(password: Uint8Array | Buffer): boolean;
|
|
1010
1012
|
delete(): void;
|
|
1011
1013
|
}
|
|
1012
1014
|
export class StoredKeyEncryption {
|