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(tari_wallet_daemon): walletconnect support #1083

Merged
merged 23 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
54e20cf
wallect connect button
mrnaveira Jul 16, 2024
1340b7a
wallet connect placeholder
mrnaveira Jul 16, 2024
f657190
project id envvar
mrnaveira Jul 16, 2024
cb5c3f3
basic wallet connect integration
mrnaveira Jul 16, 2024
b27a002
walletconnect working
mrnaveira Jul 16, 2024
a07f906
allow all methods needed for tari.js
mrnaveira Jul 17, 2024
6587b84
use tari walletconnect namespace
mrnaveira Jul 18, 2024
e95215b
fix walletconnect session namespace
mrnaveira Jul 21, 2024
55f42a8
listSubstates request
mrnaveira Jul 23, 2024
675f24b
update package-lock
mrnaveira Jul 23, 2024
bbaa4a8
fix method name
mrnaveira Jul 23, 2024
2143262
fix list_substates params
mrnaveira Jul 24, 2024
b610d40
fix js code style
mrnaveira Jul 24, 2024
68a1a46
fix rust clippy warnings
mrnaveira Jul 24, 2024
ecdcf9e
Merge branch 'development' of https://github.com/tari-project/tari-da…
mrnaveira Jul 24, 2024
1f5ffb8
fix npm warnings
mrnaveira Jul 24, 2024
bcfd611
Merge branch 'development' into walletconnect
mrnaveira Jul 24, 2024
cbfb1a6
Merge branch 'development' into walletconnect
sdbondi Jul 25, 2024
72d45a1
Merge branch 'development' into walletconnect
sdbondi Jul 25, 2024
89878f7
Merge branch 'development' of https://github.com/tari-project/tari-da…
mrnaveira Jul 25, 2024
87a9af6
Merge branch 'development' of https://github.com/tari-project/tari-da…
mrnaveira Jul 25, 2024
0e60b8d
Merge branch 'development' of https://github.com/tari-project/tari-da…
mrnaveira Jul 29, 2024
e1a2669
Merge branch 'development' into walletconnect
sdbondi Jul 30, 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: 4 additions & 0 deletions applications/tari_dan_wallet_web_ui/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
VITE_DAEMON_JRPC_ADDRESS=http://localhost:9000

# If not set, the wallet daemon will not support walletconnect
#VITE_WALLET_CONNECT_PROJECT_ID=
8 changes: 8 additions & 0 deletions applications/tari_dan_wallet_web_ui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Getting Started

Copy the `.env.example` file to `.env` and edit the correct environment variable values.

```shell
npm install
npm run dev
```
Loading
Loading