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

Solana provider base implementation #100

Merged
merged 4 commits into from
Dec 5, 2024
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
8 changes: 4 additions & 4 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
CUSTOM_RUNTIME=extension
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
BUGSNAG_API_KEY=4a72fb23d3ddc00054db744c3006f0cd
DEFAULT_CHAIN=1
LD_CLIENT_ID=6272a84a39dbeb158b34bd58
NODE_ENV=production
DEFAULT_CHAIN=1
BUGSNAG_API_KEY=4a72fb23d3ddc00054db744c3006f0cd
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
SOLANA_ENABLED=false
VERSION_DESCRIPTION=`Unstoppable Lite Wallet is a web3 wallet built for domainers. Enable your **free wallet** to get started with Bitcoin, Ethereum, Base, Polygon and Solana.

This version contains the following updates:
Expand Down
7 changes: 4 additions & 3 deletions .env.staging
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
BUGSNAG_API_KEY=4a72fb23d3ddc00054db744c3006f0cd
DEFAULT_CHAIN=11155111
LD_CLIENT_ID=6272a84a39dbeb158b34bd57
NODE_ENV=staging
DEFAULT_CHAIN=11155111
BUGSNAG_API_KEY=4a72fb23d3ddc00054db744c3006f0cd
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
SOLANA_ENABLED=true
VERSION_DESCRIPTION=`Development build, **staging / testnet environment only**. Contains the following updates:
- Sherlock Assistant magnifying glass
- Optimize performance
Expand Down
7 changes: 4 additions & 3 deletions .env.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
BUGSNAG_API_KEY=abc123
DEFAULT_CHAIN=1
LD_CLIENT_ID=123
NODE_ENV=staging
DEFAULT_CHAIN=1
BUGSNAG_API_KEY=abc123
ALWAYS_PROMPT_COMPATIBILITY_MODE=true
SOLANA_ENABLED=true
VERSION_DESCRIPTION="Information about this release"
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
},
"dependencies": {
"@metamask/providers": "^17.1.2",
"@types/bs58": "^4.0.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@unstoppabledomains/config": "0.0.19",
Expand Down
Loading
Loading