hermes-swap-router-sdk
Version:
An sdk for routing swaps using Uniswap v2, Uniswap v3 and Balancer Stable Pools.
12 lines (11 loc) • 404 B
TypeScript
import { Interface } from '@ethersproject/abi';
import { BigintIsh } from 'maia-core-sdk';
export declare type Validation = BigintIsh | string;
export declare abstract class MulticallExtended {
static INTERFACE: Interface;
/**
* Cannot be constructed.
*/
private constructor();
static encodeMulticall(calldatas: string | string[], validation?: Validation): string;
}