Removed duplicate interfaces.

This commit is contained in:
Richard Moore 2022-12-03 15:14:34 -05:00
parent 2d4d545d25
commit c3520db174

@ -5,13 +5,9 @@
*/ */
import type { Signature } from "../crypto/index.js"; import type { Signature } from "../crypto/index.js";
import type { AccessList, AccessListish } from "../transaction/index.js"; import type { AccessList } from "../transaction/index.js";
import type { BigNumberish } from "../utils/index.js";
import type { AddressLike } from "../address/index.js";
import type { BlockTag } from "./provider.js";
/*
export interface TransactionRequest { export interface TransactionRequest {
type?: null | number; type?: null | number;
@ -41,7 +37,6 @@ export interface TransactionRequest {
// Todo? // Todo?
//gasMultiplier?: number; //gasMultiplier?: number;
}; };
export interface PreparedTransactionRequest { export interface PreparedTransactionRequest {
type?: number; type?: number;
@ -67,6 +62,7 @@ export interface PreparedTransactionRequest {
blockTag?: BlockTag; blockTag?: BlockTag;
enableCcipRead?: boolean; enableCcipRead?: boolean;
} }
*/
////////////////////// //////////////////////