Skip to content

Commit 7ba457a

Browse files
fix: restore previous package name
1 parent e23a36b commit 7ba457a

File tree

321 files changed

+766
-766
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+766
-766
lines changed

.github/workflows/xrpl-go-ci-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# If you are using config file (option 1) you shouldn't use these parameters, however
2626
# specifing these action parameters will override appropriate config values.
2727
profile: coverage.out
28-
local-prefix: github.com/Peersyst/xrpl-go/v1
28+
local-prefix: github.com/Peersyst/xrpl-go
2929
threshold-file: 0
3030
threshold-package: 0
3131
threshold-total: 0

.testcoverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ profile: coverage.out
99

1010
# (optional; but recommended to set)
1111
# When specified reported file paths will not contain local prefix in the output
12-
local-prefix: "github.com/Peersyst/xrpl-go/v1"
12+
local-prefix: "github.com/Peersyst/xrpl-go"
1313

1414
# Holds coverage thresholds percentages, values should be in range [0-100]
1515
threshold:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# XRPL-GO
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/Peersyst/xrpl-go/v1.svg)](https://pkg.go.dev/github.com/Peersyst/xrpl-go/v1)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/Peersyst/xrpl-go/v1)](https://goreportcard.com/report/github.com/Peersyst/xrpl-go/v1)
5-
[![Release Card](https://img.shields.io/github/v/release/Peersyst/xrpl-go?include_prereleases)](https://github.com/Peersyst/xrpl-go/v1/releases)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/Peersyst/xrpl-go.svg)](https://pkg.go.dev/github.com/Peersyst/xrpl-go)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/Peersyst/xrpl-go)](https://goreportcard.com/report/github.com/Peersyst/xrpl-go)
5+
[![Release Card](https://img.shields.io/github/v/release/Peersyst/xrpl-go?include_prereleases)](https://github.com/Peersyst/xrpl-go/releases)
66

77

88
The `xrpl-go` library provides a Go implementation for interacting with the XRP Ledger. From serialization to signing transactions, the library allows users to work with the most

address-codec/codec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"errors"
77
"fmt"
88

9-
"github.com/Peersyst/xrpl-go/v1/address-codec/interfaces"
10-
"github.com/Peersyst/xrpl-go/v1/pkg/crypto"
9+
"github.com/Peersyst/xrpl-go/address-codec/interfaces"
10+
"github.com/Peersyst/xrpl-go/pkg/crypto"
1111
)
1212

1313
const (

address-codec/codec_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"errors"
55
"testing"
66

7-
"github.com/Peersyst/xrpl-go/v1/address-codec/interfaces"
8-
"github.com/Peersyst/xrpl-go/v1/pkg/crypto"
7+
"github.com/Peersyst/xrpl-go/address-codec/interfaces"
8+
"github.com/Peersyst/xrpl-go/pkg/crypto"
99
"github.com/stretchr/testify/require"
1010
)
1111

binary-codec/ledger_data.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strconv"
77
"strings"
88

9-
"github.com/Peersyst/xrpl-go/v1/binary-codec/definitions"
10-
"github.com/Peersyst/xrpl-go/v1/binary-codec/serdes"
9+
"github.com/Peersyst/xrpl-go/binary-codec/definitions"
10+
"github.com/Peersyst/xrpl-go/binary-codec/serdes"
1111
)
1212

1313
// LedgerData represents the data of a ledger.

binary-codec/ledger_data_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/hex"
55
"testing"
66

7-
"github.com/Peersyst/xrpl-go/v1/binary-codec/serdes"
7+
"github.com/Peersyst/xrpl-go/binary-codec/serdes"
88
"github.com/stretchr/testify/require"
99
)
1010

binary-codec/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"errors"
77
"strings"
88

9-
"github.com/Peersyst/xrpl-go/v1/binary-codec/definitions"
9+
"github.com/Peersyst/xrpl-go/binary-codec/definitions"
1010

11-
"github.com/Peersyst/xrpl-go/v1/binary-codec/serdes"
12-
"github.com/Peersyst/xrpl-go/v1/binary-codec/types"
11+
"github.com/Peersyst/xrpl-go/binary-codec/serdes"
12+
"github.com/Peersyst/xrpl-go/binary-codec/types"
1313
)
1414

1515
var (

binary-codec/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package binarycodec
33
import (
44
"testing"
55

6-
"github.com/Peersyst/xrpl-go/v1/binary-codec/types"
6+
"github.com/Peersyst/xrpl-go/binary-codec/types"
77
"github.com/stretchr/testify/require"
88
)
99

binary-codec/quality.go

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

10-
bigdecimal "github.com/Peersyst/xrpl-go/v1/pkg/big-decimal"
10+
bigdecimal "github.com/Peersyst/xrpl-go/pkg/big-decimal"
1111
)
1212

1313
const (

0 commit comments

Comments
 (0)