Skip to content

Commit b2c7125

Browse files
committed
refactor: Rename bxelab to personal studyzy
--story=1
1 parent a36ade2 commit b2c7125

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Bitcoin Rune protocol golang implement library.
55
## How to use
66

77
```go
8-
go get github.com/bxelab/runestone@latest
8+
go get github.com/studyzy/runestone@latest
99
```
1010

1111
### Etching

cmd/runestonecli/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/btcsuite/btcd/btcutil"
1313
"github.com/btcsuite/btcd/chaincfg"
1414
"github.com/btcsuite/btcd/txscript"
15-
"github.com/bxelab/runestone"
15+
"github.com/studyzy/runestone"
1616
"lukechampine.com/uint128"
1717
)
1818

cmd/runestonecli/example.go

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

88
"github.com/btcsuite/btcd/txscript"
99
"github.com/btcsuite/btcd/wire"
10-
"github.com/bxelab/runestone"
10+
"github.com/studyzy/runestone"
1111
"lukechampine.com/uint128"
1212
)
1313

cmd/runestonecli/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/bxelab/runestone/cmd/runestonecli
1+
module github.com/studyzy/runestone/cmd/runestonecli
22

33
go 1.22.2
44

@@ -7,7 +7,7 @@ require (
77
github.com/btcsuite/btcd/btcec/v2 v2.1.3
88
github.com/btcsuite/btcd/btcutil v1.1.5
99
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
10-
github.com/bxelab/runestone v0.0.0-20240425113004-bea3419a6a3e
10+
github.com/studyzy/runestone v0.0.0-20240425113004-bea3419a6a3e
1111
github.com/manifoldco/promptui v0.9.0
1212
github.com/pkg/errors v0.9.1
1313
github.com/spf13/viper v1.18.2
@@ -42,4 +42,4 @@ require (
4242
gopkg.in/yaml.v3 v3.0.1 // indirect
4343
)
4444

45-
replace github.com/bxelab/runestone => ../../
45+
replace github.com/studyzy/runestone => ../../

cmd/runestonecli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
"github.com/btcsuite/btcd/chaincfg/chainhash"
1111
"github.com/btcsuite/btcd/wire"
12-
"github.com/bxelab/runestone"
1312
"github.com/manifoldco/promptui"
1413
"github.com/spf13/viper"
14+
"github.com/studyzy/runestone"
1515
"golang.org/x/text/message"
1616
)
1717

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
// To start using the runestone package, simply import it into your Go project:
3333
//
3434
// ```
35-
// go get github.com/bxelab/runestone
35+
// go get github.com/studyzy/runestone
3636
// ```
3737
//
3838
// You can then use the various components provided by the package to interact with the Rune protocol,

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/bxelab/runestone
1+
module github.com/studyzy/runestone
22

33
go 1.22
44

0 commit comments

Comments
 (0)