Skip to content

Commit

Permalink
re-order consts
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetbout committed Jun 10, 2024
1 parent d3cbd7b commit c0bd095
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ for (const { giftTokenContract, unit } of tokens) {
const claimPubkey = signer.publicKey;
const amount = 1000000000000000n;
const maxFee = 50000000000000n;
const receiver = "0x42";

// Mint tokens
await manager.mint(deployer.address, amount, unit);
await manager.mint(deployer.address, maxFee, manager.tokens.unitTokenContract(useTxV3));
const receiver = "0x42";

// Make a gift
const feeTokenContract = await manager.tokens.feeTokenContract(useTxV3);
Expand Down

0 comments on commit c0bd095

Please sign in to comment.