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

Fix negative integer hex formatting and add JSON number formatting option #84

Merged
merged 5 commits into from
Oct 22, 2024

Conversation

peterbroadhurst
Copy link
Contributor

Note this does not do anything with fixed and ufixed types, which are really a theoretical thing as they aren't supported by solidity yet (/ever).

When we go back to these, we need to change the internal storage to big.Int rather than big.Float as otherwise there's a risk of loss of precision.

@@ -394,7 +394,9 @@ func (pa ParameterArray) ParseJSON(data []byte) (*ComponentValue, error) {

func (pa ParameterArray) ParseJSONCtx(ctx context.Context, data []byte) (*ComponentValue, error) {
var jsonTree interface{}
err := json.Unmarshal(data, &jsonTree)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found a remaining place we weren't supporting large JSON numbers on input

Copy link
Contributor

@EnriqueL8 EnriqueL8 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good - thanks for catching that large JSON number 🙇🏼

@peterbroadhurst peterbroadhurst merged commit 1608ddc into main Oct 22, 2024
3 checks passed
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

Successfully merging this pull request may close these issues.

2 participants