Giter Site home page Giter Site logo

Comments (3)

fselmo avatar fselmo commented on August 16, 2024

I apologize for the late response here @JanRuettinger but it looks like this was an outdated version of eth-abi. I'm actually not sure that bytes32[] is the right type for this call. I believe these are integers. [bad assumption, see next comments for answer]

>>> from eth_abi import abi
>>> from eth_utils import to_bytes

>>> raw_output_hex = "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000006aeaeff8cc50ece0000000000000000000000000000000000000000000000000000000000000000"
>>> output_bytes = to_bytes(hexstr=raw_output_hex)

>>> abi.decode(["uint256[]"], output_bytes)
((64, 128),)

>>> # with bytes32[]
>>> abi.decode(["bytes[]"], output_bytes)
((b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@',
  b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80'),)

I'm going to close this as I can't reproduce with the latest version. But please ask to re-open if there are still any issues.

from eth-abi.

fselmo avatar fselmo commented on August 16, 2024

Oh I see. That is my mistake for using bytes32[] and not bytes[]. I can reproduce what you have there but are you sure this is the type you need? Are you sure these aren't integers to decode to? [see next comment]

from eth-abi.

fselmo avatar fselmo commented on August 16, 2024

I did some snooping and looked for bytes[] return types on the methods in that contract and I do see that it was a call to multicall(uint256,bytes[]) which matches the function signature on that call.

However, what eth-abi returns is exactly what Solidity returns, so I don't see a bug here.

function decode(bytes memory _bytes) external pure returns (bytes[] memory) {
    bytes[] memory _decoded = abi.decode(_bytes, (bytes[]));
    return _decoded;
}

This is what I get as the return, notice the 0x (b"") at the end of the array

"bytes[]: 0x00000000000000000000000000000000000000000000000006aeaeff8cc50ece,0x"

edit: It looks like Action [13] in that trace link you sent (the very last trace) is actually the call with 0x. multicall(uint256,bytes[]) iterates on each value passed in to it and makes a call with each of them. That's why you only see one of the arguments in the next step... and you see the second argument in another step. Hope that clarifies what you were seeing.

from eth-abi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.