Sha256: 24ee3cf5651d78e2046d7215e552cdaa04588f7d20ffb5e3509eb52dd89ff74f
Contents?: true
Size: 1.68 KB
Versions: 1
Compression:
Stored size: 1.68 KB
Contents
/** * @module index */ import {IBurnParams, WithId, WithProofs, WithSender} from '../transactions' import { binary } from '@waves/marshall' import { signBytes, blake2b, base58Encode } from '@waves/ts-lib-crypto' import {addProof, getSenderPublicKey, convertToPairs, networkByte, fee, normalizeAssetId} from '../generic' import { TSeedTypes } from '../types' import { validate } from '../validators' import { txToProtoBytes } from '../proto-serialize' import { DEFAULT_VERSIONS } from '../defaultVersions' import {BurnTransaction, TRANSACTION_TYPE} from '@waves/ts-types' /* @echo DOCS */ export function burn(params: IBurnParams, seed: TSeedTypes): BurnTransaction & WithId & WithProofs export function burn(paramsOrTx: IBurnParams & WithSender | BurnTransaction, seed?: TSeedTypes): BurnTransaction & WithId & WithProofs export function burn(paramsOrTx: any, seed?: TSeedTypes): BurnTransaction & WithId & WithProofs{ const type = TRANSACTION_TYPE.BURN const version = paramsOrTx.version || DEFAULT_VERSIONS.BURN const seedsAndIndexes = convertToPairs(seed) const senderPublicKey = getSenderPublicKey(seedsAndIndexes, paramsOrTx) const tx: BurnTransaction & WithId & WithProofs = { type, version, senderPublicKey, assetId: paramsOrTx.assetId, amount: paramsOrTx.amount, chainId: networkByte(paramsOrTx.chainId, 87), fee: fee(paramsOrTx, 100000), timestamp: paramsOrTx.timestamp || Date.now(), proofs: paramsOrTx.proofs || [], id: '', } validate.burn(tx) const bytes = version > 2 ? txToProtoBytes(tx) : binary.serializeTx(tx) seedsAndIndexes.forEach(([s, i]) => addProof(tx, signBytes(s, bytes), i)) tx.id = base58Encode(blake2b(bytes)) return tx }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
waves_lib-0.1.0 | js/node_modules/@waves/waves-transactions/src/transactions/burn.ts |