Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): DynamicFeeTx
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
- encode(message: DynamicFeeTx, writer?: Writer): Writer
-
Returns Writer
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): DynamicFeeTx
-
Type Parameters
-
I extends {
accesses?: ({ address?: string | undefined; storageKeys?: string[] | undefined; })[];
chainId?: string;
data?: Uint8Array;
gas?: number;
gasFeeCap?: string;
gasTipCap?: string;
nonce?: number;
r?: Uint8Array;
s?: Uint8Array;
to?: string;
v?: Uint8Array;
value?: string;
} & {
accesses?: {
address?: string;
storageKeys?: string[];
}[] & ({
address?: string;
storageKeys?: string[];
} & ({ address?: string | undefined; storageKeys?: (string[] & string[] & { [K in Exclude<keyof I["accesses"][number]["storageKeys"], keyof string[]>]: never; }) | undefined; }) & { [ K in string | number | symbol]: never })[] & { [ K in string | symbol]: never };
chainId?: string;
data?: Uint8Array;
gas?: number;
gasFeeCap?: string;
gasTipCap?: string;
nonce?: number;
r?: Uint8Array;
s?: Uint8Array;
to?: string;
v?: Uint8Array;
value?: string;
} & { [ K in string | number | symbol]: never }
-
toJSON:function