如何使用我在node.js,web3上的私钥为用户支付汽油费?

时间:2018-11-30 17:45:03

标签: node.js ethereum web3 metamask

我的node.js dapp中有一个与智能合约交互的按钮,该按钮是为没有eth或metamask的人创建的。

当其他人使用我的私钥按btn时,我如何从我的帐户中支付汽油费?

示例:

     onSubmit = async (event) => {
        const mypublickey = "0x1";
        const myprivatekey = "xyz"
        const addr = this.state.theContract;
        const theContract = GetContrat(addr);
        await theContract.methods
           UserVote()
           .send({
            from:mypublickey,
            privatekey:myprivatekey
        }); 
};

0 个答案:

没有答案