Skip to content

Commit ed2ba87

Browse files
committed
correct module version
1 parent 0bad8d2 commit ed2ba87

32 files changed

+43
-41
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ GO_BIN := $(shell echo $(shell which go || echo "/usr/local/go/bin/go" ))
66
### Build flags ###
77
###############################################################################
88

9-
LD_FLAGS = -X github.com/bcdevtools/devd/constants.VERSION=$(VERSION)
9+
LD_FLAGS = -X github.com/bcdevtools/devd/v2/constants.VERSION=$(VERSION)
1010

1111
BUILD_FLAGS := -ldflags '$(LD_FLAGS)'
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Install
44

55
```bash
6-
go install -v github.com/bcdevtools/devd/cmd/devd@latest
6+
go install -v github.com/bcdevtools/devd/v2/cmd/devd@latest
77
```
88

99
### Query tools

cmd/convert/abi_string.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package convert
33
import (
44
"encoding/hex"
55
"fmt"
6-
"github.com/bcdevtools/devd/cmd/utils"
6+
"github.com/bcdevtools/devd/v2/cmd/utils"
77
"github.com/spf13/cobra"
88
"regexp"
99
"strings"

cmd/convert/address.go

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

33
import (
44
"fmt"
5-
"github.com/bcdevtools/devd/cmd/utils"
5+
"github.com/bcdevtools/devd/v2/cmd/utils"
66
sdk "github.com/cosmos/cosmos-sdk/types"
77
"github.com/cosmos/cosmos-sdk/types/bech32"
88
"github.com/ethereum/go-ethereum/common"

cmd/convert/decimal_to_hexadecimal.go

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

33
import (
44
"fmt"
5-
"github.com/bcdevtools/devd/cmd/utils"
5+
"github.com/bcdevtools/devd/v2/cmd/utils"
66
"github.com/spf13/cobra"
77
"math/big"
88
"os"

cmd/convert/decode_base64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package convert
33
import (
44
"encoding/base64"
55
"fmt"
6-
"github.com/bcdevtools/devd/cmd/utils"
6+
"github.com/bcdevtools/devd/v2/cmd/utils"
77
"github.com/spf13/cobra"
88
)
99

cmd/convert/display_balance.go

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

33
import (
44
"fmt"
5-
"github.com/bcdevtools/devd/cmd/utils"
5+
"github.com/bcdevtools/devd/v2/cmd/utils"
66
"github.com/spf13/cobra"
77
"math/big"
88
"os"

cmd/convert/encode_base64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package convert
33
import (
44
"encoding/base64"
55
"fmt"
6-
"github.com/bcdevtools/devd/cmd/utils"
6+
"github.com/bcdevtools/devd/v2/cmd/utils"
77
"github.com/spf13/cobra"
88
"strings"
99
)

cmd/convert/hexadecimal_to_decimal.go

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

33
import (
44
"fmt"
5-
"github.com/bcdevtools/devd/cmd/utils"
5+
"github.com/bcdevtools/devd/v2/cmd/utils"
66
"github.com/spf13/cobra"
77
"math/big"
88
"os"

cmd/convert/raw_balance.go

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

33
import (
44
"fmt"
5-
"github.com/bcdevtools/devd/cmd/utils"
5+
"github.com/bcdevtools/devd/v2/cmd/utils"
66
"github.com/spf13/cobra"
77
"os"
88
"strconv"

0 commit comments

Comments
 (0)