-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from proximax-storage/ws-fix
Refactor ws client
- Loading branch information
Showing
74 changed files
with
1,484 additions
and
8,708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,30 @@ | ||
module github.com/proximax-storage/go-xpx-chain-sdk | ||
|
||
go 1.13 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/google/flatbuffers v1.11.0 | ||
github.com/google/go-querystring v1.0.0 | ||
github.com/gorilla/websocket v1.4.0 | ||
github.com/gorilla/websocket v1.5.1 | ||
github.com/json-iterator/go v1.1.12 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/proximax-storage/go-xpx-chain-sync v1.1.2 | ||
github.com/proximax-storage/go-xpx-chain-sync v1.1.4-0.20240304152714-531033efe0a3 | ||
github.com/proximax-storage/go-xpx-crypto v0.0.0-20191023142918-e02e2652d78e | ||
github.com/proximax-storage/go-xpx-utils v0.0.0-20190604083640-90d06ff8a19f | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/supranational/blst v0.3.2 | ||
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f | ||
golang.org/x/crypto v0.14.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.