ethers.js/src.ts/wallet/wallet.ts

168 lines
6.1 KiB
TypeScript
Raw Normal View History

2022-09-05 23:14:43 +03:00
import { randomBytes, SigningKey } from "../crypto/index.js";
import { computeAddress } from "../transaction/index.js";
import { isHexString, throwArgumentError } from "../utils/index.js";
2022-09-05 23:14:43 +03:00
import { BaseWallet } from "./base-wallet.js";
import { HDNodeWallet } from "./hdwallet.js";
import { decryptCrowdsaleJson, isCrowdsaleJson } from "./json-crowdsale.js";
import {
decryptKeystoreJson, decryptKeystoreJsonSync, isKeystoreJson
} from "./json-keystore.js";
import { Mnemonic } from "./mnemonic.js";
import type { ProgressCallback } from "../crypto/index.js";
import type { Provider } from "../providers/index.js";
import type { Wordlist } from "../wordlists/index.js";
import type { CrowdsaleAccount } from "./json-crowdsale.js";
import type { KeystoreAccount } from "./json-keystore.js";
function tryWallet(value: any): null | Wallet {
try {
if (!value || !value.signingKey) { return null; }
const key = trySigningKey(value.signingKey);
if (key == null || computeAddress(key.publicKey) !== value.address) { return null; }
if (value.mnemonic) {
const wallet = HDNodeWallet.fromMnemonic(value.mnemonic);
if (wallet.privateKey !== key.privateKey) { return null; }
}
return value;
} catch (e) { console.log(e); }
return null;
}
// Try using value as mnemonic to derive the defaultPath HDodeWallet
function tryMnemonic(value: any): null | HDNodeWallet {
try {
if (value == null || typeof(value.phrase) !== "string" ||
typeof(value.password) !== "string" ||
value.wordlist == null) { return null; }
return HDNodeWallet.fromPhrase(value.phrase, value.password, null, value.wordlist);
} catch (error) { console.log(error); }
return null;
}
function trySigningKey(value: any): null | SigningKey {
try {
if (!value || !isHexString(value.privateKey, 32)) { return null; }
const key = value.privateKey;
if (SigningKey.computePublicKey(key) !== value.publicKey) { return null; }
return new SigningKey(key);
} catch (e) { console.log(e); }
return null;
}
function stall(duration: number): Promise<void> {
return new Promise((resolve) => { setTimeout(() => { resolve(); }, duration); });
}
export class Wallet extends BaseWallet {
readonly #mnemonic: null | Mnemonic;
constructor(key: string | Mnemonic | SigningKey | BaseWallet, provider?: null | Provider) {
let signingKey: null | SigningKey = null;
let mnemonic: null | Mnemonic = null;
// A normal private key
if (typeof(key) === "string") { signingKey = new SigningKey(key); }
// Try Wallet
if (signingKey == null) {
const wallet = tryWallet(key);
if (wallet) {
signingKey = wallet.signingKey;
mnemonic = wallet.mnemonic || null;
}
}
// Try Mnemonic, with the defaultPath wallet
if (signingKey == null) {
const wallet = tryMnemonic(key);
if (wallet) {
signingKey = wallet.signingKey;
mnemonic = wallet.mnemonic || null;
}
}
// A signing key
if (signingKey == null) { signingKey = trySigningKey(key); }
if (signingKey == null) {
throwArgumentError("invalid key", "key", "[ REDACTED ]");
2022-09-05 23:14:43 +03:00
}
super(signingKey as SigningKey, provider);
this.#mnemonic = mnemonic;
}
// Store this in a getter to reduce visibility in console.log
get mnemonic(): null | Mnemonic { return this.#mnemonic; }
connect(provider: null | Provider): Wallet {
return new Wallet(this, provider);
}
async encrypt(password: Uint8Array | string, options?: any, progressCallback?: ProgressCallback): Promise<string> {
throw new Error("TODO");
}
encryptSync(password: Uint8Array | string, options?: any): Promise<string> {
throw new Error("TODO");
}
static async fromEncryptedJson(json: string, password: Uint8Array | string, progress?: ProgressCallback): Promise<Wallet> {
let account: null | CrowdsaleAccount | KeystoreAccount = null;
if (isKeystoreJson(json)) {
account = await decryptKeystoreJson(json, password, progress);
} else if (isCrowdsaleJson(json)) {
if (progress) { progress(0); await stall(0); }
account = decryptCrowdsaleJson(json, password);
if (progress) { progress(1); await stall(0); }
} else {
return throwArgumentError("invalid JSON wallet", "json", "[ REDACTED ]");
2022-09-05 23:14:43 +03:00
}
const wallet = new Wallet(account.privateKey);
if (wallet.address !== account.address) {
throwArgumentError("address/privateKey mismatch", "json", "[ REDACTED ]");
2022-09-05 23:14:43 +03:00
}
// @TODO: mnemonic
return wallet;
}
static fromEncryptedJsonSync(json: string, password: Uint8Array | string): Wallet {
let account: null | CrowdsaleAccount | KeystoreAccount = null;
if (isKeystoreJson(json)) {
account = decryptKeystoreJsonSync(json, password);
} else if (isCrowdsaleJson(json)) {
account = decryptCrowdsaleJson(json, password);
} else {
return throwArgumentError("invalid JSON wallet", "json", "[ REDACTED ]");
2022-09-05 23:14:43 +03:00
}
const wallet = new Wallet(account.privateKey);
if (wallet.address !== account.address) {
throwArgumentError("address/privateKey mismatch", "json", "[ REDACTED ]");
2022-09-05 23:14:43 +03:00
}
// @TODO: mnemonic
return wallet;
}
static createRandom(provider?: null | Provider, password?: null | string, wordlist?: null | Wordlist): Wallet {
return new Wallet(Mnemonic.fromEntropy(randomBytes(16), password, wordlist), provider);
}
static fromMnemonic(mnemonic: Mnemonic, provider?: null | Provider): Wallet {
return new Wallet(mnemonic, provider);
}
static fromPhrase(phrase: string, provider?: null | Provider, password?: string, wordlist?: Wordlist): Wallet {
if (password == null) { password = ""; }
2022-09-05 23:14:43 +03:00
return new Wallet(Mnemonic.fromPhrase(phrase, password, wordlist), provider);
}
}