Support custom rpc methods #231
Answered
by
jxom
SonOfMosiah
asked this question in
Idea / Feature Request
-
It would be great to see support for custom rpc methods that may be unique to certain node providers. For example, a way to call The equivalent for this in Ethers is provider.send('tenderly_setStorageAt', args) |
Beta Was this translation helpful? Give feedback.
Answered by
jxom
Mar 17, 2023
Replies: 1 comment 1 reply
-
You can use testClient.request({ method: ‘tenderly_setStorageAt’, params: […args] Though, if tenderly supports the same methods as anvil, hardhat, etc. might be worth adding support for it in the test client. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jxom
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
request
on the client for custom methods:Though, if tenderly supports the same methods as anvil, hardhat, etc. might be worth adding support for it in the test client.