UNPKG

@broxus/js-bridge-essentials

Version:

Bridge JavaScript Essentials library

6 lines (5 loc) 622 B
import { type Address, type Contract, type ProviderRpcClient } from 'everscale-inpage-provider'; import { TonAlienProxyAbi, TonMergePoolAbi, TonMergeRouterAbi } from '../../models/ton-alien-proxy/abi'; export declare function tonAlienProxyContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof TonAlienProxyAbi>; export declare function tonMergePoolContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof TonMergePoolAbi>; export declare function tonMergeRouterContract(connection: ProviderRpcClient, address: Address | string): Contract<typeof TonMergeRouterAbi>;