-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: 410 Gone: {"jsonrpc":"2.0","error":{"code": 410, "message":"The RPC call or parameters have been disabled."} #195
Comments
How is data provider issue related to serum? |
I believe it is related to Serum because it breaks the Market.placeOrder() function in the '@project-serum/serum' javascript library. Please could you give your opinion on why this is happening and what the root cause is? I'm slightly loss here. This 410 issue only seems occur for this specific program ID, so naturally I thought it might be related to Serum. I googled "The RPC call or parameters have been disabled" and haven't seen any useful results. Thank you. |
You need to change the data provider and close the issue since |
Having this issue too. This is node.js code for me, not even |
This is related. I am having the same issue trying to run the example here.
|
I see the same issue with 2 different node providers |
Try the Serum RPC endpoint "https://solana-api.projectserum.com". That works for me. But this does seem like an issue that needs to be fixed because the Solana Labs endpoint does error out during the placeOrder call. |
The same issue here. RPC |
Same issue - not working with "https://solana-api.projectserum.com/" rpc endpoint either. |
got same issue here, same with the Genesysgo RPC https://ssc-dao.genesysgo.net/ |
both clusterApiUrl('mainnet-beta') and https://solana-api.projectserum.com are not working for me ..... trying getProgramAccounts but getting error: |
I have the same problem here with getParsedProgramAccounts |
same issue , i resolved it by using QuickNode RPC |
QuickNode gives me other error when I trying to place an order in Serum. by using serum lib. Does that work for you? I'm trying to see if QuickNode solves the problem. The same code works when using https://solana-api.projectserum.com/. (But this one is very flaky. not always get through).
|
Hi, i have same problem. This is the function:
Where And this is the error: I tried to connect to the cluster "devnet". so, chainName = "devnet"; How to solve this? |
Same problem. Are there any solutions? |
As far as I know, the solana mainnet-beta cluster doesn't provide data like getProgramAccounts, but QuickNode RPC does. Also, QuickNode has a free plan with pretty high request limits so I think it's good way to go. |
Serum javascript library is broken.
How to re-create issue:
curl https://api.mainnet-beta.solana.com -X POST -H "Content-Type: application/json" -d ' {"jsonrpc":"2.0", "id":1, "method":"getProgramAccounts", "params":["9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin"]} '
The program ID is the Serum DEX V3 (see link below)
https://explorer.solana.com/address/9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin/tokens
The text was updated successfully, but these errors were encountered: