Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The default configuration is for locally stored transactions and metadata, entir

BSV Desktop is a feature-rich Bitcoin SV wallet that runs on macOS, Windows, and Linux. It provides:

- **Official Reference Implementation** - BSV Association reference wallet implementation for the BRC-100 application-to-wallet interface
- **🔐 Self-Custody Mode** - Full control with local key management and SQLite storage
- **☁️ Remote Storage Mode** - WAB (Wallet Authentication Backend) integration with remote storage
- **🌐 BRC-100 Interface** - HTTPS server on port 2121 for external app integration
Expand Down Expand Up @@ -353,4 +354,3 @@ Open BSV License
- [wallet-toolbox](https://github.com/bsv-blockchain/wallet-toolbox) - Core wallet functionality
- [ts-sdk](https://github.com/bsv-blockchain/ts-sdk) - BSV TypeScript SDK
- [overlay-services](https://github.com/bsv-blockchain/overlay-express-examples) - Overlay network infrastructure

2 changes: 1 addition & 1 deletion src/lib/UserContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const UserContext = createContext<UserContextValue>({} as UserContextValu
*/
export const UserContextProvider: React.FC<UserContextProps> = ({
appVersion = packageJson.version,
appName = 'Metanet Desktop',
appName = 'BSV Desktop',
children,
nativeHandlers = defaultNativeHandlers
}) => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/AppChip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const AppChip: React.FC<AppChipProps> = ({
onClick={e => {
e.stopPropagation()
window.open(
'https://projectbabbage.com/docs/babbage-sdk/concepts/apps',
'https://bsv-blockchain.github.io/ts-sdk/reference/wallet/',
'_blank'
)
}}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/BasketChip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const BasketChip: React.FC<BasketChipProps> = ({
onClick={e => {
e.stopPropagation()
window.open(
'https://projectbabbage.com/docs/babbage-sdk/concepts/baskets',
'https://bsv-blockchain.github.io/ts-sdk/reference/wallet/',
'_blank'
)
}}
Expand Down
Loading