文章
问答
讲堂
百科图谱
线下集训
更多
提问
发表文章
专栏
活动
文档
工作
集市
发现
Toggle navigation
文章
问答
讲堂
线下集训
专栏
活动
工作
文档
集市
搜索
登录/注册
3
征集一份web3.php发送代币的dom
回答问题即可获得
5
贡献值,回答被采纳后即可获得
8
学分。
我需要一份 web3.php的发送代币dom,请求大师们帮助我
我需要一份 web3.php的发送代币dom,请求大师们帮助我
0 条评论
分类:
以太坊
请先
登录
后评论
默认排序
时间排序
1 个回答
nono
2022-03-05 11:50
没有用过web3.php。但是你可以把下面的tokenAddress换成你说的dom。fromAddress为转出地址(该实例中为钱包地址)receiver为转入地址 ``` const sendERC20Transaction = async (receiver, amount) => { var Tx = require('ethereumjs-tx') const Web3 = require('web3') const web3 = new Web3('https://mainnet.infura.io/v3/your-project-id') web3.eth.accounts.wallet.add('privateKey of fromwallet'); var contractAbi =[]; var tokenAddress = '0xdAC17F958D2ee523a2206206994597C13D831ec7'//Tether token(USDT) var fromAddress = '0x3df...' var tokenInst = new web3.eth.Contract(contractAbi,tokenAddress); tokenInst.methods.transfer(receiver, amounts).send({from: fromAddress, gas: 100000},function (error, result){ //get callback from function which is your transaction key if(!error){ console.log(result); handleSuccessTrue(); } else{ console.log(error); web3.eth.getBalance(fromAddress, (err,bal) => { alert('Your account has ' + web3.utils.fromWei(bal, 'ether') + ', Insufficient funds for gas * price + value on your wallet')}); handleSuccessFalse(); } }); //Finally, you can check if usdt tranaction success through this code. tokenInst.methods.balanceOf(receiver).call().then(console.log) .catch(console.error); ``` 实例来自于 [how-to-send-usdt-using-web3-php](https://ethereum.stackexchange.com/questions/110485/how-to-send-usdt-using-web3-php)
请先
登录
后评论
您需要登录后才可以回答问题,
登录
关注
1
关注
收藏
0
收藏,
2264
浏览
饭盒
提出于 2022-03-02 14:52
×
发送私信
请将文档链接发给晓娜,我们会尽快安排上架,感谢您的推荐!
发给:
内容:
×
举报此文章
垃圾广告信息:
广告、推广、测试等内容
违规内容:
色情、暴力、血腥、敏感信息等内容
不友善内容:
人身攻击、挑衅辱骂、恶意行为
其他原因:
请补充说明
举报原因: