Skip to content

Commit

Permalink
fix: test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
00xSam committed Dec 3, 2024
1 parent 160f462 commit 6c23099
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
11 changes: 5 additions & 6 deletions ts-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,20 @@
"dist"
],
"dependencies": {
"@meteora-ag/config": "workspace:*",
"@meteora-ag/vault-sdk": "workspace:*",
"@coral-xyz/borsh": "^0.28.0",
"@mercurial-finance/token-math": "6.0.0",
"@metaplex-foundation/mpl-token-metadata": "~2.13.0",
"@meteora-ag/config": "workspace:*",
"@meteora-ag/stake-for-fee": "1.0.28",
"@meteora-ag/vault-sdk": "workspace:*",
"@solana/buffer-layout": "^4.0.1",
"bn-sqrt": "^1.0.0",
"bn.js": "5.2.1",
"decimal.js": "^10.4.1",
"dotenv": "^16.0.1",
"invariant": "^2.2.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bn.js": "^5.1.0",
"@types/bn.js": "^5.1.6",
"@types/chai": "^4.3.1",
"@types/invariant": "^2.2.35",
"@types/jest": "^27.5.1",
Expand All @@ -46,7 +44,8 @@
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.5",
"bn.js": "^5.2.1"
"bn.js": "^5.2.1",
"decimal.js": "^10.4.1"
},
"directories": {
"test": "tests"
Expand Down
12 changes: 6 additions & 6 deletions ts-client/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion ts-client/src/amm/tests/bundlePoolQuote.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import VaultImpl from '@mercurial-finance/vault-sdk';
import VaultImpl from '@meteora-ag/vault-sdk';
import { AccountLayout, MintLayout, NATIVE_MINT, RawAccount, RawMint } from '@solana/spl-token';
import { clusterApiUrl, Connection, PublicKey, SYSVAR_CLOCK_PUBKEY } from '@solana/web3.js';
import { calculateSwapQuoteForGoingToCreateMemecoinPool } from '../utils';
Expand Down
1 change: 1 addition & 0 deletions ts-client/src/amm/tests/constantProduct.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ describe('Constant product pool', () => {
beforeAll(async () => {
await airDropSol(connection, mockWallet.publicKey, 10);
BTC = await createMint(provider.connection, mockWallet.payer, mockWallet.publicKey, null, btcDecimal);
USDC = await createMint(provider.connection, mockWallet.payer, mockWallet.publicKey, null, usdcDecimal);

mockWalletBtcATA = await getOrCreateATA(connection, BTC, mockWallet.publicKey, mockWallet.payer);
mockWalletUsdcATA = await getOrCreateATA(connection, USDC, mockWallet.publicKey, mockWallet.payer);
Expand Down

0 comments on commit 6c23099

Please sign in to comment.