cosmos-client-ts
JavaScript / TypeScript client for Cosmos SDK blockchain.
Install
npm install --save cosmos-client
Example
import { CosmosSDK, AccAddress, PrivKeySecp256k1 } from "cosmos-client";
import { auth } from "cosmos-client/x/auth";
import { bank } from "cosmos-client/x/bank";
const sdk = new CosmosSDK(hostURL, chainID);
const privKeyBuffer = await sdk.generatePrivKeyFromMnemonic(mnemonic);
const privKey = new PrivKeySecp256k1(privKeyBuffer);
const fromAddress = AccAddress.fromPublicKey(privKey.getPubKey());
const account = await auth
.accountsAddressGet(sdk, fromAddress)
.then((res) => res.data);
const toAddress = fromAddress;
const unsignedStdTx = await bank
.accountsAddressTransfersPost(sdk, toAddress, {
base_req: {
from: fromAddress.toBech32(),
memo: "Hello, world!",
chain_id: sdk.chainID,
account_number: account.account_number.toString(),
sequence: account.sequence.toString(),
gas: "",
gas_adjustment: "",
fees: [],
simulate: false,
},
amount: [{ denom: "token", amount: "1000" }],
})
.then((res) => res.data);
const signedStdTx = auth.signStdTx(
sdk,
privKey,
unsignedStdTx,
account.account_number,
account.sequence,
);
const result = await auth
.txsPost(sdk, signedStdTx, "sync")
.then((res) => res.data);
For library developlers
swagger.yml
openapi-generator generate -g typescript-axios -i swagger.yaml -o ./src
The first digit major version and the second digit minor version should match Cosmos SDK.
The third digit patch version can be independently incremented.