mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
- Created utils package with common types (Address, Hash, Big1, Big0) - Added utility functions (BytesToAddress, HexToAddress, CopyBytes, FromHex) - Implemented math utilities (PaddedBigBytes, MustParseBig256) - Created minimal RLP encoder for CreateAddress function - Added hexutil functions for KZG4844 support - Updated all imports to use local utils instead of geth - All tests passing successfully
28 lines
877 B
AMPL
28 lines
877 B
AMPL
module github.com/luxfi/crypto
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/cloudflare/circl v1.6.1
|
|
github.com/consensys/gnark-crypto v0.18.0
|
|
github.com/crate-crypto/go-eth-kzg v1.3.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
|
|
github.com/ethereum/c-kzg-4844/v2 v2.1.1
|
|
github.com/google/gofuzz v1.2.0
|
|
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267
|
|
github.com/luxfi/ids v0.1.1
|
|
github.com/mr-tron/base58 v1.2.0
|
|
github.com/stretchr/testify v1.10.0
|
|
golang.org/x/crypto v0.40.0
|
|
golang.org/x/sys v0.34.0
|
|
)
|
|
|
|
require (
|
|
github.com/bits-and-blooms/bitset v1.20.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/supranational/blst v0.3.15 // indirect
|
|
golang.org/x/sync v0.16.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|