jton-contracts
Version:
Free TON contracts wrapped in jTON
16 lines • 507 B
TypeScript
import { KeyPair } from '@tonclient/core/dist/modules';
import { TonClient } from '@tonclient/core';
import { Contract } from 'jton';
import IdleContract from './source/Idle';
export { IdleContract };
export interface GetIdleOut {
idle: boolean;
}
export declare class Idle extends Contract {
constructor(client: TonClient, keys: KeyPair, address: string, timeout?: number);
/***********
* GETTERS *
***********/
isIdle(): Promise<GetIdleOut>;
}
//# sourceMappingURL=index.d.ts.map