Skip to content
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

Unnecessary ABI lookup #15

Open
ItsNickBarry opened this issue May 20, 2024 · 5 comments
Open

Unnecessary ABI lookup #15

ItsNickBarry opened this issue May 20, 2024 · 5 comments

Comments

@ItsNickBarry
Copy link
Contributor

I'm attempting to run a test transaction on a local Hardhat network that's forking a public network. I suppose this isn't supported, because the UI hangs with the message "Fetching contract ABI...".

This tool would much more useful if this step were avoided, and transactions were encoded using only the query string parameters. Even if there might be security reasons to disallow sending transactions without verified contracts and ABIs, this policy prevents multi-step flows from being tested.

@dawsbot
Copy link
Owner

dawsbot commented May 23, 2024

This is a good suggestion. You're thinking that the ABI itself would also be encoded fully in the URL?

I'm interested @ItsNickBarry if you can make the PR

@ItsNickBarry
Copy link
Contributor Author

One way to do it would be to encode the ABI (also suggested by @startswithaj). Another would be to change the fn field to use a full function signature, like "transfer(address,uint256)" instead of just "transfer". This alone can be used to create a single-function ABI, which is enough to encode and send the transaction.

I prefer the latter option, but it's a bit harder to do in a backwards-compatible way.

@startswithaj
Copy link
Contributor

startswithaj commented May 24, 2024

You only need to encode the part of the abi you need for the function call. For a transfer it would just be

?abi="["transfer(address,uint256)"]"

Then process it

const abi = JSON.parse(params.abi)

Otherwise we could add FnSignature as an additional parameter and if thats set ignore fn.

@dawsbot
Copy link
Owner

dawsbot commented May 29, 2024

That's a good spec proposed @startswithaj - If you want to PR this feel free! It should be possible without a breaking change, which is preferred

@startswithaj
Copy link
Contributor

Hey @dawsbot I did the PR ser, its here #18

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants