admin管理员组文章数量:1344238
I am trying to create a WalletConnect provider.
I am using the @walletconnect/web3-provider package along with Web3Modal for UI.
I am instantiating the WalletConnectProvider
using my Infura client ID
let web3Modal = new Web3Modal({
network: "matic",
cacheProvider: true,
providerOptions: {
walletconnect: {
package: WalletConnectProvider,
options: {
infuraId: "c22c90a767684c5fbd7257da57802b35" ,
},
},
},
});
web3Modal.clearCachedProvider();
await web3Modal.connect();
When I run my app and connect my wallet, I get the following error:
Error: No RPC Url available for chainId: 137
I am trying to connect to the Polygon network (which is chainId 137
).
Infura does seem to support the Polygon Mainnet chain.
Also, I have this chain added to my MetaMask mobile wallet, which is the wallet I am using when connecting to WalletConnect.
So it should work..
Any ideas how to fix this?
I am trying to create a WalletConnect provider.
I am using the @walletconnect/web3-provider package along with Web3Modal for UI.
I am instantiating the WalletConnectProvider
using my Infura client ID
let web3Modal = new Web3Modal({
network: "matic",
cacheProvider: true,
providerOptions: {
walletconnect: {
package: WalletConnectProvider,
options: {
infuraId: "c22c90a767684c5fbd7257da57802b35" ,
},
},
},
});
web3Modal.clearCachedProvider();
await web3Modal.connect();
When I run my app and connect my wallet, I get the following error:
Error: No RPC Url available for chainId: 137
I am trying to connect to the Polygon network (which is chainId 137
).
Infura does seem to support the Polygon Mainnet chain.
Also, I have this chain added to my MetaMask mobile wallet, which is the wallet I am using when connecting to WalletConnect.
So it should work..
Any ideas how to fix this?
Share Improve this question asked Oct 8, 2021 at 10:57 David CallananDavid Callanan 5,84015 gold badges76 silver badges124 bronze badges2 Answers
Reset to default 5You can try using this RPC URL -
https://matic-mainnet.chainstacklabs.
More references can be found here - https://github./maticnetwork/static/blob/master/network/mainnet/v1/index.json
I was facing the exact same issue. Here is how I resolved this error:
import WalletConnectProvider from '@walletconnect/web3-provider';
import Web3Modal from 'web3modal';
const options = new WalletConnectProvider({
rpc: {
137: 'https://matic-mainnet.chainstacklabs.',
},
infuraId: INFURA_ID,
});
const providerOptions = {
walletconnect: {
package: WalletConnectProvider, // required
options: options,
},
};
const web3Modal = new Web3Modal({
network: 'mainnet',
cacheProvider: true,
providerOptions,
});
}
const provider = await web3Modal.connect();
本文标签: javascriptWallet Connect No RPC Url available for chainId 137Stack Overflow
版权声明:本文标题:javascript - Wallet Connect: No RPC Url available for chainId: 137 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743728589a2528793.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论