-
Notifications
You must be signed in to change notification settings - Fork 232
CW-519 Enable built-in Tor #1950
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
Open
MrCyjaneK
wants to merge
30
commits into
main
Choose a base branch
from
CW-519-add-tor-connection-feature-to-cake
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
71d1b98
tor wip
MrCyjaneK 3604eb7
Enable tor on iOS
MrCyjaneK dfdc92e
Prevent app lag when node is exceptionally slow (usually over tor)
MrCyjaneK e564cfd
fix: logic in daemonBlockchainHeight refresh
MrCyjaneK 21d6ae6
Pin ledger_flutter_plus dependency to fix builds
MrCyjaneK eee8cd2
bump arti version
MrCyjaneK 0b8a39d
wip
MrCyjaneK 5649177
add single httpclient
MrCyjaneK ecb59e6
Route everything I was able to catch trough the built-in tor node
MrCyjaneK 9475b39
Enable proxy for http.Client [run tests]
MrCyjaneK a0744d7
add tor proxy support to cw_evm, cw_tron and cw_polygon [run tests]
MrCyjaneK 767b3a1
remove log pollution, cleanup [skip slack]
MrCyjaneK 4e813ab
fix tests not working in latest main [skip slack] [run tests]
MrCyjaneK c048689
remove cw_wownero import
MrCyjaneK 499d6fc
fix build issues
MrCyjaneK 253daf7
migrate all remaining calls to use ProxyWrapper
MrCyjaneK 0ad0591
fix tor background sync (will work on test builds after #2142 is merg…
MrCyjaneK a9de1a7
wip [skip ci]
MrCyjaneK b12ac72
relicense to GPLv3 add socks5 license, build fixes
MrCyjaneK 6cac4a8
use ProxyWrapper instead of http in robinhood
MrCyjaneK e2ac4c7
Revert "relicense to GPLv3"
MrCyjaneK 35a9349
feat(cw_bitcoin): support socks proxy and CakeTor
MrCyjaneK 80dbb6f
fix(tor): migrate OCP and EVM over to ProxyWrapper()
MrCyjaneK d3656da
chore: cleanup
MrCyjaneK 64bff6d
fix: tor switch properly dismisses fullscreen loading dialog
MrCyjaneK 64c1073
fix(tor): status check for xmr/wow/zano
MrCyjaneK ab570cf
fix(tor): onramper request fix
MrCyjaneK 504d67f
fix(api): ServicesResponse is now being cached and doesn't fetch data…
MrCyjaneK e6bcf63
[skip ci] remove print
MrCyjaneK 570a0fe
address comments from review
MrCyjaneK 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: No http imports | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
PR_test_build: | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check for http package usage | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
GIT_GREP_OUT="$(git grep package:http | (grep .dart: || test $? = 1) | (grep -v proxy_wrapper.dart || test $? = 1) | (grep -v very_insecure_http_do_not_use || test $? = 1) || true)" | ||
[[ "x$GIT_GREP_OUT" == "x" ]] && exit 0 | ||
echo "$GIT_GREP_OUT" | ||
echo "There are .dart files which use http imports" | ||
echo "Using http package breaks proxy integration" | ||
echo "Please use ProxyWrapper.getHttpClient() from package:cw_core/utils/proxy_wrapper.dart" | ||
exit 1 | ||
|
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.
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.