-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...pi_network/pi-network-interoperability/bridge-contracts/polkadot/PolkadotTokenContract.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
const Web3 = require('web3'); | ||
const Ethers = require('ethers'); | ||
const { ApiPromise, WsProvider } = require('@polkadot/api'); | ||
|
||
class PolkadotTokenContract { | ||
constructor(polkadotTokenContractAddress, providerUrl) { | ||
this.polkadotTokenContractAddress = polkadotTokenContractAddress; | ||
this.web3 = new Web3(new Web3.providers.HttpProvider(providerUrl)); | ||
this.ethersProvider = new Ethers.providers.JsonRpcProvider(providerUrl); | ||
this.api = new ApiPromise({ | ||
provider: new WsProvider(providerUrl) | ||
}); | ||
} | ||
|
||
async transfer(recipientAddress, amount) { | ||
const txCount = await this.web3.eth.getTransactionCount(this.polkadotTokenContractAddress); | ||
const tx = { | ||
from: this.polkadotTokenContractAddress, | ||
to: recipientAddress, | ||
value: amount, | ||
gas: '20000', | ||
gasPrice: '20', | ||
nonce: txCount | ||
}; | ||
const signedTx = await this.ethersProvider.signTransaction(tx, '0x1234567890abcdef'); | ||
await this.ethersProvider.sendTransaction(signedTx); | ||
} | ||
|
||
async approve(spenderAddress, amount) { | ||
const txCount = await this.web3.eth.getTransactionCount(this.polkadotTokenContractAddress); | ||
const tx = { | ||
from: this.polkadotTokenContractAddress, | ||
to: spenderAddress, | ||
value: amount, | ||
gas: '20000', | ||
gasPrice: '20', | ||
nonce: txCount | ||
}; | ||
const signedTx = await this.ethersProvider.signTransaction(tx, '0x1234567890abcdef'); | ||
await this.ethersProvider.sendTransaction(signedTx); | ||
} | ||
|
||
async balanceOf(address) { | ||
return this.api.query.tokens.balanceOf(address); | ||
} | ||
} | ||
|
||
module.exports = PolkadotTokenContract; |