@broxus/js-core
Version:
MobX-based JavaScript Core library
8 lines (7 loc) • 381 B
TypeScript
import { type Address, type FullContractState, type ProviderRpcClient } from 'everscale-inpage-provider';
import { type Forceable } from '../types';
interface Options extends Forceable {
ttl?: number;
}
export declare function getFullContractState(connection: ProviderRpcClient, address: Address | string, options?: Options): Promise<FullContractState | undefined>;
export {};