Important
This DAPP has not been audited ; use at your own risks.
Note
Stars are highly appreciated! Thanks in advance.
Launch a local devnet-rs : https://github.com/0xSpaceShard/starknet-devnet-rs
npm run dev
then open http://localhost:3000/
https://starknet-ledger-wallet.vercel.app/
NanoX bluetooth : experimental : https://starknet-ledger-wallet-git-nanox-philipper26s-projects.vercel.app/ (do not work on linux mint)
Browser | compatible |
---|---|
Firefox | ❌ |
Chrome | ✅ |
Brave (*) | ✅ |
Safari | ❌ |
Edge | TBD |
IE | ❌ |
(*) = Needs to deactivate shield.
Ledger | compatible |
---|---|
Nano S | ❌ |
Nano S+ | ✅ |
Nano X | ✅ |
The Starknet APP has to be installed in your Ledger. If not visible in Ledger Live, set its configuration to experimental
.
Note
This DAPP is compatible with the Ledger Starknet APP v2.1.1
This version of DAPP requests to connect the Ledger Nano to an USB connector of your computer.
Today, the DAPP is only working with the devnet-rs network.
Note that to handle devnet-rs, I am using this lib :
"starknet-devnet": "0.2.0",
To use this lib, some code has to be added in next.config.ts
:
webpack: (config) => {
config.resolve.fallback = {
fs: false,
net: false,
child_process: false,
}
return config;
}