UNPKG

sparrow-controllers

Version:

Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets

11 lines (10 loc) 288 B
import { abiERC20, abiERC1155, abiERC721 } from '@metamask/metamask-eth-abis'; declare type Contract = { at(address: string): any; }; export declare type Web3 = { eth: { contract(abi: typeof abiERC20 | typeof abiERC721 | typeof abiERC1155): Contract; }; }; export {};