UNPKG

@vechain/vebetterdao-contracts

Version:

Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.

12 lines (11 loc) 564 B
import { Address } from "@vechain/sdk-core"; import { SeedAccount, TestPk } from "./seedAccounts"; export declare const airdropVTHO: (accounts: Address[], amount: bigint, sourceAccount: TestPk) => Promise<void>; /** * Transfer ERC20 tokens */ export declare const transferErc20: (tokenAddress: string, sender: TestPk, recipient: string, amount: bigint) => Promise<void>; /** * Airdrop B3TR from treasury to a list of accounts */ export declare const airdropB3trFromTreasury: (treasuryAddress: string, admin: TestPk, accounts: SeedAccount[]) => Promise<void>;