-
Couldn't load subscription status.
- Fork 18
#418 libp2p integration #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
NhoxxKienn
merged 24 commits into
hyperledger-labs:main
from
perun-network:418_libp2p_integration
Jul 29, 2025
+5,595
−3,051
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3d65852
feat: add aux attribute in channel.Params
NhoxxKienn 2bb1a55
feat(adjudicate): gather state map switchs to gather signed states
NhoxxKienn 8c7df65
feat(vc_test): add aux params to virtual channel test for utxo chains
NhoxxKienn e363289
feat(vc test): send parent ID in aux instead for utxo chains
NhoxxKienn 0edd2b7
fix(vc test): fix aux generation in virtual channel test
NhoxxKienn 634091b
feat(test/virtualchannel): add wait time for processing opening virtu…
NhoxxKienn 1eb5cc3
feat: add log and proper secondary settle for virtual channel test di…
NhoxxKienn 61bf760
feat: add additional payment channel test setup
NhoxxKienn 15bf682
feat: add proper clean up for virtual channel optimistic test
NhoxxKienn 4d68d28
feat: add client's handler for virtual channel test cleanup
NhoxxKienn 17ac78d
Merge branch 'main' into nervos_ckb
NhoxxKienn 22cdc68
refactor(lint): update and refactor golangci-lint
NhoxxKienn 4eb64e3
feat(wire/net/libp2p): add initial package libp2p
NhoxxKienn fddc7a9
feat(go.mod): update go dependencies
NhoxxKienn eff95d6
feat(libp2p): add libp2p account, address
NhoxxKienn 848f107
feat(libp2p): add dialer and listener
NhoxxKienn effbd00
feat(libp2p): add exchange addr tests
NhoxxKienn f5bde07
feat(wire/net): add bus test for libp2p and simple
NhoxxKienn 14d52e5
Merge branch 'main' into 418_libp2p_integration
NhoxxKienn 8cd8f57
fix(all): changes according to PR's review
NhoxxKienn bbf0d26
Merge branch 'main' into nervos_ckb
NhoxxKienn d541e25
fix: clear linting problem
NhoxxKienn a5c5eb3
chore: fix ci problem
NhoxxKienn 83be060
Revert: feat(adjudicate): stateMap to signedState: This reverts commi…
NhoxxKienn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| { | ||
| "formatters": { | ||
| "enable": [ | ||
| "gofmt", | ||
| "gofumpt", | ||
| "goimports" | ||
| ], | ||
| "exclusions": { | ||
| "generated": "lax", | ||
| "paths": [ | ||
| "third_party$", | ||
| "builtin$", | ||
| "examples$" | ||
| ] | ||
| } | ||
| }, | ||
| "linters": { | ||
| "default": "all", | ||
| "disable": [ | ||
| "err113", | ||
| "errorlint", | ||
| "gochecknoglobals", | ||
| "gochecknoinits", | ||
| "ireturn", | ||
| "lll", | ||
| "nlreturn", | ||
| "paralleltest", | ||
| "promlinter", | ||
| "tparallel", | ||
| "varnamelen", | ||
| "wrapcheck", | ||
| "wsl", | ||
| "testifylint", | ||
| "revive", | ||
| "recvcheck", | ||
| "prealloc", | ||
| "depguard", | ||
| "nonamedreturns", | ||
| "inamedparam", | ||
| "exhaustruct" | ||
| ], | ||
| "exclusions": { | ||
| "generated": "lax", | ||
| "paths": [ | ||
| "third_party$", | ||
| "builtin$", | ||
| "examples$" | ||
| ], | ||
| "presets": [ | ||
| "common-false-positives", | ||
| "legacy", | ||
| "std-error-handling" | ||
| ], | ||
| "rules": [ | ||
| { | ||
| "linters": [ | ||
| "err113", | ||
| "forcetypeassert", | ||
| "funlen" | ||
| ], | ||
| "path": "test" | ||
| }, | ||
| { | ||
| "linters": [ | ||
| "revive" | ||
| ], | ||
| "path": "test", | ||
| "text": "context-as-argument" | ||
| } | ||
| ] | ||
| }, | ||
| "settings": { | ||
| "cyclop": { | ||
| "max-complexity": 15 | ||
| }, | ||
| "forbidigo": { | ||
| "forbid": [ | ||
| { | ||
| "pattern": "^[Ee]quals$" | ||
| }, | ||
| { | ||
| "pattern": "^print.*$" | ||
| }, | ||
| { | ||
| "pattern": "fmt\\.Print.*" | ||
| } | ||
| ] | ||
| }, | ||
| "goheader": { | ||
| "template-path": ".scripts/copyright-notice", | ||
| "values": { | ||
| "regexp": { | ||
| "ANY_YEAR": "20(19|2\\d)" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "run": { | ||
| "modules-download-mode": "readonly" | ||
| }, | ||
| "version": "2" | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.