Skip to content

Commit

Permalink
bump version to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Arrowana committed Jul 27, 2023
1 parent 57b01e4 commit cd41091
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ts-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mercurial-finance/dynamic-amm-sdk",
"version": "0.4.6",
"version": "0.4.7",
"description": "Mercurial Vaults SDK is a typescript library that allows you to interact with Mercurial v2's AMM.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -13,7 +13,7 @@
"dist"
],
"dependencies": {
"@mercurial-finance/vault-sdk": "0.5.0",
"@mercurial-finance/vault-sdk": "0.5.1",
"@project-serum/anchor": "0.24.2",
"@project-serum/borsh": "^0.2.5",
"@saberhq/anchor-contrib": "1.13.32",
Expand Down
8 changes: 4 additions & 4 deletions ts-client/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions ts-client/src/amm/tests/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Wallet } from '@project-serum/anchor';
import { bs58 } from '@project-serum/anchor/dist/cjs/utils/bytes';
import { Connection, Keypair, PublicKey } from '@solana/web3.js';
import { Connection, Keypair, LAMPORTS_PER_SOL, PublicKey } from '@solana/web3.js';

const LAMPORTS_PER_SOL = 1e9;
export const airDropSol = async (connection: Connection, publicKey: PublicKey, amount = 1) => {
try {
const airdropSignature = await connection.requestAirdrop(publicKey, amount * LAMPORTS_PER_SOL);
Expand Down

0 comments on commit cd41091

Please sign in to comment.