@broxus/js-core
Version:
MobX-based JavaScript Core library
9 lines (8 loc) • 686 B
TypeScript
import { type Address, type Contract, type ProviderRpcClient } from 'everscale-inpage-provider';
import { DexGasValuesAbi, DexGasValuesV22Abi, LegacyDexGasValuesAbi } from '../../models/dex-gas-values/abi';
export declare function dexGasValuesContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof DexGasValuesAbi>;
export declare function dexGasValuesV22Contract(connection: ProviderRpcClient, address: Address | string): Contract<typeof DexGasValuesV22Abi>;
/**
* @deprecated Used only for Everscale
*/
export declare function legacyDexGasValuesContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof LegacyDexGasValuesAbi>;