cosmjs-util/packages/cli/examples/local_faucet.ts
2020-06-02 16:13:34 +02:00

19 lines
574 B
TypeScript

const defaultHttpUrl = "http://localhost:1317";
const defaultNetworkId = "testing";
const defaultFee: StdFee = {
amount: [
{
amount: "5000",
denom: "ucosm",
},
],
gas: "890000",
};
const faucetMnemonic =
"economy stock theory fatal elder harbor betray wasp final emotion task crumble siren bottom lizard educate guess current outdoor pair theory focus wife stone";
const faucetAddress = "cosmos1pkptre7fdkl6gfrzlesjjvhxhlc3r4gmmk8rs6";
const pen = await Secp256k1Pen.fromMnemonic(faucetMnemonic);
const client = new RestClient(defaultHttpUrl);