Skip to content

Commit

Permalink
fund integration tests accounts more
Browse files Browse the repository at this point in the history
  • Loading branch information
codchen committed Oct 17, 2024
1 parent c5967ea commit 92a094d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/test/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ async function getEvmTx(provider, cosmosTxHash) {
return await provider.send("sei_getEvmTx", [cosmosTxHash])
}

async function fundAddress(addr, amount="10000000000000000000") {
async function fundAddress(addr, amount="1000000000000000000000") {
const result = await evmSend(addr, adminKeyName, amount)
await delay()
return result
}

async function evmSend(addr, fromKey, amount="100000000000000000000000") {
async function evmSend(addr, fromKey, amount="10000000000000000000000000") {
const output = await execute(`seid tx evm send ${addr} ${amount} --from ${fromKey} -b block -y`);
return output.replace(/.*0x/, "0x").trim()
}
Expand Down

0 comments on commit 92a094d

Please sign in to comment.