├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── contracts ├── Erc1155.sol ├── Erc165.sol ├── Erc20.sol ├── Erc721.sol └── Erc777.sol ├── erc1155 └── erc1155.go ├── erc165 ├── erc165.go └── interfaceids.go ├── erc20 └── erc20.go ├── erc721 └── erc721.go ├── erc777 └── erc777.go ├── examples └── erc20-erc721.go ├── go.mod ├── go.sum └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Erc1155.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/contracts/Erc1155.sol -------------------------------------------------------------------------------- /contracts/Erc165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/contracts/Erc165.sol -------------------------------------------------------------------------------- /contracts/Erc20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/contracts/Erc20.sol -------------------------------------------------------------------------------- /contracts/Erc721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/contracts/Erc721.sol -------------------------------------------------------------------------------- /contracts/Erc777.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/contracts/Erc777.sol -------------------------------------------------------------------------------- /erc1155/erc1155.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc1155/erc1155.go -------------------------------------------------------------------------------- /erc165/erc165.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc165/erc165.go -------------------------------------------------------------------------------- /erc165/interfaceids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc165/interfaceids.go -------------------------------------------------------------------------------- /erc20/erc20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc20/erc20.go -------------------------------------------------------------------------------- /erc721/erc721.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc721/erc721.go -------------------------------------------------------------------------------- /erc777/erc777.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/erc777/erc777.go -------------------------------------------------------------------------------- /examples/erc20-erc721.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/examples/erc20-erc721.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/go.sum -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metachris/eth-go-bindings/HEAD/truffle-config.js --------------------------------------------------------------------------------