NethermindEth / starknet.go

Golang Library for StarkNet/Cairo
MIT License
144 stars 103 forks source link

Unsigned Integers - Serialisation and Deserialisation #599

Open krishnateja262 opened 1 month ago

krishnateja262 commented 1 month ago

To interact with contract functions that utilize U256 and U512 signatures, support is needed for the serialization and deserialization of these data types.

krishnateja262 commented 1 month ago

600 PR to resolve the issue

zobaed066 commented 3 weeks ago

Bounds Checking: Ensure that the integer value is within the valid range for unsigned integers. Endianness: Be mindful of endianness when serializing and deserializing binary data. Data Format: Choose the appropriate format based on your storage or transmission needs.