UNPKG

astra-universal-router-sdk

Version:

sdk for integrating with the Astra Router contracts

35 lines (34 loc) 1.26 kB
import { Interface } from '@ethersproject/abi'; import { CommandType, CommandDefinition } from '../utils/routerCommands'; export declare type Param = { readonly name: string; readonly value: any; }; export declare type UniversalRouterCommand = { readonly commandName: string; readonly commandType: CommandType; readonly params: readonly Param[]; }; export declare type UniversalRouterCall = { readonly commands: readonly UniversalRouterCommand[]; }; export declare type CLPathItem = { readonly tokenIn: string; readonly tokenOut: string; readonly fee: number; }; export interface CommandsDefinition { [key: number]: CommandDefinition; } export declare abstract class CommandParser { static INTERFACE: Interface; static parseCalldata(calldata: string): UniversalRouterCall; } export declare class GenericCommandParser { private readonly commandDefinition; constructor(commandDefinition: CommandsDefinition); parse(commands: string, inputs: string[]): UniversalRouterCall; private static getCommands; } export declare function parseCLPathExactIn(path: string): readonly CLPathItem[]; export declare function parseCLPathExactOut(path: string): readonly CLPathItem[];