tx-manager/test/TxManager.test.js

106 lines
3.0 KiB
JavaScript
Raw Normal View History

2020-10-01 06:56:47 +02:00
require('dotenv').config()
require('chai').should()
2020-10-17 04:22:55 +02:00
const { parseUnits } = require('ethers').utils
2020-10-01 06:56:47 +02:00
const TxManager = require('../src/TxManager')
// const Transaction = require('../src/Transaction')
const { RPC_URL, PRIVATE_KEY } = process.env
describe('TxManager', () => {
const manager = new TxManager({
privateKey: PRIVATE_KEY,
rpcUrl: RPC_URL,
config: {
CONFIRMATIONS: 3,
GAS_BUMP_INTERVAL: 1000 * 15,
},
})
const tx1 = {
value: 1,
2020-10-17 04:22:55 +02:00
gasPrice: parseUnits('1', 'gwei').toHexString(),
2020-10-01 06:56:47 +02:00
to: '0xA43Ce8Cc89Eff3AA5593c742fC56A30Ef2427CB0',
}
const tx2 = {
2020-10-16 20:44:09 +02:00
value: 1,
2020-10-17 04:22:55 +02:00
gasPrice: parseUnits('0.5', 'gwei').toHexString(),
2020-10-16 20:44:09 +02:00
to: '0xA43Ce8Cc89Eff3AA5593c742fC56A30Ef2427CB0',
}
const tx3 = {
2020-10-01 06:56:47 +02:00
value: 2,
to: '0x0039F22efB07A647557C7C5d17854CFD6D489eF3',
}
2020-10-20 08:39:28 +02:00
const tx4 = {
value: 1,
to: '0xA43Ce8Cc89Eff3AA5593c742fC56A30Ef2427CB0',
}
2020-10-01 06:56:47 +02:00
describe('#transaction', () => {
it('should work', async () => {
const tx = manager.createTx(tx1)
2020-10-02 11:14:40 +02:00
const receipt = await tx
.send()
2020-10-02 11:55:44 +02:00
.on('transactionHash', hash => console.log('hash', hash))
.on('mined', receipt => console.log('Mined in block', receipt.blockNumber))
.on('confirmations', confirmations => console.log('confirmations', confirmations))
2020-10-01 06:56:47 +02:00
console.log('receipt', receipt)
})
2020-10-20 08:39:28 +02:00
it('should fetch gas price', async () => {
const tx = manager.createTx(tx4)
const receipt = await tx
.send()
.on('transactionHash', hash => console.log('hash', hash))
.on('mined', receipt => console.log('Mined in block', receipt.blockNumber))
.on('confirmations', confirmations => console.log('confirmations', confirmations))
console.log('receipt', receipt)
})
2020-10-16 20:44:09 +02:00
it('should bump gas price', async () => {
const tx = manager.createTx(tx2)
const receipt = await tx
.send()
.on('transactionHash', hash => console.log('hash', hash))
.on('mined', receipt => console.log('Mined in block', receipt.blockNumber))
.on('confirmations', confirmations => console.log('confirmations', confirmations))
console.log('receipt', receipt)
})
2020-10-01 06:56:47 +02:00
it('should cancel', async () => {
2020-10-16 20:44:09 +02:00
const tx = manager.createTx(tx2)
2020-10-01 06:56:47 +02:00
setTimeout(() => tx.cancel(), 1000)
2020-10-02 11:14:40 +02:00
const receipt = await tx
.send()
2020-10-02 11:55:44 +02:00
.on('transactionHash', hash => console.log('hash', hash))
.on('mined', receipt => console.log('Mined in block', receipt.blockNumber))
.on('confirmations', confirmations => console.log('confirmations', confirmations))
2020-10-01 06:56:47 +02:00
console.log('receipt', receipt)
})
it('should replace', async () => {
2020-10-16 20:44:09 +02:00
const tx = manager.createTx(tx2)
2020-10-01 06:56:47 +02:00
2020-10-16 20:44:09 +02:00
setTimeout(() => tx.replace(tx3), 1000)
2020-10-01 06:56:47 +02:00
2020-10-02 11:14:40 +02:00
const receipt = await tx
.send()
2020-10-02 11:55:44 +02:00
.on('transactionHash', hash => console.log('hash', hash))
.on('mined', receipt => console.log('Mined in block', receipt.blockNumber))
.on('confirmations', confirmations => console.log('confirmations', confirmations))
2020-10-01 06:56:47 +02:00
console.log('receipt', receipt)
})
})
})