UNPKG

vasku

Version:

TVM-Solidity contract development framework

12 lines 628 B
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 SafeMultisigWalletGiver implements Giver { private readonly _keys; private readonly _contract; constructor(keys: KeyPair, options?: ContractOptions); get contract(): Contract; send(options: SendParameters): Promise<ResultOfCall>; deploy(value: string | number | bigint): Promise<ResultOfProcessMessage>; } //# sourceMappingURL=SafeMultisigWalletGiver.d.ts.map