Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ Go client applications that were using SDK packages from `github.com/stellar/go`
```bash
# Add the new module name
go get github.com/stellar/go-stellar-sdk@latest

# Remove the old module name
go mod edit -droprequire github.com/stellar/go

go mod tidy
```

### 2. Update imports in your code
Expand All @@ -30,19 +25,19 @@ import "github.com/stellar/go/.."
import "github.com/stellar/go-stellar-sdk/.."
```

### 3. Update git remote (if you have the repo cloned)
### 3. Tidy up
```bash
git remote set-url origin https://github.com/stellar/go-stellar-sdk.git
go mod tidy
```

### 4. API Changes
### 4. SDK Changes

No breaking API changes - all functions remain the same.
No breaking SDK changes - all functions remain the same.

### 5. Verify
```bash
go mod tidy
go test ./...
go list -m github.com/stellar/go
go: module github.com/stellar/go: not a known dependency
```

## Need Help?
Expand Down
Loading