Skip to content

Commit

Permalink
Set default pool fee in bouncer to 20 basis points (#4008)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-chainflip committed Sep 19, 2023
1 parent ae894d6 commit c69bccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bouncer/shared/create_lp_pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function createLpPool(ccy: Asset, initialPrice: number) {
chainflip,
(event) => event.data.pairAsset.toUpperCase() === ccy,
);
const extrinsic = chainflip.tx.liquidityPools.newPool('usdc', ccy.toLowerCase(), 0, price);
const extrinsic = chainflip.tx.liquidityPools.newPool('usdc', ccy.toLowerCase(), 20, price);
await submitGovernanceExtrinsic(extrinsic);
await poolCreatedEvent;
}
Expand Down

0 comments on commit c69bccf

Please sign in to comment.