Skip to content

Commit abd088e

Browse files
committed
merge
2 parents 83d8d55 + 805f07a commit abd088e

File tree

18 files changed

+41
-41
lines changed

18 files changed

+41
-41
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ integration:
4242
# Start godoc server for viewing documentation
4343
docs:
4444
which godoc > /dev/null || (echo "Installing godoc..." && go install golang.org/x/tools/cmd/godoc@latest)
45-
echo "Documentation available at http://localhost:6060/pkg/github.com/tempo/tempo-go/"
45+
echo "Documentation available at http://localhost:6060/pkg/github.com/tempoxyz/tempo-go/"
4646
echo "Press Ctrl+C to stop the server"
4747
@godoc -http=:6060

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Go SDK for building applications on [Tempo](https://tempo.xyz)
2929
## Installation
3030

3131
```bash
32-
go get github.com/tempo/tempo-go
32+
go get github.com/tempoxyz/tempo-go
3333
```
3434

3535
## Quick Start
@@ -42,9 +42,9 @@ import (
4242
"math/big"
4343

4444
"github.com/ethereum/go-ethereum/common"
45-
"github.com/tempo/tempo-go/pkg/client"
46-
"github.com/tempo/tempo-go/pkg/signer"
47-
"github.com/tempo/tempo-go/pkg/transaction"
45+
"github.com/tempoxyz/tempo-go/pkg/client"
46+
"github.com/tempoxyz/tempo-go/pkg/signer"
47+
"github.com/tempoxyz/tempo-go/pkg/transaction"
4848
)
4949

5050
func main() {
@@ -149,11 +149,11 @@ client.SendTransaction(tx)
149149

150150
## Packages
151151

152-
| Package | Description | Documentation |
153-
| ------------- | -------------------------------------------------- | ---------------------------------------------------------------- |
154-
| `transaction` | TempoTransaction encoding, signing, and validation | [README](pkg/transaction/README.md) |
155-
| `client` | RPC client for interacting with Tempo nodes | [GoDoc](https://pkg.go.dev/github.com/tempo/tempo-go/pkg/client) |
156-
| `signer` | Key management and signature generation | [GoDoc](https://pkg.go.dev/github.com/tempo/tempo-go/pkg/signer) |
152+
| Package | Description | Documentation |
153+
| ------------- | -------------------------------------------------- | ------------------------------------------------------------------- |
154+
| `transaction` | TempoTransaction encoding, signing, and validation | [README](pkg/transaction/README.md) |
155+
| `client` | RPC client for interacting with Tempo nodes | [GoDoc](https://pkg.go.dev/github.com/tempoxyz/tempo-go/pkg/client) |
156+
| `signer` | Key management and signature generation | [GoDoc](https://pkg.go.dev/github.com/tempoxyz/tempo-go/pkg/signer) |
157157

158158
## Testing
159159

@@ -198,10 +198,10 @@ View documentation locally:
198198

199199
```bash
200200
make docs
201-
# Opens at http://localhost:6060/pkg/github.com/tempo/tempo-go/
201+
# Opens at http://localhost:6060/pkg/github.com/tempoxyz/tempo-go/
202202
```
203203

204-
Full API documentation is also available on [pkg.go.dev](https://pkg.go.dev/github.com/tempo/tempo-go).
204+
Full API documentation is also available on [pkg.go.dev](https://pkg.go.dev/github.com/tempoxyz/tempo-go).
205205

206206
## Development Setup
207207

@@ -213,7 +213,7 @@ Full API documentation is also available on [pkg.go.dev](https://pkg.go.dev/gith
213213
### Building
214214

215215
```bash
216-
git clone https://github.com/tempo/tempo-go.git
216+
git clone https://github.com/tempoxyz/tempo-go.git
217217
cd tempo-go
218218

219219
go mod download

examples/feepayer/cmd/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55

6-
"github.com/tempo/tempo-go/examples/feepayer/server"
7-
"github.com/tempo/tempo-go/pkg/client"
8-
"github.com/tempo/tempo-go/pkg/signer"
6+
"github.com/tempoxyz/tempo-go/examples/feepayer/server"
7+
"github.com/tempoxyz/tempo-go/pkg/client"
8+
"github.com/tempoxyz/tempo-go/pkg/signer"
99
)
1010

1111
func main() {

examples/feepayer/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
module github.com/tempo/tempo-go/examples/feepayer
1+
module github.com/tempoxyz/tempo-go/examples/feepayer
22

33
go 1.21
44

55
require (
66
github.com/joho/godotenv v1.5.1
7-
github.com/tempo/tempo-go v0.0.0
7+
github.com/tempoxyz/tempo-go v0.0.0
88
)
99

10-
replace github.com/tempo/tempo-go => ../..
10+
replace github.com/tempoxyz/tempo-go => ../..
1111

1212
require (
1313
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect

examples/feepayer/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"strings"
1313

1414
"github.com/joho/godotenv"
15-
"github.com/tempo/tempo-go/pkg/client"
16-
"github.com/tempo/tempo-go/pkg/signer"
17-
"github.com/tempo/tempo-go/pkg/transaction"
15+
"github.com/tempoxyz/tempo-go/pkg/client"
16+
"github.com/tempoxyz/tempo-go/pkg/signer"
17+
"github.com/tempoxyz/tempo-go/pkg/transaction"
1818
)
1919

2020
const (

examples/simple-send/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strconv"
99

1010
"github.com/ethereum/go-ethereum/common"
11-
"github.com/tempo/tempo-go/pkg/client"
12-
"github.com/tempo/tempo-go/pkg/signer"
13-
"github.com/tempo/tempo-go/pkg/transaction"
11+
"github.com/tempoxyz/tempo-go/pkg/client"
12+
"github.com/tempoxyz/tempo-go/pkg/signer"
13+
"github.com/tempoxyz/tempo-go/pkg/transaction"
1414
)
1515

1616
// getEnv gets an environment variable or returns a default value

go.mod

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

33
go 1.21
44

pkg/transaction/deserialize.go

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

99
"github.com/ethereum/go-ethereum/common"
1010
"github.com/ethereum/go-ethereum/rlp"
11-
"github.com/tempo/tempo-go/pkg/signer"
11+
"github.com/tempoxyz/tempo-go/pkg/signer"
1212
)
1313

1414
// Deserialize parses a serialized TempoTransaction.

pkg/transaction/example_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"math/big"
88

99
"github.com/ethereum/go-ethereum/common"
10-
"github.com/tempo/tempo-go/pkg/client"
11-
"github.com/tempo/tempo-go/pkg/signer"
12-
"github.com/tempo/tempo-go/pkg/transaction"
10+
"github.com/tempoxyz/tempo-go/pkg/client"
11+
"github.com/tempoxyz/tempo-go/pkg/signer"
12+
"github.com/tempoxyz/tempo-go/pkg/transaction"
1313
)
1414

1515
// Example_simpleTransaction demonstrates creating, signing, and sending a simple transaction.

pkg/transaction/golden_test.go

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

88
"github.com/stretchr/testify/assert"
9-
"github.com/tempo/tempo-go/pkg/signer"
9+
"github.com/tempoxyz/tempo-go/pkg/signer"
1010
)
1111

1212
// TestTempoGoldenFormat tests compatibility with tempo.ts transaction format

0 commit comments

Comments
 (0)