UNPKG

@bananahq/banana-sdk

Version:

Smart contract wallet sdk package by Banana Wallet

9 lines (8 loc) 287 B
import { BigNumberish } from 'ethers'; import { BytesLike } from '@ethersproject/bytes'; export type address = string; export type uint256 = BigNumberish; export type uint = BigNumberish; export type uint64 = BigNumberish; export type bytes = BytesLike; export type bytes32 = BytesLike;