Skip to content

Commit

Permalink
chore: Add config file
Browse files Browse the repository at this point in the history
  • Loading branch information
quangkeu95 committed Jan 8, 2025
1 parent d162243 commit daeb9ac
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"rpcUrl": "https://api.mainnet-beta.solana.com",
"dryRun": true,
"keypairFilePath": "keypair.json",
"computeUnitPriceMicroLamports": 100000,
"baseMint": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump",
"quoteSymbol": "SOL",
"dynamicAmm": {
"baseAmount": "100",
"quoteAmount": "0.001",
"tradeFeeNumerator": 2500,
"activationType": "timestamp",
"activationPoint": null,
"hasAlphaVault": true
},
"alphaVault": {
"poolType": "dynamic",
"alphaVaultType": "fcfs",
"depositingPoint": 1733547099,
"startVestingPoint": 1733548099,
"endVestingPoint": 1733549099,
"maxDepositCap": 100,
"individualDepositingCap": 1,
"escrowFee": 0,
"whitelistMode": "permissioned_with_merkle_proof",
"whitelistFilepath": "./config/whitelist_wallet.csv"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,12 @@ import {
import { deriveCustomizablePermissionlessConstantProductPoolAddress } from "@mercurial-finance/dynamic-amm-sdk/dist/cjs/src/amm/utils";
import {
createAlphaVaultInstance,
createPermissionedAlphaVaultWithAuthority,
createPermissionedAlphaVaultWithMerkleProof,
deriveAlphaVault,
deriveMerkleRootConfig,
} from "../libs/create_alpha_vault_utils";
import { BN } from "bn.js";
import {
PermissionWithAuthority,
PermissionWithMerkleProof,
} from "@meteora-ag/alpha-vault";
import { PermissionWithMerkleProof } from "@meteora-ag/alpha-vault";
import { createMerkleTree } from "../libs/merkle_tree";

describe("Test create dynamic pool with permissioned with merkle proof fcfs alpha vault", () => {
Expand Down

0 comments on commit daeb9ac

Please sign in to comment.