scripts: Give CW3 contracts some funds

This commit is contained in:
willclarktech
2020-11-18 13:20:28 +01:00
parent ef86986622
commit bd762847b8
+6
View File
@@ -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}`);
}
}