123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- const anchor = require("@project-serum/anchor");
- const serumCmn = require("@project-serum/common");
- async function createBalanceSandbox(provider, r, registrySigner) {
- const spt = new anchor.web3.Account();
- const vault = new anchor.web3.Account();
- const vaultStake = new anchor.web3.Account();
- const vaultPw = new anchor.web3.Account();
- const lamports = await provider.connection.getMinimumBalanceForRentExemption(
- 165
- );
- const createSptIx = await serumCmn.createTokenAccountInstrs(
- provider,
- spt.publicKey,
- r.poolMint,
- registrySigner,
- lamports
- );
- const createVaultIx = await serumCmn.createTokenAccountInstrs(
- provider,
- vault.publicKey,
- r.mint,
- registrySigner,
- lamports
- );
- const createVaultStakeIx = await serumCmn.createTokenAccountInstrs(
- provider,
- vaultStake.publicKey,
- r.mint,
- registrySigner,
- lamports
- );
- const createVaultPwIx = await serumCmn.createTokenAccountInstrs(
- provider,
- vaultPw.publicKey,
- r.mint,
- registrySigner,
- lamports
- );
- let tx0 = new anchor.web3.Transaction();
- tx0.add(
- ...createSptIx,
- ...createVaultIx,
- ...createVaultStakeIx,
- ...createVaultPwIx
- );
- let signers0 = [spt, vault, vaultStake, vaultPw];
- const tx = { tx: tx0, signers: signers0 };
- return [
- tx,
- {
- spt: spt.publicKey,
- vault: vault.publicKey,
- vaultStake: vaultStake.publicKey,
- vaultPw: vaultPw.publicKey,
- },
- ];
- }
- module.exports = {
- createBalanceSandbox,
- };
|