@trustwallet/wallet-core 4.6.7 → 4.6.9

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.
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustwallet/wallet-core",
3
- "version": "4.6.7",
3
+ "version": "4.6.9",
4
4
  "description": "wallet core wasm and protobuf models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",