export type Address = `0x${string}`;
export type Hash = `0x${string}`;
export interface CallOptions {
    gasLimit?: bigint;
    gasPrice?: bigint;
    value?: bigint;
}
