@broxus/js-core
Version:
MobX-based JavaScript Core library
5 lines (4 loc) • 469 B
TypeScript
import { type Address, type Contract, type ProviderRpcClient } from 'everscale-inpage-provider';
import { TokenFactoryAbi, TokenFactoryV22Abi } from '../../models/tvm-token-factory/abi';
export declare function tokenFactoryContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof TokenFactoryAbi>;
export declare function tokenFactoryV22Contract(connection: ProviderRpcClient, address: Address | string): Contract<typeof TokenFactoryV22Abi>;