@broxus/js-core
Version:
MobX-based JavaScript Core library
5 lines (4 loc) • 473 B
TypeScript
import { type Address, type Contract, type ProviderRpcClient } from 'everscale-inpage-provider';
import { DexStablePoolAbi, DexStablePoolV22Abi } from '../../models/dex-stable-pool/abi';
export declare function dexStablePoolContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof DexStablePoolAbi>;
export declare function dexStablePoolV22Contract(connection: ProviderRpcClient, address: Address | string): Contract<typeof DexStablePoolV22Abi>;