UNPKG

locklift

Version:

Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.

6 lines (4 loc) 209 B
import { Address, Transaction } from "everscale-inpage-provider"; export interface Giver { sendTo(sendTo: Address, value: string): Promise<{ transaction: Transaction; output?: Record<string, unknown> }>; }