Skip to content

Commit a58227e

Browse files
committed
feat: package renaming
1 parent 9b3c512 commit a58227e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# `go-huffc`: Go Bindings for the Huff Compiler
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/project-blanc/go-huffc.svg)](https://pkg.go.dev/github.com/project-blanc/go-huffc)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/project-blanc/go-huffc)](https://goreportcard.com/report/github.com/project-blanc/go-huffc)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/sprintertech/go-huffc.svg)](https://pkg.go.dev/github.com/sprintertech/go-huffc)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/sprintertech/go-huffc)](https://goreportcard.com/report/github.com/sprintertech/go-huffc)
55

66
`go-huffc` provides an easy way to compile [Huff](https://github.com/huff-language/huff-rs) contracts from Go.
77

88
> [!NOTE]
99
> `go-huffc` requires the `huffc` binary to be installed. See [huff.sh](https://huff.sh) for installation instructions.
1010
1111
```
12-
go get github.com/project-blanc/go-huffc
12+
go get github.com/sprintertech/go-huffc
1313
```
1414

1515
## Getting Started
@@ -28,7 +28,7 @@ contract, err := c.Compile("contract.huff", &huffc.Options{
2828

2929
## Example Project
3030

31-
See the [example project](https://github.com/project-blanc/go-huffc/tree/main/example) for a basic reference on how to **test** and **fuzz** a Huff contract in Go.
31+
See the [example project](https://github.com/sprintertech/go-huffc/tree/main/example) for a basic reference on how to **test** and **fuzz** a Huff contract in Go.
3232

3333

3434
> [!WARNING]

compiler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88

99
"github.com/google/go-cmp/cmp"
10-
"github.com/project-blanc/go-huffc"
10+
"github.com/sprintertech/go-huffc"
1111
)
1212

1313
func TestCompilerCompile(t *testing.T) {

example/add_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/lmittmann/w3"
99
"github.com/lmittmann/w3/w3types"
1010
"github.com/lmittmann/w3/w3vm"
11-
"github.com/project-blanc/go-huffc"
11+
"github.com/sprintertech/go-huffc"
1212
)
1313

1414
var (

example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ go 1.22
44

55
require (
66
github.com/lmittmann/w3 v0.17.0
7-
github.com/project-blanc/go-huffc v0.0.0
7+
github.com/sprintertech/go-huffc v0.0.0
88
)
99

10-
replace github.com/project-blanc/go-huffc => ../
10+
replace github.com/sprintertech/go-huffc => ../
1111

1212
require (
1313
github.com/DataDog/zstd v1.5.2 // indirect

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/project-blanc/go-huffc
1+
module github.com/sprintertech/go-huffc
22

33
go 1.22
44

0 commit comments

Comments
 (0)