我的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
});
};