vasku
Version:
TVM-Solidity contract development framework
11 lines • 568 B
TypeScript
import { type Giver, type SendParameters } from '../index';
import { type Contract, type ContractOptions, type ResultOfCall } from '../../contract';
import { type KeyPair, type ResultOfProcessMessage } from '@eversdk/core';
export declare class GiverV3 implements Giver {
private readonly _contract;
constructor(keys: KeyPair, options?: ContractOptions);
get contract(): Contract;
send(options: SendParameters): Promise<ResultOfCall>;
deploy(value: string | number | bigint): Promise<ResultOfProcessMessage>;
}
//# sourceMappingURL=GiverV3.d.ts.map