-
-
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
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
...tion/pi_network/pi-network-interoperability/bridge-contracts/avalanche/AvalancheBridge.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,39 @@ | ||
const avalanche = require("avalanche-js"); | ||
const Web3 = require("web3"); | ||
const AvalancheBridgeContract = require("./AvalancheBridge.sol"); | ||
|
||
class AvalancheBridge { | ||
constructor(avalancheAddress, piNetworkAddress, avalancheBridgeContractAddress) { | ||
this.avalancheAddress = avalancheAddress; | ||
this.piNetworkAddress = piNetworkAddress; | ||
this.avalancheBridgeContractAddress = avalancheBridgeContractAddress; | ||
this.avalanche = avalanche; | ||
this.web3 = new Web3(new Web3.providers.HttpProvider("https://api.avax.network/ext/bc/C/rpc")); | ||
} | ||
|
||
async transferTokens(token, amount) { | ||
const txCount = await this.web3.eth.getTransactionCount(this.avalancheAddress); | ||
const tx = { | ||
from: this.avalancheAddress, | ||
to: this.piNetworkAddress, | ||
value: amount, | ||
gas: "20000", | ||
gasPrice: "20.0", | ||
nonce: txCount | ||
}; | ||
const signedTx = await this.web3.eth.accounts.signTransaction(tx, "YOUR_PRIVATE_KEY"); | ||
await this.web3.eth.sendSignedTransaction(signedTx.rawTransaction); | ||
} | ||
|
||
async getBalance(token) { | ||
const balance = await this.avalanche.getBalance(this.avalancheAddress, token); | ||
return balance; | ||
} | ||
|
||
async getAvalancheBridgeContract() { | ||
const contract = new this.web3.eth.Contract(AvalancheBridgeContract.abi, this.avalancheBridgeContractAddress); | ||
return contract; | ||
} | ||
} | ||
|
||
module.exports = AvalancheBridge; |