diff --git a/README.md b/README.md index 98e3e70..a232bb9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ In `c` folder, run `make build`. It will generate an object file `libsputnikvm.so`, and you can use the header file `sputnikvm.h` to interact with it. You can find the generated documentation file for `sputnikvm.h` -[here](https://ethereumproject.github.io/sputnikvm-ffi/sputnikvm_8h.html). +[here](https://ETCDEVTeam.github.io/sputnikvm-ffi/sputnikvm_8h.html). ### Go @@ -20,7 +20,7 @@ interact with it. You can find the generated documentation file for Import the `sputnikvm` library to your application: ``` -import "github.com/ethereumproject/sputnikvm-ffi/go/sputnikvm" +import "github.com/ETCDEVTeam/sputnikvm-ffi/go/sputnikvm" ``` Build a static library for the C FFI, which will give you an @@ -39,5 +39,5 @@ CGO_LDFLAGS="/path/to/libsputnikvm.a -ldl" go build . ``` Refer to -[GoDoc](https://godoc.org/github.com/ethereumproject/sputnikvm-ffi/go/sputnikvm) +[GoDoc](https://godoc.org/github.com/ETCDEVTeam/sputnikvm-ffi/go/sputnikvm) for documentation of the Go bindings. diff --git a/go/main.go b/go/main.go index 5f05dee..a524a34 100644 --- a/go/main.go +++ b/go/main.go @@ -4,7 +4,7 @@ import ( "fmt" "math/big" "github.com/ethereumproject/go-ethereum/common" - "github.com/ethereumproject/sputnikvm-ffi/go/sputnikvm" + "github.com/ETCDEVTeam/sputnikvm-ffi/go/sputnikvm" ) func main() {