From bd762847b88355d16c544795ebbb927dd67a78d1 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 17 Nov 2020 13:13:53 +0100 Subject: [PATCH] scripts: Give CW3 contracts some funds --- scripts/launchpad/deploy_cw3.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/launchpad/deploy_cw3.js b/scripts/launchpad/deploy_cw3.js index 411f4837..38efddab 100755 --- a/scripts/launchpad/deploy_cw3.js +++ b/scripts/launchpad/deploy_cw3.js @@ -75,6 +75,12 @@ async function main() { memo: `Create a CW3 instance for ${initMsg.symbol}`, admin: admin, }); + await client.sendTokens(contractAddress, [ + { + amount: "1000", + denom: "ucosm", + }, + ]); console.info(`Contract instantiated for ${label} at ${contractAddress}`); } }