| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import yargs from "yargs";
- import { hideBin } from "yargs/helpers";
- import { CosmWasmChain } from "../src/chains";
- import { CosmWasmContract } from "../src/contracts/cosmwasm";
- import { DefaultStore } from "../src/store";
- const parser = yargs(hideBin(process.argv))
- .scriptName("upload_cosmwasm.ts")
- .usage(
- "Usage: $0 --code <path/to/artifact.wasm> --private-key <private-key> --chain <chain>"
- )
- .options({
- code: {
- type: "string",
- demandOption: true,
- desc: "Path to the artifact .wasm file",
- },
- "private-key": {
- type: "string",
- demandOption: true,
- desc: "Private key to use for the deployment",
- },
- chain: {
- type: "string",
- demandOption: true,
- desc: "Chain to upload the code on. Can be one of the chains available in the store",
- },
- });
- async function main() {
- const argv = await parser.argv;
- const { code } = argv;
- const { codeId } = await CosmWasmContract.storeCode(
- DefaultStore.chains[argv.chain] as CosmWasmChain,
- argv["private-key"],
- code
- );
- console.log(`Successfully uploaded code with id ${codeId}`);
- }
- main();
|