-
Notifications
You must be signed in to change notification settings - Fork 9
/
test-commontx.js
34 lines (32 loc) · 1.43 KB
/
test-commontx.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict'
console.error('\n=====RUN-TEST-COMMONTX-START=====\n')
// const express = require("express");
var { WaykiTransaction, Wallet } = require("../index")
var wallet = new Wallet("Y6J4aK6Wcs4A3Ex4HXdfjJ6ZsHpNZfjaS4B9w7xqEnmFEYMqQd13")
/*
Build a transaction for common transfer
note:
1, nValidHeight: the height of the block when creating the signature, and the height difference when submitting the broadcast transaction must be <=250
2, fees: handling fee , >= 10000000 sawi (0.1 wicc)
3. The same transaction cannot be submitted repeatedly before it is confirmed(BPS=0.1). It is recommended to solve the problem of batch initiated transaction by adding random handling fee.
*/
/*
构建普通转账交易的交易单
注意:
1、nValidHeight:创建签名时的区块高度,与提交广播交易时的高度差必须 <=250
2、fees:手续费, >= 10000000 sawi(0.1 wicc)
3、相同的交易在未被确认前不能重复提交(BPS=0.1),建议采用添加随机手续费方式解决批量发起交易问题
*/
var commonTxinfo = {
nTxType: 3,
nValidHeight: 34550,
fees: 10000000,
srcRegId: '0-1',// regid of sender
destAddr: 'wWTStcDL4gma6kPziyHhFGAP6xUzKpA5if',// address of receiver
amount: 1100000000000,
memo: "test transfer"// remark
};
var transaction = new WaykiTransaction(commonTxinfo, wallet)
var commonTx = transaction.genRawTx()
console.log("----commonTx----", commonTx)
console.error('\n=====RUN-TEST-COMMONTX-END=====\n')