/*
This file is part of web3.js.
web3.js is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3.js is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3.js. If not, see .
*/
import { EthExecutionAPI, Bytes, Transaction, KeyStore, ETH_DATA_FORMAT } from 'web3-types';
import { format } from 'web3-utils';
import { Web3Context } from 'web3-core';
import { prepareTransactionForSigning } from 'web3-eth';
import {
create,
decrypt,
encrypt,
hashMessage,
privateKeyToAccount,
recover,
recoverTransaction,
signTransaction,
sign,
Wallet,
privateKeyToAddress,
parseAndValidatePrivateKey,
privateKeyToPublicKey,
} from 'web3-eth-accounts';
/**
* Initialize the accounts module for the given context.
*
* To avoid multiple package dependencies for `web3-eth-accounts` we are creating
* this function in `web3` package. In future the actual `web3-eth-accounts` package
* should be converted to context aware.
*/
export const initAccountsForContext = (context: Web3Context) => {
const signTransactionWithContext = async (transaction: Transaction, privateKey: Bytes) => {
const tx = await prepareTransactionForSigning(transaction, context);
const privateKeyBytes = format({ format: 'bytes' }, privateKey, ETH_DATA_FORMAT);
return signTransaction(tx, privateKeyBytes);
};
const privateKeyToAccountWithContext = (privateKey: Uint8Array | string) => {
const account = privateKeyToAccount(privateKey);
return {
...account,
signTransaction: async (transaction: Transaction) =>
signTransactionWithContext(transaction, account.privateKey),
};
};
const decryptWithContext = async (
keystore: KeyStore | string,
password: string,
options?: Record,
) => {
const account = await decrypt(keystore, password, (options?.nonStrict as boolean) ?? true);
return {
...account,
signTransaction: async (transaction: Transaction) =>
signTransactionWithContext(transaction, account.privateKey),
};
};
const createWithContext = () => {
const account = create();
return {
...account,
signTransaction: async (transaction: Transaction) =>
signTransactionWithContext(transaction, account.privateKey),
};
};
const wallet = new Wallet({
create: createWithContext,
privateKeyToAccount: privateKeyToAccountWithContext,
decrypt: decryptWithContext,
});
return {
signTransaction: signTransactionWithContext,
create: createWithContext,
privateKeyToAccount: privateKeyToAccountWithContext,
decrypt: decryptWithContext,
recoverTransaction,
hashMessage,
sign,
recover,
encrypt,
wallet,
privateKeyToAddress,
parseAndValidatePrivateKey,
privateKeyToPublicKey,
}
};