Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umbracle/gosolc
Go bindings for Solidity on steroids
https://github.com/umbracle/gosolc
bindings golang solidity
Last synced: 4 days ago
JSON representation
Go bindings for Solidity on steroids
- Host: GitHub
- URL: https://github.com/umbracle/gosolc
- Owner: umbracle
- License: mpl-2.0
- Created: 2023-03-05T18:46:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-03-05T22:10:07.000Z (over 1 year ago)
- Last Synced: 2024-06-20T13:37:54.807Z (5 months ago)
- Topics: bindings, golang, solidity
- Language: Go
- Homepage:
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go-solc
Solidity bindings for Golang.
## Usage
Declare a project:
```
p, err := gosolc.NewProject(gosolc.WithContractsDir("."))
if err != nil {
// handle err
}
p.Compile()
```## CLI
```
$ go run cmd/gosolc/main.go [--contracts . --artifacts .]
```