Skip to content

Commit 3bed76a

Browse files
authored
version and repo path update (#117)
1 parent a4e6d88 commit 3bed76a

Some content is hidden

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

59 files changed

+713
-270
lines changed

cmd/deploy.go

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

7-
"github.com/0glabs/0g-storage-client/common/blockchain"
7+
"github.com/0gfoundation/0g-storage-client/common/blockchain"
88
"github.com/sirupsen/logrus"
99
"github.com/spf13/cobra"
1010
)

cmd/diff_dir.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cmd
33
import (
44
"context"
55

6-
"github.com/0glabs/0g-storage-client/transfer"
7-
"github.com/0glabs/0g-storage-client/transfer/dir"
6+
"github.com/0gfoundation/0g-storage-client/transfer"
7+
"github.com/0gfoundation/0g-storage-client/transfer/dir"
88
"github.com/sirupsen/logrus"
99
"github.com/spf13/cobra"
1010
)

cmd/download.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"runtime"
66
"time"
77

8-
"github.com/0glabs/0g-storage-client/common"
9-
"github.com/0glabs/0g-storage-client/indexer"
10-
"github.com/0glabs/0g-storage-client/node"
11-
"github.com/0glabs/0g-storage-client/transfer"
8+
"github.com/0gfoundation/0g-storage-client/common"
9+
"github.com/0gfoundation/0g-storage-client/indexer"
10+
"github.com/0gfoundation/0g-storage-client/node"
11+
"github.com/0gfoundation/0g-storage-client/transfer"
1212
"github.com/pkg/errors"
1313
"github.com/sirupsen/logrus"
1414
"github.com/spf13/cobra"

cmd/download_dir.go

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

6-
"github.com/0glabs/0g-storage-client/transfer"
6+
"github.com/0gfoundation/0g-storage-client/transfer"
77
"github.com/sirupsen/logrus"
88
"github.com/spf13/cobra"
99
)

cmd/gateway.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4-
"github.com/0glabs/0g-storage-client/gateway"
5-
"github.com/0glabs/0g-storage-client/node"
4+
"github.com/0gfoundation/0g-storage-client/gateway"
5+
"github.com/0gfoundation/0g-storage-client/node"
66
"github.com/spf13/cobra"
77
)
88

cmd/generate_file.go

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

8-
"github.com/0glabs/0g-storage-client/core"
8+
"github.com/0gfoundation/0g-storage-client/core"
99
"github.com/sirupsen/logrus"
1010
"github.com/spf13/cobra"
1111
)

cmd/indexer.go

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

6-
"github.com/0glabs/0g-storage-client/common/rpc"
7-
"github.com/0glabs/0g-storage-client/indexer"
8-
"github.com/0glabs/0g-storage-client/indexer/gateway"
6+
"github.com/0gfoundation/0g-storage-client/common/rpc"
7+
"github.com/0gfoundation/0g-storage-client/indexer"
8+
"github.com/0gfoundation/0g-storage-client/indexer/gateway"
99
"github.com/sirupsen/logrus"
1010
"github.com/spf13/cobra"
1111
)

cmd/kv_read.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"math"
88
"time"
99

10-
"github.com/0glabs/0g-storage-client/kv"
11-
"github.com/0glabs/0g-storage-client/node"
10+
"github.com/0gfoundation/0g-storage-client/kv"
11+
"github.com/0gfoundation/0g-storage-client/node"
1212
"github.com/ethereum/go-ethereum/common"
1313
"github.com/sirupsen/logrus"
1414
"github.com/spf13/cobra"

cmd/kv_write.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import (
66
"math/big"
77
"time"
88

9-
zg_common "github.com/0glabs/0g-storage-client/common"
10-
"github.com/0glabs/0g-storage-client/common/blockchain"
11-
"github.com/0glabs/0g-storage-client/indexer"
12-
"github.com/0glabs/0g-storage-client/kv"
13-
"github.com/0glabs/0g-storage-client/node"
14-
"github.com/0glabs/0g-storage-client/transfer"
9+
zg_common "github.com/0gfoundation/0g-storage-client/common"
10+
"github.com/0gfoundation/0g-storage-client/common/blockchain"
11+
"github.com/0gfoundation/0g-storage-client/indexer"
12+
"github.com/0gfoundation/0g-storage-client/kv"
13+
"github.com/0gfoundation/0g-storage-client/node"
14+
"github.com/0gfoundation/0g-storage-client/transfer"
1515
"github.com/ethereum/go-ethereum/common"
1616
"github.com/sirupsen/logrus"
1717
"github.com/spf13/cobra"

cmd/root.go

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

8-
"github.com/0glabs/0g-storage-client/common/blockchain"
8+
"github.com/0gfoundation/0g-storage-client/common/blockchain"
99
"github.com/mcuadros/go-defaults"
1010
providers "github.com/openweb3/go-rpc-provider/provider_wrapper"
1111
"github.com/sirupsen/logrus"

0 commit comments

Comments
 (0)