#solidity #abi #ethereum #eth

eth-encode-packed

Easy to use replica of Solidity abi.encodePacked

1 unstable release

0.1.0 Aug 26, 2021

#22 in #eth

Download history 52/week @ 2023-12-06 48/week @ 2023-12-13 92/week @ 2023-12-20 42/week @ 2023-12-27 55/week @ 2024-01-03 115/week @ 2024-01-10 91/week @ 2024-01-17 164/week @ 2024-01-24 151/week @ 2024-01-31 135/week @ 2024-02-07 205/week @ 2024-02-14 161/week @ 2024-02-21 131/week @ 2024-02-28 131/week @ 2024-03-06 95/week @ 2024-03-13 74/week @ 2024-03-20

456 downloads per month

MIT license

11KB
140 lines

Ethereum abi.encodePacked() in Rust

This project allows data serialization and packing in Rust as it's being done in Solidity with abi.encodePacked()

Example usage

packing an uint24

let input = vec![
    // this is supposed to be uint24 variable in solidity
    SolidityDataType::NumberWithShift(U256::from(4001), TakeLastXBytes(24))
];
let (bytes, hash) = abi::encode_packed(&input);
let hash = format!("0x{:}", hash);
let expected = "0x000fa1";
assert_eq!(hash, expected);

Packing a lot of data

Solidity

    function packer(
        uint24 uint24_data,
        uint256 tokenId,
        string calldata ipfsURI,
        address sample,
        uint256 id
    ) public pure returns (bytes memory ){
        bytes memory res = abi.encodePacked(uint24_data, tokenId, ipfsURI, sample, id);
        return res;
    }

Rust

let address = hex::decode("d8b934580fcE35a11B58C6D73aDeE468a2833fa8").unwrap();
let address: [u8; 20] = address.try_into().unwrap();
let input = vec![
    SolidityDataType::NumberWithShift(U256::from(3838), TakeLastXBytes(24)),
    SolidityDataType::Number(U256::from(4001)),
    SolidityDataType::String("this-is-a-sample-string"),
    SolidityDataType::Address(Address::from(address)),
    SolidityDataType::Number(U256::from(1)),
];
let (_bytes, hash) = abi::encode_packed(&input);
let hash = format!("0x{:}", hash);
let expected = "0x000efe0000000000000000000000000000000000000000000000000000000000000fa1746869732d69732d612d73616d706c652d737472696e67d8b934580fce35a11b58c6d73adee468a2833fa80000000000000000000000000000000000000000000000000000000000000001";
assert_eq!(hash, expected);

Dependencies

~2.5–3.5MB
~58K SLoC