├── .gitignore ├── LICENSE ├── README.md ├── ethauth.go ├── ethauth_test.go ├── go.mod ├── go.sum ├── proof.go └── validate.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/README.md -------------------------------------------------------------------------------- /ethauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/ethauth.go -------------------------------------------------------------------------------- /ethauth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/ethauth_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/go.sum -------------------------------------------------------------------------------- /proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/proof.go -------------------------------------------------------------------------------- /validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/go-ethauth/HEAD/validate.go --------------------------------------------------------------------------------