"use strict" import { ethers } from "ethers"; import { version } from "./_version"; const logger = new ethers.utils.Logger(version); export class NonceManager extends ethers.Signer { readonly signer: ethers.Signer; readonly provider: ethers.providers.Provider; _transactionCount: Promise; constructor(signer: ethers.Signer) { logger.checkNew(new.target, NonceManager); super(); ethers.utils.defineReadOnly(this, "signer", signer); } connect(provider: ethers.providers.Provider): NonceManager { return new NonceManager(this.signer.connect(provider)); } getAddress(): Promise { return this.signer.getAddress(); } getTransactionCount(blockTag?: ethers.providers.BlockTag): Promise { if (blockTag === "pending") { if (!this._transactionCount) { this._transactionCount = this.signer.getTransactionCount("pending"); } return this._transactionCount; } return this.signer.getTransactionCount(blockTag); } setTransactionCount(transactionCount: ethers.BigNumberish | Promise): void { this._transactionCount = Promise.resolve(transactionCount).then((nonce) => { return ethers.BigNumber.from(nonce).toNumber(); }); } incrementTransactionCount(count?: number): void { if (!count) { count = 1; } this._transactionCount = this.getTransactionCount("pending").then((nonce) => { return nonce + count; }); } signMessage(message: ethers.Bytes | string): Promise { return this.signer.signMessage(message);; } signTransaction(transaction: ethers.providers.TransactionRequest): Promise { return this.signer.signTransaction(transaction); } sendTransaction(transaction: ethers.providers.TransactionRequest): Promise { if (transaction.nonce == null) { transaction = ethers.utils.shallowCopy(transaction); transaction.nonce = this.getTransactionCount(); } this.setTransactionCount(transaction.nonce); return this.signer.sendTransaction(transaction); } }