provenance-io / wallet-utils

Home Page:https://provenance-io.github.io/wallet-utils/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provenance Blockchain Foundation - Wallet Utils

Typescript Utilities for Provenance Blockchain Wallet

Status

Latest Release Apache 2.0 License LOC Commitizen friendly

Use

Import the dependency

npm install @provenanceio/wallet-utils --save

The package json import will look like this: "@provenanceio/wallet-utils": "^0.2.0"

Below is a quick example of how to use the utils to prepare a message:

import { buildMessage, createAnyMessageBase64 } from "@provenanceio/wallet-utils";

const type = 'MsgDelegate';
const sendMessage = {
    delegatorAddress,
    validatorAddress,
    amount: { denom: 'nhash', amount: sendAmountNHash },
  };
  const messageMsgSend = buildMessage(type, sendMessage);
  const message = createAnyMessageBase64(type, messageMsgSend as Message);

System Requirements

  • node >= 16.14 (LTS)
  • npm >= 8.0 (included with node 16)

It's recommended to use n (GitHub) or nvm (GitHub) to manage your local node/npm versions

Contributing

Read the contributing guide to learn about our development process, how to submit bugfixes and improvements, and how to build and test your changes.

About

https://provenance-io.github.io/wallet-utils/

License:Apache License 2.0


Languages

Language:TypeScript 96.0%Language:JavaScript 2.4%Language:Shell 1.7%