Skip to content
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

feat(walletconnect): walletconnect client #2183

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ff267a4
make walletconnect lib compile
borngraced Jul 16, 2024
3a585a1
Cargo.lock
borngraced Jul 16, 2024
60638bd
Merge remote-tracking branch 'origin/dev' into walletconnect
borngraced Jul 16, 2024
de9b42a
use thread_rng in generate_mnemonic for now
borngraced Jul 17, 2024
7d2ef1e
save dev state
borngraced Jul 17, 2024
1712c08
revert bip39 dep changes
borngraced Jul 17, 2024
38f8e0f
port and implement walletconnect wss connection options
borngraced Jul 18, 2024
71feee0
save dev state
borngraced Jul 18, 2024
75db037
save dev state - native client impl
borngraced Jul 19, 2024
9d45139
implement walletconnect client with unit tests
borngraced Jul 23, 2024
a6a53e5
commit lock file
borngraced Jul 23, 2024
4e7f633
fix unit test wasm
borngraced Jul 23, 2024
a4d827b
polish and minor changes
borngraced Jul 24, 2024
59050d6
save dev state
borngraced Jul 24, 2024
c87d9a3
rename module
borngraced Jul 25, 2024
615d4cb
fix client bug and refactoring
borngraced Jul 27, 2024
35ab1e3
fix merge conflicts
borngraced Jul 27, 2024
3b98328
resolve deps
borngraced Jul 28, 2024
902bc7b
debug deps
borngraced Jul 28, 2024
3957935
rename mod and add port info
borngraced Aug 8, 2024
e84db08
commit lock file and Cargo.toml
borngraced Aug 8, 2024
e6093fd
use MmError handling
borngraced Aug 8, 2024
ec3a3fb
minor refactorings
borngraced Aug 12, 2024
1649a7a
fix formattiing, update dalek deps to 4.1.3, update lib docs
borngraced Aug 13, 2024
44f847c
debug curve25519_dalek_backend
borngraced Aug 13, 2024
5027a90
debug curve25519_dalek_backend build 2
borngraced Aug 13, 2024
978c548
update rand and revert generate_mnemonic
borngraced Aug 13, 2024
0028369
error improv and other minor changes
borngraced Aug 13, 2024
0a24364
revert editor format
borngraced Aug 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cargo/config.toml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it your editor making these changes automatically, or are you making them intentionally?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's my editor.. sorry 🙁

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting is fine, it's just too much out-of-context change for a feature PR in my opinion

Copy link
Member Author

@borngraced borngraced Aug 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...and the formatting in some Cargo.toml files aren't consistent enough

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
JEMALLOC_SYS_WITH_MALLOC_CONF = "background_thread:true,narenas:1,tcache:false,dirty_decay_ms:0,muzzy_decay_ms:0,metadata_thp:auto"

[target.'cfg(all())']
rustflags = [ "-Zshare-generics=y" ]
rustflags = ["-Zshare-generics=y", '--cfg=curve25519_dalek_backend="fiat"']

# # Install lld using package manager
# [target.x86_64-unknown-linux-gnu]
Expand All @@ -24,4 +24,4 @@ rustflags = [ "-Zshare-generics=y" ]

[target.wasm32-unknown-unknown]
runner = 'wasm-bindgen-test-runner'
rustflags = [ "--cfg=web_sys_unstable_apis" ]
rustflags = ["--cfg=web_sys_unstable_apis"]
Loading
Loading