dp-contract-proxy-kit
Version:
Enable batched transactions and contract account interactions using a unique deterministic Gnosis Safe.
10 lines (9 loc) • 335 B
TypeScript
import BigNumber from 'bignumber.js';
declare type Json = string | number | boolean | null | JsonObject | Json[];
declare type JsonObject = {
[property: string]: Json;
};
export declare type Address = string;
export declare type Abi = JsonObject[];
export declare type NumberLike = number | string | bigint | BigNumber;
export {};