UNPKG

hermes-v2-sdk

Version:

⚒️ An SDK for building applications on top of Hermes V2

12 lines (11 loc) 398 B
import { Interface } from '@ethersproject/abi'; import { NativeToken } from 'maia-core-sdk'; import { PermitOptions } from '../../types/self-permit'; export declare abstract class SelfPermit { static readonly INTERFACE: Interface; /** * Cannot be constructed. */ private constructor(); static encodePermit(token: NativeToken, options: PermitOptions): string; }