This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@lto-network/lto-transactions
TypeScript icon, indicating that this package has built-in type declarations

1.2.13 • Public • Published

lto-transactions

License npm version Build Status

Using this library you can easily create and sign transactions for LTO blockchain. It also allows you to multi-sign existing transactions or create them without signature at all.

This library is a set of transaction constructing functions:

Check the full documentation.

Transactions

Create transaction and sign it from a minimal set of required params. If you want to create Transfer transaction the minimum you need to provide is amount and recipient as defined in Transfer params:

const { transfer } = require('@lto-network/lto-transactions')
const seed = 'some example seed phrase'
const signedTranserTx = transfer({ 
  amount: 1,
  recipient: '3JmEPiCpfL4p5WswT21ZpWKND5apPs2hTMB'
}, seed)

Output will be a signed transfer transaction:

{ 
  id: '3sgkGCxZmPpKDz8BNztWNoVEiXXgWgeZdYpJNh1CqtKp',
  type: 4,
  version: 2,
  senderPublicKey: '98Pw96PizgJC7MHT8RUDJGS7YGr68YDqmSA2X83XJeDX',
  recipient: '3JmEPiCpfL4p5WswT21ZpWKND5apPs2hTMB',
  amount: 1,
  attachment: '',
  fee: 100000,
  timestamp: 1536917842558,
  proofs: [ 
    '4r7Amhzmpj2yh7uCiTkTjosVwKfHUTucoyitRXafzTBtQrsdqVGcJvJdneHakNq2LcsBWCxfDowkke7RbAMMZoaQ' 
  ]
}

You can also create transaction, but not sign it:

const unsignedTransferTx = transfer({ 
  amount: 1,
  recipient: '3JmEPiCpfL4p5WswT21ZpWKND5apPs2hTMB',
  //senderPublicKey is required if you omit seed
  senderPublicKey: '6nR7CXVV7Zmt9ew11BsNzSvVmuyM5PF6VPbWHW9BHgPq' 
})

Now you are able to POST it to LTO API or store for future purpose or you can add another signature from other party:

const otherPartySeed = 'other party seed phrase'
const transferSignedWithTwoParties = transfer(signedTranserTx, otherPartySeed)

So now there are two proofs:

{ 
  id: '3sgkGCxZmPpKDz8BNztWNoVEiXXgWgeZdYpJNh1CqtKp',
  type: 4,
  version: 2,
  senderPublicKey: '98Pw96PizgJC7MHT8RUDJGS7YGr68YDqmSA2X83XJeDX',
  recipient: '3JmEPiCpfL4p5WswT21ZpWKND5apPs2hTMB',
  amount: 1,
  attachment: '',
  fee: 100000,
  timestamp: 1536917842558,
  proofs: [ 
    '4r7Amhzmpj2yh7uCiTkTjosVwKfHUTucoyitRXafzTBtQrsdqVGcJvJdneHakNq2LcsBWCxfDowkke7RbAMMZoaQ',
    '4m2GCeWc3jFg7qE7D67rzD26KTe2YMaSSz99GcxGCezBAuh6LSWBCEnDbPDfRMKDoCZDdTLgjovdF9LhDzan4Qah' 
  ]
}

Broadcast

To send transaction you can use either node REST API or broadcast helper function:

const {broadcast} = require('@lto-network/lto-transactions');
const nodeUrl = 'https://nodes.lto.network';

broadcast(signedTx, nodeUrl).then(resp => console.log(resp))

You can send tx to any lto node you like:. E.g.:

Important!!!

Most transactions require chainId as parameter, e.g: IBurnParams. By default chainId is 'L', which means MAINNET. To make transaction in TESTNET be sure to pass chainId if it is present in params interface and then send it to TESTNET node

Package Sidebar

Install

npm i @lto-network/lto-transactions

Weekly Downloads

100

Version

1.2.13

License

MIT

Unpacked Size

418 kB

Total Files

127

Last publish

Collaborators

  • jasny
  • svenstam