Skip to content

Commit cc07cd8

Browse files
author
callmedenchick
authored
rename tonkeeper to ton-connect (#167)
1 parent b2936df commit cc07cd8

26 files changed

Lines changed: 56 additions & 56 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT_REVISION=`git rev-parse --short HEAD`
22
BRIDGE_VERSION=`git describe --tags --abbrev=0`
3-
LDFLAGS=-ldflags "-X github.com/tonkeeper/bridge/internal.GitRevision=${GIT_REVISION} -X github.com/tonkeeper/bridge/internal.BridgeVersion=${BRIDGE_VERSION}"
3+
LDFLAGS=-ldflags "-X github.com/ton-connect/bridge/internal.GitRevision=${GIT_REVISION} -X github.com/ton-connect/bridge/internal.BridgeVersion=${BRIDGE_VERSION}"
44
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor | grep -v yacc | grep -v .git)
55

66
.PHONY: all imports fmt test test-unit test-bench test-bridge-sdk run stop clean logs status help

cmd/bridge/main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111
"github.com/labstack/echo/v4/middleware"
1212
"github.com/prometheus/client_golang/prometheus/promhttp"
1313
log "github.com/sirupsen/logrus"
14-
"github.com/tonkeeper/bridge/internal"
15-
"github.com/tonkeeper/bridge/internal/app"
16-
"github.com/tonkeeper/bridge/internal/config"
17-
bridge_middleware "github.com/tonkeeper/bridge/internal/middleware"
18-
"github.com/tonkeeper/bridge/internal/utils"
19-
handlerv1 "github.com/tonkeeper/bridge/internal/v1/handler"
20-
"github.com/tonkeeper/bridge/internal/v1/storage"
14+
"github.com/ton-connect/bridge/internal"
15+
"github.com/ton-connect/bridge/internal/app"
16+
"github.com/ton-connect/bridge/internal/config"
17+
bridge_middleware "github.com/ton-connect/bridge/internal/middleware"
18+
"github.com/ton-connect/bridge/internal/utils"
19+
handlerv1 "github.com/ton-connect/bridge/internal/v1/handler"
20+
"github.com/ton-connect/bridge/internal/v1/storage"
2121
"golang.org/x/exp/slices"
2222
"golang.org/x/time/rate"
2323
)

cmd/bridge3/main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111
"github.com/labstack/echo/v4/middleware"
1212
"github.com/prometheus/client_golang/prometheus/promhttp"
1313
log "github.com/sirupsen/logrus"
14-
"github.com/tonkeeper/bridge/internal"
15-
"github.com/tonkeeper/bridge/internal/app"
16-
"github.com/tonkeeper/bridge/internal/config"
17-
bridge_middleware "github.com/tonkeeper/bridge/internal/middleware"
18-
"github.com/tonkeeper/bridge/internal/utils"
19-
handlerv3 "github.com/tonkeeper/bridge/internal/v3/handler"
20-
storagev3 "github.com/tonkeeper/bridge/internal/v3/storage"
14+
"github.com/ton-connect/bridge/internal"
15+
"github.com/ton-connect/bridge/internal/app"
16+
"github.com/ton-connect/bridge/internal/config"
17+
bridge_middleware "github.com/ton-connect/bridge/internal/middleware"
18+
"github.com/ton-connect/bridge/internal/utils"
19+
handlerv3 "github.com/ton-connect/bridge/internal/v3/handler"
20+
storagev3 "github.com/ton-connect/bridge/internal/v3/storage"
2121
"golang.org/x/exp/slices"
2222
"golang.org/x/time/rate"
2323
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/tonkeeper/bridge
1+
module github.com/ton-connect/bridge
22

33
go 1.24.6
44

internal/app/health.go

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

99
log "github.com/sirupsen/logrus"
10-
"github.com/tonkeeper/bridge/internal"
10+
"github.com/ton-connect/bridge/internal"
1111
)
1212

1313
// HealthChecker interface for storage health checking

internal/app/metrics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package app
33
import (
44
client_prometheus "github.com/prometheus/client_golang/prometheus"
55
"github.com/prometheus/client_golang/prometheus/promauto"
6-
"github.com/tonkeeper/bridge/internal"
6+
"github.com/ton-connect/bridge/internal"
77
)
88

99
var (

internal/app/middleware.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"strings"
66

77
"github.com/labstack/echo/v4"
8-
"github.com/tonkeeper/bridge/internal/config"
9-
bridge_middleware "github.com/tonkeeper/bridge/internal/middleware"
10-
"github.com/tonkeeper/bridge/internal/utils"
8+
"github.com/ton-connect/bridge/internal/config"
9+
bridge_middleware "github.com/ton-connect/bridge/internal/middleware"
10+
"github.com/ton-connect/bridge/internal/utils"
1111
"golang.org/x/exp/slices"
1212
)
1313

internal/handler/webhook.go

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

1010
log "github.com/sirupsen/logrus"
11-
"github.com/tonkeeper/bridge/internal/config"
11+
"github.com/ton-connect/bridge/internal/config"
1212
)
1313

1414
type WebhookData struct {

internal/handler/webhook_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"testing"
1111

12-
"github.com/tonkeeper/bridge/internal/config"
12+
"github.com/ton-connect/bridge/internal/config"
1313
)
1414

1515
func TestSendWebhook(t *testing.T) {

internal/middleware/limiter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package middleware
22

33
import (
44
"fmt"
5-
"github.com/tonkeeper/bridge/internal/utils"
5+
"github.com/ton-connect/bridge/internal/utils"
66
"net/http"
77
"sync"
88
)

0 commit comments

Comments
 (0)