2019-06-07 14:19:12 +03:00
|
|
|
require('../../env')
|
2020-10-28 14:20:50 +03:00
|
|
|
const { toWei } = require('web3').utils
|
|
|
|
const { web3Foreign } = require('../../src/services/web3')
|
|
|
|
const { sendTx } = require('../../src/tx/sendTx')
|
2019-05-06 14:12:53 +03:00
|
|
|
|
|
|
|
const {
|
|
|
|
USER_ADDRESS,
|
|
|
|
USER_ADDRESS_PRIVATE_KEY,
|
2019-09-13 10:11:38 +03:00
|
|
|
COMMON_FOREIGN_BRIDGE_ADDRESS,
|
2019-05-06 14:12:53 +03:00
|
|
|
FOREIGN_MIN_AMOUNT_PER_TX,
|
|
|
|
FOREIGN_TEST_TX_GAS_PRICE
|
|
|
|
} = process.env
|
|
|
|
|
|
|
|
const NUMBER_OF_DEPOSITS_TO_SEND = process.argv[2] || process.env.NUMBER_OF_DEPOSITS_TO_SEND || 1
|
|
|
|
|
2019-07-12 15:37:41 +03:00
|
|
|
const { ERC20_ABI, FOREIGN_ERC_TO_NATIVE_ABI } = require('../../../commons')
|
2019-05-06 14:12:53 +03:00
|
|
|
|
|
|
|
async function main() {
|
2019-09-13 10:11:38 +03:00
|
|
|
const bridge = new web3Foreign.eth.Contract(FOREIGN_ERC_TO_NATIVE_ABI, COMMON_FOREIGN_BRIDGE_ADDRESS)
|
2019-09-14 09:04:07 +03:00
|
|
|
const bridgeableTokenAddress = await bridge.methods.erc20token().call()
|
|
|
|
const poa20 = new web3Foreign.eth.Contract(ERC20_ABI, bridgeableTokenAddress)
|
2019-05-06 14:12:53 +03:00
|
|
|
|
|
|
|
try {
|
2020-10-28 14:20:50 +03:00
|
|
|
const foreignChainId = await web3Foreign.eth.getChainId()
|
|
|
|
let nonce = await web3Foreign.eth.getTransactionCount(USER_ADDRESS)
|
2019-05-06 14:12:53 +03:00
|
|
|
let actualSent = 0
|
|
|
|
for (let i = 0; i < Number(NUMBER_OF_DEPOSITS_TO_SEND); i++) {
|
|
|
|
const gasLimit = await poa20.methods
|
2020-10-28 14:20:50 +03:00
|
|
|
.transfer(COMMON_FOREIGN_BRIDGE_ADDRESS, toWei(FOREIGN_MIN_AMOUNT_PER_TX))
|
2019-05-06 14:12:53 +03:00
|
|
|
.estimateGas({ from: USER_ADDRESS })
|
|
|
|
const data = await poa20.methods
|
2020-10-28 14:20:50 +03:00
|
|
|
.transfer(COMMON_FOREIGN_BRIDGE_ADDRESS, toWei(FOREIGN_MIN_AMOUNT_PER_TX))
|
2019-05-06 14:12:53 +03:00
|
|
|
.encodeABI({ from: USER_ADDRESS })
|
|
|
|
const txHash = await sendTx({
|
|
|
|
privateKey: USER_ADDRESS_PRIVATE_KEY,
|
|
|
|
data,
|
|
|
|
nonce,
|
|
|
|
gasPrice: FOREIGN_TEST_TX_GAS_PRICE,
|
2022-02-07 23:32:41 +03:00
|
|
|
value: '0',
|
2019-05-06 14:12:53 +03:00
|
|
|
gasLimit,
|
2019-09-14 09:04:07 +03:00
|
|
|
to: bridgeableTokenAddress,
|
2019-05-06 14:12:53 +03:00
|
|
|
web3: web3Foreign,
|
2019-09-06 14:27:17 +03:00
|
|
|
chainId: foreignChainId
|
2019-05-06 14:12:53 +03:00
|
|
|
})
|
|
|
|
if (txHash !== undefined) {
|
|
|
|
nonce++
|
|
|
|
actualSent++
|
|
|
|
console.log(actualSent, ' # ', txHash)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
main()
|