unpackdev / solgo

Solidity parser in Go, designed to transform Solidity code into a structured format for enhanced analysis, particularly beneficial for developers using Go to analyze Solidity smart contracts.
https://unpack.dev
Apache License 2.0
1 stars 0 forks source link

Faster JSON encoder/decoder #171

Closed 0x19 closed 5 months ago

0x19 commented 5 months ago

Golang "encoding/json" is quite slow. In fact, it's turbo slow. Replacing it with faster json implementation. This is stage 1. Later on we might want to drop json altogether and use msgpack.