Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased (develop)

- added: Robinhood Chain wallets, an Arbitrum L2 that uses ETH for gas, with USDC, USDT, USDG, WBTC and WETH available as tokens
- added: App/device attestation for gated info-server requests
- added: "-m" tag on the version number in the Help scene for Maestro test builds
- added: Sign Message option in the wallet list menu for Bitcoin-family wallets, letting users prove self-hosted wallet ownership to exchanges by signing an exchange-provided message.
Expand Down
15 changes: 14 additions & 1 deletion src/constants/WalletAndCurrencyConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export const CURRENCY_SETTINGS_KEYS = [
'pulsechain',
'qtum',
'ravencoin',
'robinhood',
'rsk',
'sepolia',
'smartcash',
Expand Down Expand Up @@ -150,7 +151,8 @@ export const WALLET_TYPE_ORDER = [
'wallet:mayachain',
'wallet:monad',
'wallet:opbnb',
'wallet:nym'
'wallet:nym',
Comment thread
cursor[bot] marked this conversation as resolved.
'wallet:robinhood'
]

export interface WalletSettingOption {
Expand Down Expand Up @@ -559,6 +561,17 @@ export const SPECIAL_CURRENCY_INFO: Record<string, SpecialCurrencyInfo> = {
reference: '8453'
}
},
robinhood: {
initWalletName: lstrings.string_first_robinhood_wallet_name,
dummyPublicAddress: '0x0d73358506663d484945ba85d0cd435ad610b0a0',
allowZeroTx: true,
isImportKeySupported: true,
showChainIcon: true,
walletConnectV2ChainId: {
namespace: 'eip155',
reference: '4663'
}
},
filecoin: {
initWalletName: lstrings.string_first_filecoin_wallet_name,
allowZeroTx: false,
Expand Down
1 change: 1 addition & 0 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ export const asEnvConfig = asObject({
referrerFee: asOptional(asString, '0.75')
}).withRest
),
ROBINHOOD_INIT: asCorePluginInit(asEvmApiKeys),
RSK_INIT: asCorePluginInit(asEvmApiKeys),
SEPOLIA_INIT: asCorePluginInit(asEvmApiKeys),
SIDESHIFT_INIT: asCorePluginInit(
Expand Down
1 change: 1 addition & 0 deletions src/locales/en_US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,7 @@ const strings = {
string_first_sepolia_wallet_name: 'My Sepolia',
string_first_sonic_wallet_name: 'My Sonic',
string_first_opbnb_wallet_name: 'My opBNB',
string_first_robinhood_wallet_name: 'My Robinhood Chain',
my_crypto_wallet_name: 'My %s',
string_help: 'Help',
string_exit: 'Exit',
Expand Down
1 change: 1 addition & 0 deletions src/locales/strings/enUS.json
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@
"string_first_sepolia_wallet_name": "My Sepolia",
"string_first_sonic_wallet_name": "My Sonic",
"string_first_opbnb_wallet_name": "My opBNB",
"string_first_robinhood_wallet_name": "My Robinhood Chain",
"my_crypto_wallet_name": "My %s",
"string_help": "Help",
"string_exit": "Exit",
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const currencyPlugins: EdgeCorePluginsInit = {
polygon: ENV.POLYGON_INIT,
pulsechain: ENV.PULSECHAIN_INIT,
ripple: true,
robinhood: ENV.ROBINHOOD_INIT,
rsk: ENV.RSK_INIT,
sepolia: ENV.SEPOLIA_INIT,
solana: ENV.SOLANA_INIT,
Expand Down
Loading