-
-
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.
Create NexusSmartChainTokenContract.sol
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...erability/bridge-contracts/kosasih-universalis/contracts/NexusSmartChainTokenContract.sol
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,30 @@ | ||
const Web3 = require("web3"); | ||
const nexusSmartChainTokenContract = require("./NexusSmartChainTokenContract.sol"); | ||
|
||
class NexusSmartChainTokenContract { | ||
constructor(nexusSmartChainAddress) { | ||
this.nexusSmartChainAddress = nexusSmartChainAddress; | ||
this.web3 = new Web3(new Web3.providers.HttpProvider("https://mainnet.infura.io/v3/YOUR_PROJECT_ID")); | ||
} | ||
|
||
async transferTokens(to, amount) { | ||
const txCount = await this.web3.eth.getTransactionCount(this.nexusSmartChainAddress); | ||
const tx = { | ||
from: this.nexusSmartChainAddress, | ||
to: to, | ||
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() { | ||
const balance = await this.web3.eth.getBalance(this.nexusSmartChainAddress); | ||
return balance; | ||
} | ||
} | ||
|
||
module.exports = NexusSmartChainTokenContract; |