Using Metamask but get Error: Returned error: The method eth_sendTransaction does not exist/is not available
Using Metamask but get Error: Returned error: The method eth_sendTransaction does not exist/is not available
我想在我部署的智能合约中调用支付功能,但它不起作用。这是我得到的错误:
Error: Returned error: The method eth_sendTransaction does not exist/is not available
我能找到的答案是只使用私钥,因为 infura 不支持这种方法,但是我希望用户使用 MetaMask 将交易签署到智能合约。
这是我的代码:
export async function helloworld() {
const rpcURL =
"https://ropsten.infura.io/v3/KEY";
const web3 = new Web3(rpcURL);
let provider = window.ethereum;
if (typeof provider !== "undefined") {
provider
.request({ method: "eth_requestAccounts" })
.then((accounts) => {
selectedAccount = accounts[0];
console.log(`Selected account is ${selectedAccount}`);
})
.catch((err) => {
console.log(err);
return;
});
window.ethereum.on("accountsChanged", function (accounts) {
selectedAccount = accounts[0];
console.log(`Selected account changed to ${selectedAccount}`);
});
}
const networkId = await web3.eth.net.getId();
const thecontract = new web3.eth.Contract(
simpleContractAbi,
"0x50A404efF9A057900f87ad0E0dEfA0D485931464"
);
isInitialized = true;
investit(thecontract, selectedAccount);
}
这是实际引发错误的代码:
export const investit = async (thecontract, selectedAccount) => {
if (!isInitialized) {
await helloworld();
}
thecontract.methods
.invest()
.send({ from: selectedAccount, value: 10000 })
.catch(function (err) {
console.log(err);
});
};
我完全迷路了,因为如果我使用正常的 window.ethereum.request
(https://docs.metamask.io/guide/sending-transactions.html#example) 发送交易,metamask 会打开,我可以对其进行签名。对于合同调用,它根本不起作用。
你知道原因吗?我该如何解决这个问题?
干杯!
这一定是问题所在。你只是传递了一个 url:
const rpcURL ="https://ropsten.infura.io/v3/KEY";
改为:
const web3 = new Web3(new Web3.providers.HttpProvider("https://ropsten.infura.io/v3/KEY"))
eth_sendTransaction 要求您在将交易广播到网络之前持有私钥签署交易。 Infura 不维护任何私钥。为了发送交易,您需要使用您的私钥在您这端签署交易。
您检查提供商的方式不正确。 window.ethereum
也是一个提供者,由 metamask 提供。 provider
本身是没有意义的,必须注入new Web3()
.
我想在我部署的智能合约中调用支付功能,但它不起作用。这是我得到的错误:
Error: Returned error: The method eth_sendTransaction does not exist/is not available
我能找到的答案是只使用私钥,因为 infura 不支持这种方法,但是我希望用户使用 MetaMask 将交易签署到智能合约。
这是我的代码:
export async function helloworld() {
const rpcURL =
"https://ropsten.infura.io/v3/KEY";
const web3 = new Web3(rpcURL);
let provider = window.ethereum;
if (typeof provider !== "undefined") {
provider
.request({ method: "eth_requestAccounts" })
.then((accounts) => {
selectedAccount = accounts[0];
console.log(`Selected account is ${selectedAccount}`);
})
.catch((err) => {
console.log(err);
return;
});
window.ethereum.on("accountsChanged", function (accounts) {
selectedAccount = accounts[0];
console.log(`Selected account changed to ${selectedAccount}`);
});
}
const networkId = await web3.eth.net.getId();
const thecontract = new web3.eth.Contract(
simpleContractAbi,
"0x50A404efF9A057900f87ad0E0dEfA0D485931464"
);
isInitialized = true;
investit(thecontract, selectedAccount);
}
这是实际引发错误的代码:
export const investit = async (thecontract, selectedAccount) => {
if (!isInitialized) {
await helloworld();
}
thecontract.methods
.invest()
.send({ from: selectedAccount, value: 10000 })
.catch(function (err) {
console.log(err);
});
};
我完全迷路了,因为如果我使用正常的 window.ethereum.request
(https://docs.metamask.io/guide/sending-transactions.html#example) 发送交易,metamask 会打开,我可以对其进行签名。对于合同调用,它根本不起作用。
你知道原因吗?我该如何解决这个问题?
干杯!
这一定是问题所在。你只是传递了一个 url:
const rpcURL ="https://ropsten.infura.io/v3/KEY";
改为:
const web3 = new Web3(new Web3.providers.HttpProvider("https://ropsten.infura.io/v3/KEY"))
eth_sendTransaction 要求您在将交易广播到网络之前持有私钥签署交易。 Infura 不维护任何私钥。为了发送交易,您需要使用您的私钥在您这端签署交易。
您检查提供商的方式不正确。 window.ethereum
也是一个提供者,由 metamask 提供。 provider
本身是没有意义的,必须注入new Web3()
.