You can go to tests/vesting.ts directory for integration testing of vesting smart contract.
You can use variety of release amount, time increments or actual time stamps to create and schedule any form of payment.
// create vesting for account 2
const create_vesting_payloads = {
type: "entry_function_payload",
function: pid+"::vesting::create_vesting",
type_arguments: ["0x1::aptos_coin::AptosCoin"],
arguments: [account2.address(),release_amount,release_time,140,"xyz"],
};
let txnRequest = await client.generateTransaction(account1.address(), create_vesting_payloads);
let bcsTxn = AptosClient.generateBCSTransaction(account1, txnRequest);
await client.submitSignedBCSTransaction(bcsTxn);
//receiver can release funds as below
const create_getfunds_payloads = {
type: "entry_function_payload",
function: pid+"::vesting::release_fund",
type_arguments: ["0x1::aptos_coin::AptosCoin"],
arguments: [account1.address(),"xyz"],
};
let txnRequest = await client.generateTransaction(account2.address(), create_getfunds_payloads);
let bcsTxn = AptosClient.generateBCSTransaction(account2, txnRequest);
await client.submitSignedBCSTransaction(bcsTxn);
Token Vesting
✔ Creating Vesting (5988ms)
✔ Get Funds (3376ms)
Mokshya Protocol is Open Source Protocol in Aptos Blockchain. We would highly encourage developers getting involved and improving the solutions