Fixed explicit EIP-1559 keys for JsonRpcSigner.

This commit is contained in:
Richard Moore 2021-06-29 11:57:53 -04:00
parent 71b7547f10
commit 72feee8f58
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651

View File

@ -297,7 +297,8 @@ class UncheckedJsonRpcSigner extends JsonRpcSigner {
const allowedTransactionKeys: { [ key: string ]: boolean } = {
chainId: true, data: true, gasLimit: true, gasPrice:true, nonce: true, to: true, value: true,
type: true, accessList: true
type: true, accessList: true,
maxFeePerGas: true, maxPriorityFeePerGas: true
}
export class JsonRpcProvider extends BaseProvider {