作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下代码将 erc20token 从契约(Contract)地址转移到 eth 地址:
var _from = "from Address";
var contAddress = "contract address";
var _to = "to address";
var _Amount = '50';
var txnObject = {
"from":_from,
"to": _to,
"value": web3.utils.toWei(_Amount,'ether'),
// "gas": 21000, (optional)
// "gasPrice": 4500000, (optional)
// "data": 'For testing' (optional)
// "nonce": 10 (optional)
}
web3.eth.sendTransaction(txnObject, function(error, result){
if(error){
console.log( "Transaction error" ,error);
}
else{
var txn_hash = result; //Get transaction hash
//$('#Tx').text(txn_hash);
alert(txn_hash);
}
});
但我收到此错误:
Transaction error Error: Returned error: The method eth_sendTransaction does not exist/is not available
我已经搜索了很多并尝试了这段代码,但没有奏效。可能是什么原因?这段代码是错误的还是别的什么?
最佳答案
除了错误消息外,与您的问题相关的其他问题很少。
让我们从错误消息开始。
The method eth_sendTransaction does not exist/is not available
eth_sendTransaction()
当您希望您的节点为您签署交易(使用 ulocked 帐户)时使用。但是您连接到不支持此方法的节点。很可能是 Infura 或其他第三方节点提供商,它们不为您持有您帐户的私钥。
accounts.wallet.add()
方法,然后是 Contract 实例
send()
方法 - 请参阅答案的中间部分。
// this is one of the other ways to sign a transaction on your end
web3.eth.accounts.wallet.add(privateKeyToTheSenderAddress);
// for this case, you can use a generic ERC-20 ABI JSON interface
const myContract = new web3.eth.Contract(jsonInterface, contractAddress);
// invoke the `transfer()` method on the contract
// sign it using the private key corresponding to the `senderAddress`
// and broadcast the signed tx to your node
myContract.methods.transfer(toAddress, amount).send({from: senderAddress});
transfer()
方法通常是这样构建的:
function transfer(address _to, uint256 _amount) external returns (bool) {
balances[msg.sender] -= _amount; // decreases balance of the transaction sender
// ...
}
交易发送方需要使用他们的私钥对交易进行签名。如果您希望发送方成为合约(以减少合约的代币余额),则需要拥有其私钥。你没有的(实际上不可能知道合约的私钥)。
function withdrawTokensFromContract(uint256 _amount) external {
require(msg.sender == address(Ox123), 'Not authorized');
balances[address(this)] -= _amount; // decreases balance of the contract
// ...
}
在这种情况下,如果您使用属于授权地址的私钥签署了交易,则可以减少合约的代币余额。
Address A
转移代币(存储在合约地址中)至
Address B
.在这种情况下,您可以安全地使用
transfer()
答案中间部分描述的方法,并使用属于
Address A
的私钥对交易进行签名。 .
关于ethereum - 错误 : Returned error: The method eth_sendTransaction does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68236469/
我正在尝试使用以下代码将 erc20token 从契约(Contract)地址转移到 eth 地址: var _from = "from Address";
调用已在 ropsten-infura 中部署的 Solidity 合约时显示错误。我正在使用 web3(@0.19.1) 来调用契约(Contract)。 有人遇到过同样的问题吗? 最佳答案 我猜你
我是一名优秀的程序员,十分优秀!