Skip to content

Commit

Permalink
feat: update token amount for new users
Browse files Browse the repository at this point in the history
  • Loading branch information
robhyrk committed May 13, 2024
1 parent c1d6ba5 commit b6cd746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/api/checkNewUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ async function fundUser(wallet) {
const keyring = new Keyring({ type: "sr25519" });
const masterAccount = keyring.addFromUri(process.env.SEED_WSX);

// const amount = 1_000_000_000_000_0; // 1000 tokens
const amount = 1_000_000_000_000; // 100 tokens
const amount = 1_000_000_000_000_000; // 100,000 tokens
// const amount = 1_000_000_000_000; // 100 tokens
// 10000000000000 min amoount
const transfer = api.tx.campaignAssets.transfer(campaignID, wallet, amount);

Expand Down

0 comments on commit b6cd746

Please sign in to comment.