How to use the nem2-sdk.UInt64.fromUint function in nem2-sdk

To help you get started, we’ve selected a few nem2-sdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github evias / nem2-sandbox / src / commands / aggregate / mosaicConfiguration.ts View on Github external
addresses.map((address: Address) => {
            const transferTx = TransferTransaction.create(
                Deadline.create(),
                address,
                [new Mosaic(mosaicId, UInt64.fromUint(amount))],
                PlainMessage.create('nem2-sandbox initial coin distribution'),
                this.networkType,
                UInt64.fromUint(1000000), // 1 XEM fee
            )

            transferTxes.push(transferTx.toAggregate(publicAccount))
        })
github evias / nem2-sandbox / src / commands / aggregate / mosaicConfiguration.ts View on Github external
addresses.map((address: Address) => {
            const transferTx = TransferTransaction.create(
                Deadline.create(),
                address,
                [new Mosaic(mosaicId, UInt64.fromUint(amount))],
                PlainMessage.create('nem2-sandbox initial coin distribution'),
                this.networkType,
                UInt64.fromUint(1000000), // 1 XEM fee
            )

            transferTxes.push(transferTx.toAggregate(publicAccount))
        })
github luxtagofficial / Apostille-library / src / infrastructure / ApostilleHttp.ts View on Github external
public static createLockFundsTransaction(signedAggregateBondedTransaction: SignedTransaction): LockFundsTransaction {
    const lockFundsTransaction = LockFundsTransaction.create(
      Deadline.create(),
      new Mosaic(new NamespaceId('nem.xem'), UInt64.fromUint(10)),
      UInt64.fromUint(480),
      signedAggregateBondedTransaction,
      signedAggregateBondedTransaction.networkType);

    return lockFundsTransaction;
  }
github luxtagofficial / Apostille-library / src / model / apostille / PublicApostille.ts View on Github external
public update(fileContent: string, hashFunction: HashFunction): TransferTransaction {
    this.hash = hashFunction.nonSignedHashing(fileContent);
    const creationTransaction = TransferTransaction.create(
      Deadline.create(),
      this.sinkAddress,
      [
        new Mosaic(new NamespaceId('nem.xem'), UInt64.fromUint(10)),
      ],
      PlainMessage.create(this.hash),
      this.sinkAddress.networkType,
    );
    return creationTransaction;
  }

nem2-sdk

Reactive Nem2 sdk for typescript and javascript

Apache-2.0
Latest version published 5 years ago

Package Health Score

51 / 100
Full package analysis

Similar packages