docs: updated transaction.value to specify in wei

This commit is contained in:
Richard Moore 2023-04-24 18:33:25 +09:00
parent 8fcbd9cac4
commit 6cfe22b7e2

@ -499,7 +499,7 @@ export class Transaction implements TransactionLike<string> {
set data(value: BytesLike) { this.#data = hexlify(value); } set data(value: BytesLike) { this.#data = hexlify(value); }
/** /**
* The amount of ether to send in this transactions. * The amount of ether (in wei) to send in this transactions.
*/ */
get value(): bigint { return this.#value; } get value(): bigint { return this.#value; }
set value(value: BigNumberish) { set value(value: BigNumberish) {