1.3.4 • Published 2 years ago

txwrapper-nugenesis v1.3.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

About

Txwrapper library for nugenesis relay and system chains.

Note: not all methods available apply to all supported chains. To check what methods are supported by a chain consult the pallets included in chain's runtime.

Get Started

yarn add txwrapper-nugenesis

In a JS/TS file:

import {
  construct,
  methods,
} from 'txwrapper-nugenesis';

const unsigned = methods.balance.transfer(
  {
    dest: 'FoQJpPyadYccjavVdTWxpxU7rUEaYhfLCPwXgkfD6Zat9QP',
    value: 100,
  },
  {
    // Additional information needed to construct the transaction offline.
  }
);

const signingPayload = construct.signingPayload(unsigned, { registry });
// On your offline device, sign the payload.
const signature = myOfflineSigning(signingPayload);

// `tx` is ready to be broadcasted.
const tx = construct.signedTx(unsigned, signature, { metadataRpc, registry });

Have a look at the examples to see how you can perform the whole lifecycle of a transaction, from generation to signing to broadcast.

1.3.4

2 years ago

1.3.3

2 years ago

1.3.3-rc6

2 years ago

1.3.3-rc5

2 years ago

1.3.3-rc4

2 years ago

1.3.3-rc3

2 years ago

1.3.3-rc2

2 years ago

1.3.3-rc.1

2 years ago

1.3.2-rc1

2 years ago

1.3.2

2 years ago