0.0.4 • Published 1 year ago

@uni-sign/injective v0.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Injective

Transaction codec and client to communicate with any injective blockchain.

Usage

npm install @uni-sign/injective

Taking direct signing mode as example.

// import * from "@uni-sign/injective"; // Error: use sub-imports, to ensure small app size
import { DirectSigner } from "@uni-sign/injective/direct";

const signer = new DirectSigner(<AUTH>, <ENCODER>[], <RPC_ENDPOINT>); // **ONLY** rpc endpoint is supported for now
const result = await signer.signAndBroadcast(<MESSAGE>[]);
console.log(result.hash); // the hash of TxRaw
  • See @uni-sign/auth to construct <AUTH>
  • See @uni-sign/injective-msgs(on progress) to construct <ENCODER>s and <CONVERTER>s, and also different message types.

Implementations

  • direct signer from @uni-sign/injective/direct
  • amino signer from @uni-sign/injective/amino
  • eip712 signer from @uni-sign/injective/eip712

License

MIT License (MIT) & Apache License

Copyright (c) 2024 Cosmology (https://cosmology.zone/)

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago