python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I find the tax of a token programatically?
I'm trying to fetch the Buy or Sell Tax of a BSC token, but I haven't found a way yet.
I query the DEX via router_contract.functions.getAmountsOut(web3.toWei(1, 'Ether'), [ buying_token_address, pair_...
Crypto7
Votes: 0
Answers: 2
How to get tokens transferred in transaction details using web3 js?
I am using web3js to get transaction details
my code:
const transactionHash = this._req.query.transactionHash;
const transaction = await this._web3.eth.getTransactionReceipt(transactionHash);
const ...

Dinh Luong
Votes: 0
Answers: 1
How to paid gas charges from another account when transfer bep20 token using web3?
let contract= new web3.eth.Contract(BUSD_TOKEN_ABI, BUSD_TOKEN_ADDRESS)
await contract.methods.transfer(toAddress, transFerValue).send({from: defaultAddress})
I can send easily bep20 token by using a...
Mehedi
Votes: 0
Answers: 1