Skip to content

Commit

Permalink
fix: utility exports
Browse files Browse the repository at this point in the history
- these were unexported in #131

fixes #145
  • Loading branch information
aheckmann committed Jan 13, 2022
1 parent 4c691f2 commit 102fbf2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ export * from './instantSale';
export * from './burnToken';
export * from './sendToken';
export * from './shared';
export * from './utility';
8 changes: 6 additions & 2 deletions test/actions/addTokensToVault.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ import { Transaction } from '@metaplex-foundation/mpl-core';
import { sendAndConfirmTransaction } from '@solana/web3.js';

import { generateConnectionAndWallet } from './shared';
import { addTokensToVault, prepareTokenAccountAndMintTxs } from '../../src/actions';
import { createExternalPriceAccount, createVault } from '../../src/actions/utility';
import {
addTokensToVault,
prepareTokenAccountAndMintTxs,
createExternalPriceAccount,
createVault,
} from '../../src/actions';

describe('addTokensToVault action', () => {
test('creation and adding of multiple mint tokens to newly created vault', async () => {
Expand Down

0 comments on commit 102fbf2

Please sign in to comment.