chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
9 lines (8 loc) • 441 B
TypeScript
import { Client } from '@hey-api/client-fetch';
import { TtlCache } from '../../../InternalUtils/TtlCache';
import { GlobalMarketsResponse } from '../../../Client';
import { ArbitrumInfo } from '../../CurrencyInfo';
import { EvmCurrencyUtils } from '../abstract/EvmCurrencyUtils';
export declare class ArbitrumUtils extends EvmCurrencyUtils<typeof ArbitrumInfo> {
constructor(client: Client, markets: TtlCache<GlobalMarketsResponse>);
}