Skip to content

Commit ac770eb

Browse files
committed
Merge branch 'staging'
2 parents 737275b + 79a4939 commit ac770eb

95 files changed

Lines changed: 3851 additions & 890 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## Unreleased (develop)
44

5+
## 4.43.0 (staging)
6+
7+
- added: `chooseCaip19Asset` EdgeProvider API for precise wallet selection using CAIP-19 identifiers
8+
- added: EdgeSpend feature for gift card purchase via Phaze
9+
- added: Network privacy settings for Nym Mixnet in currency settings
10+
- added: Pass OS and app version details to core context for v2/coreRollup endpoint
11+
- added: New dedicated Privacy Settings scene for Nym Mixnet setting.
12+
- changed: Add Cosmos-based currencies (axelar, coreum, cosmoshub, osmosis, thorchainrune, thorchainrunestagenet) to currency settings
13+
- changed: Add Ethereum-based currencies (abstract, amoy, arbitrum, avalanche, base, binancesmartchain, bobevm, botanix, celo, ethDev, ethereum, ethereumclassic, ethereumpow, fantom, filecoinfevm, filecoinfevmcalibration, holesky, hyperevm, optimism, polygon, pulsechain, rsk, sepolia, sonic, zksync) to currency settings
14+
- changed: Append chain names to token codes in RampCreateScene
15+
- changed: Light mode persistence, theme colors, and images
16+
- changed: ramps: Infinite buy support enabled
17+
- fixed: iOS simulator builds for XCode 26
18+
519
## 4.42.1 (2026-01-28)
620

721
- added: `chooseCaip19Asset` EdgeProvider API for precise wallet selection using CAIP-19 identifiers
@@ -12,7 +26,7 @@
1226
## 4.42.0 (2026-01-19)
1327

1428
- added: Zcash buy/sell support with Banxa
15-
- changed: ramps: Infinite buy support according to new API (disabled temporarily)
29+
- changed: ramps: Infinite buy support according to new API
1630
- changed: Optimize login performance.
1731
- changed: Update Monero LWS server name to "Edge LWS"
1832
- fixed: Light account/backup reminder notification banner sometimes missing on login

eslint.config.mjs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export default [
4040
'react-native/sort-styles': 'off',
4141

4242
// Add our own rules:
43+
'edge/react-fc-component-definition': 'warn',
44+
'edge/react-render-function-definition': 'warn',
4345
'edge/useAbortable-abort-check-param': 'error',
4446
'edge/useAbortable-abort-check-usage': 'error',
4547

@@ -251,7 +253,6 @@ export default [
251253
'src/components/scenes/CreateWalletImportScene.tsx',
252254

253255
'src/components/scenes/CurrencyNotificationScene.tsx',
254-
'src/components/scenes/CurrencySettingsScene.tsx',
255256
'src/components/scenes/DefaultFiatSettingScene.tsx',
256257
'src/components/scenes/DuressModeHowToScene.tsx',
257258
'src/components/scenes/DuressModeSettingScene.tsx',
@@ -325,7 +326,7 @@ export default [
325326
'src/components/services/ContactsLoader.ts',
326327
'src/components/services/DeepLinkingManager.tsx',
327328
'src/components/services/EdgeContextCallbackManager.tsx',
328-
'src/components/services/EdgeCoreManager.tsx',
329+
329330
'src/components/services/FioService.ts',
330331
'src/components/services/LoanManagerService.ts',
331332
'src/components/services/NetworkActivity.ts',
@@ -338,7 +339,7 @@ export default [
338339
'src/components/services/WalletConnectService.tsx',
339340
'src/components/services/WalletLifecycle.ts',
340341
'src/components/services/WipeLogsService.tsx',
341-
'src/components/settings/SettingsHeaderRow.tsx',
342+
342343
'src/components/settings/SettingsLabelRow.tsx',
343344
'src/components/settings/SettingsRadioRow.tsx',
344345
'src/components/settings/SettingsRow.tsx',
@@ -363,8 +364,6 @@ export default [
363364
'src/components/themed/LineTextDivider.tsx',
364365
'src/components/themed/MainButton.tsx',
365366
'src/components/themed/ManageTokensRow.tsx',
366-
'src/components/themed/MaybeCustomServersSetting.tsx',
367-
'src/components/themed/MaybeMoneroUserSettings.tsx',
368367
'src/components/themed/MenuTabs.tsx',
369368
'src/components/themed/ModalParts.tsx',
370369
'src/components/themed/PinDots.tsx',
@@ -416,7 +415,7 @@ export default [
416415
'src/controllers/action-queue/runtime/executeActionProgram.ts',
417416
'src/controllers/edgeProvider/client/edgeProviderBridge.ts',
418417
'src/controllers/edgeProvider/client/pendingList.ts',
419-
'src/controllers/edgeProvider/EdgeProviderServer.tsx',
418+
420419
'src/controllers/loan-manager/borrowPluginConfig.ts',
421420
'src/controllers/loan-manager/redux/actions.ts',
422421
'src/controllers/loan-manager/util/waitForLoanAccountSync.ts',

ios/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ target 'edge' do
6060
installer.pods_project.targets.each do |target|
6161
target.build_configurations.each do |config|
6262
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = ios_platform_version
63+
64+
# Xcode 17+ / iOS 26 SDK workaround: Re-enable std::allocator<const T>
65+
# which was removed for stricter C++ standard compliance.
66+
# See: https://github.com/getsentry/sentry-cocoa/issues/5172
67+
existing_defs = config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] || ['$(inherited)']
68+
unless existing_defs.include?('_LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST=1')
69+
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = existing_defs + ['_LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST=1']
70+
end
6371
end
6472
end
6573

ios/Podfile.lock

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ PODS:
1515
- disklet (0.5.2):
1616
- React
1717
- DoubleConversion (1.1.6)
18-
- edge-core-js (2.38.4):
18+
- edge-core-js (2.41.3):
1919
- React-Core
20-
- edge-currency-accountbased (4.70.0):
20+
- edge-currency-accountbased (4.71.2):
2121
- React-Core
22-
- edge-currency-plugins (3.8.10):
22+
- edge-currency-plugins (3.8.11):
2323
- React-Core
24-
- edge-exchange-plugins (2.40.4):
24+
- edge-exchange-plugins (2.40.5):
2525
- React-Core
26-
- edge-login-ui-rn (3.34.7):
26+
- edge-login-ui-rn (3.35.0):
2727
- React-Core
2828
- EXConstants (17.1.7):
2929
- ExpoModulesCore
@@ -98,7 +98,7 @@ PODS:
9898
- FirebaseCoreInternal (~> 10.0)
9999
- GoogleUtilities/Environment (~> 7.12)
100100
- GoogleUtilities/Logger (~> 7.12)
101-
- FirebaseCoreExtension (10.27.0):
101+
- FirebaseCoreExtension (10.29.0):
102102
- FirebaseCore (~> 10.0)
103103
- FirebaseCoreInternal (10.29.0):
104104
- "GoogleUtilities/NSData+zlib (~> 7.8)"
@@ -161,17 +161,17 @@ PODS:
161161
- hermes-engine/Pre-built (0.79.2)
162162
- ImageColors (2.4.0):
163163
- ExpoModulesCore
164-
- libwebp (1.3.2):
165-
- libwebp/demux (= 1.3.2)
166-
- libwebp/mux (= 1.3.2)
167-
- libwebp/sharpyuv (= 1.3.2)
168-
- libwebp/webp (= 1.3.2)
169-
- libwebp/demux (1.3.2):
164+
- libwebp (1.5.0):
165+
- libwebp/demux (= 1.5.0)
166+
- libwebp/mux (= 1.5.0)
167+
- libwebp/sharpyuv (= 1.5.0)
168+
- libwebp/webp (= 1.5.0)
169+
- libwebp/demux (1.5.0):
170170
- libwebp/webp
171-
- libwebp/mux (1.3.2):
171+
- libwebp/mux (1.5.0):
172172
- libwebp/demux
173-
- libwebp/sharpyuv (1.3.2)
174-
- libwebp/webp (1.3.2):
173+
- libwebp/sharpyuv (1.5.0)
174+
- libwebp/webp (1.5.0):
175175
- libwebp/sharpyuv
176176
- Logging (1.4.0)
177177
- MnemonicSwift (2.2.4)
@@ -180,7 +180,7 @@ PODS:
180180
- nanopb/encode (= 2.30910.0)
181181
- nanopb/decode (2.30910.0)
182182
- nanopb/encode (2.30910.0)
183-
- OpenSSL-Universal (3.3.3000)
183+
- OpenSSL-Universal (3.3.3001)
184184
- PromisesObjC (2.4.0)
185185
- RCT-Folly (2024.11.18.00):
186186
- boost
@@ -1665,7 +1665,7 @@ PODS:
16651665
- ReactCommon/turbomodule/bridging
16661666
- ReactCommon/turbomodule/core
16671667
- Yoga
1668-
- react-native-piratechain (0.5.19):
1668+
- react-native-piratechain (0.5.20):
16691669
- gRPC-Swift (~> 1.8)
16701670
- MnemonicSwift (~> 2.2)
16711671
- React-Core
@@ -1773,10 +1773,10 @@ PODS:
17731773
- ReactCommon/turbomodule/bridging
17741774
- ReactCommon/turbomodule/core
17751775
- Yoga
1776-
- react-native-zano (0.2.5):
1776+
- react-native-zano (0.2.6):
17771777
- OpenSSL-Universal
17781778
- React-Core
1779-
- react-native-zcash (0.10.2):
1779+
- react-native-zcash (0.10.3):
17801780
- gRPC-Swift (~> 1.8)
17811781
- MnemonicSwift (~> 2.2)
17821782
- React-Core
@@ -2726,11 +2726,11 @@ PODS:
27262726
- SDWebImage/Core (~> 5.10)
27272727
- Sentry/HybridSDK (8.56.2)
27282728
- SocketRocket (0.7.1)
2729-
- SQLite.swift/standalone (0.15.3):
2729+
- SQLite.swift/standalone (0.15.4):
27302730
- sqlite3
2731-
- "sqlite3 (3.46.0+1)":
2732-
- "sqlite3/common (= 3.46.0+1)"
2733-
- "sqlite3/common (3.46.0+1)"
2731+
- sqlite3 (3.51.1):
2732+
- sqlite3/common (= 3.51.1)
2733+
- sqlite3/common (3.51.1)
27342734
- SwiftNIO (2.40.0):
27352735
- _NIODataStructures (= 2.40.0)
27362736
- CNIOAtomics (= 2.40.0)
@@ -2861,15 +2861,15 @@ PODS:
28612861
- SwiftNIOFoundationCompat (< 3, >= 2.32.0)
28622862
- SwiftNIOPosix (< 3, >= 2.32.0)
28632863
- SwiftNIOTLS (< 3, >= 2.32.0)
2864-
- SwiftProtobuf (1.26.0)
2864+
- SwiftProtobuf (1.33.3)
28652865
- VisionCamera (4.7.2):
28662866
- VisionCamera/Core (= 4.7.2)
28672867
- VisionCamera/React (= 4.7.2)
28682868
- VisionCamera/Core (4.7.2)
28692869
- VisionCamera/React (4.7.2):
28702870
- React-Core
28712871
- Yoga (0.0.0)
2872-
- ZIPFoundation (0.9.11)
2872+
- ZIPFoundation (0.9.20)
28732873
- ZXingObjC (3.6.9):
28742874
- ZXingObjC/All (= 3.6.9)
28752875
- ZXingObjC/All (3.6.9)
@@ -3338,11 +3338,11 @@ SPEC CHECKSUMS:
33383338
CNIOWindows: 3047f2d8165848a3936a0a755fee27c6b5ee479b
33393339
disklet: 8a20bf8a568635b6e6bb8f93297dac13ee5cef98
33403340
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
3341-
edge-core-js: cb4060b09b25454ed9a085808351bd1de17352df
3342-
edge-currency-accountbased: b9407e907da1c2592b2b771c3be2a36d4dd3d597
3343-
edge-currency-plugins: 6b3341707a6a5c74f837a012768dd2f6c55a691b
3344-
edge-exchange-plugins: f31912c54a50852bd02077b795aace0e0bee8365
3345-
edge-login-ui-rn: 8fd0a0bb89754c4955382ed201f09d896c5583be
3341+
edge-core-js: 60ad7f9a59418f6bf90eab9bfc66b18d7877c7f1
3342+
edge-currency-accountbased: b41fd24593c14093ea563caa3df2fc14aeb84abf
3343+
edge-currency-plugins: 002abe3c0d4fb6040046ec779b208c6aa83bee83
3344+
edge-exchange-plugins: db3cfb3686abf0e31c5f2d0f9c0ce8c40b7cf9c9
3345+
edge-login-ui-rn: 74294715a31efa2f79a916a3f89bf47a99cec102
33463346
EXConstants: 98bcf0f22b820f9b28f9fee55ff2daededadd2f8
33473347
Expo: 43d9e0c3108cc3a1c2739743e9b51086144ee4b0
33483348
ExpoAsset: ef06e880126c375f580d4923fdd1cdf4ee6ee7d6
@@ -3354,7 +3354,7 @@ SPEC CHECKSUMS:
33543354
FBLazyVector: 84b955f7b4da8b895faf5946f73748267347c975
33553355
Firebase: cec914dab6fd7b1bd8ab56ea07ce4e03dd251c2d
33563356
FirebaseCore: 30e9c1cbe3d38f5f5e75f48bfcea87d7c358ec16
3357-
FirebaseCoreExtension: 4ec89dd0c6de93d6becde32122d68b7c35f6bf5d
3357+
FirebaseCoreExtension: 705ca5b14bf71d2564a0ddc677df1fc86ffa600f
33583358
FirebaseCoreInternal: df84dd300b561c27d5571684f389bf60b0a5c934
33593359
FirebaseInstallations: 913cf60d0400ebd5d6b63a28b290372ab44590dd
33603360
FirebaseMessaging: 7b5d8033e183ab59eb5b852a53201559e976d366
@@ -3365,11 +3365,11 @@ SPEC CHECKSUMS:
33653365
gRPC-Swift: 74adcaaa62ac5e0a018938840328cb1fdfb09e7b
33663366
hermes-engine: 314be5250afa5692b57b4dd1705959e1973a8ebe
33673367
ImageColors: 869f48b27ca2afb347fd0bada3257a5f698ee55e
3368-
libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009
3368+
libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
33693369
Logging: beeb016c9c80cf77042d62e83495816847ef108b
33703370
MnemonicSwift: 40ba76b951b75b32e2719df989b4d6da5798fe26
33713371
nanopb: 438bc412db1928dac798aa6fd75726007be04262
3372-
OpenSSL-Universal: d776ce24dab24323e6995dfb17c64d598885d05c
3372+
OpenSSL-Universal: 6082b0bf950e5636fe0d78def171184e2b3899c2
33733373
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
33743374
RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
33753375
RCTDeprecation: 83ffb90c23ee5cea353bd32008a7bca100908f8c
@@ -3414,13 +3414,13 @@ SPEC CHECKSUMS:
34143414
react-native-mymonero-core: 89717c706af7024c9100ccb6c3f22a587ccc8f09
34153415
react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
34163416
react-native-performance: f0471c84eda0f6625bd42a1f515b1b216f284b12
3417-
react-native-piratechain: b1a2e627232b583e0060b50db340becb64e3cde1
3417+
react-native-piratechain: 82adcbaa6f37993246028ae988840f98ac70e372
34183418
react-native-render-html: 5afc4751f1a98621b3009432ef84c47019dcb2bd
34193419
react-native-safari-view: 07dc856a2663fef31eaca6beb79b111b8f6cf1f2
34203420
react-native-safe-area-context: 83e0ac3d023997de1c2e035af907cc4dc05f718c
34213421
react-native-webview: 69c118d283fccfbc4fca0cd680e036ff3bf188fa
3422-
react-native-zano: 4af16a60e81819be92c425a373db3fa7908b10fb
3423-
react-native-zcash: 76e2ad77f83969f2d2c20d423c2049179a95fced
3422+
react-native-zano: dd0967aaa0bbfe347c0ea5af15bc94f2d059fbf7
3423+
react-native-zcash: 34b665ed972547f6d09ad47aad706c5daa80bf09
34243424
React-NativeModulesApple: df8e5bc59e78ca3040ffbf41336889f3bd0fad68
34253425
React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c
34263426
React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d
@@ -3483,8 +3483,8 @@ SPEC CHECKSUMS:
34833483
SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d
34843484
Sentry: b53951377b78e21a734f5dc8318e333dbfc682d7
34853485
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
3486-
SQLite.swift: 8d054987f02728cc912b0eb5a9659650573a65a2
3487-
sqlite3: 292c3e1bfe89f64e51ea7fc7dab9182a017c8630
3486+
SQLite.swift: a107c734115fea616a4ad31371d39f1637e8de56
3487+
sqlite3: 8d708bc63e9f4ce48f0ad9d6269e478c5ced1d9b
34883488
SwiftNIO: 829958aab300642625091f82fc2f49cb7cf4ef24
34893489
SwiftNIOConcurrencyHelpers: 697370136789b1074e4535eaae75cbd7f900370e
34903490
SwiftNIOCore: 473fdfe746534d7aa25766916459eeaf6f92ef49
@@ -3498,12 +3498,12 @@ SPEC CHECKSUMS:
34983498
SwiftNIOSSL: d153c5a6fc5b2301b0519b4c4d037a9414212da6
34993499
SwiftNIOTLS: 598af547490133e9aac52aed0c23c4a90c31dcfc
35003500
SwiftNIOTransportServices: 0b2b407819d82eb63af558c5396e33c945759503
3501-
SwiftProtobuf: 5e8349171e7c2f88f5b9e683cb3cb79d1dc780b3
3501+
SwiftProtobuf: e1b437c8e31a4c5577b643249a0bb62ed4f02153
35023502
VisionCamera: 30b358b807324c692064f78385e9a732ce1bebfe
35033503
Yoga: 50518ade05048235d91a78b803336dbb5b159d5d
3504-
ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197
3504+
ZIPFoundation: dfd3d681c4053ff7e2f7350bc4e53b5dba3f5351
35053505
ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5
35063506

3507-
PODFILE CHECKSUM: 8c119d1d2fda8d2ceda1c186a5415d0c7473469a
3507+
PODFILE CHECKSUM: ffc45b7c82f76539837854e7add5bc6ad74ef0b6
35083508

35093509
COCOAPODS: 1.16.2

localization/AppStoreDescription.zh.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
-----
33
Short description: Buy BTC, AVAX, Monero & more
44
-----
5-
我们易于使用的区块链钱包为您提供全面的隐私和安全。 The Edge app has open-source code to ensure the highest level of security and privacy.
5+
我们易于使用的区块链钱包为您提供全面的隐私和安全。 我们易于使用的区块链钱包为您提供全面的隐私和安全。 The Edge app has open-source code to ensure the highest level of security and privacy.
66

77
Managing your cryptocurrency assets has never been easier. 管理您的加密货币资产从未如此简单。 Edge 钱包为您提供最大的安全性,同时保持简洁,允许所有类型的用户轻松管理,转移和交换他们的货币。
88

99
Edge Crypto Wallet currently supports: Bitcoin, Bitcoin Cash, Litecoin, Dash, Ethereum, Stellar, Monero, Digibyte, and Ripple/XRP.
1010

1111
Edge 是一个功能强大且易于使用的加密货币钱包, 它允许用户利用便利的手机银行模式,轻松地控制自己的私钥。
1212

13-
控制您的资金! With Edge, only YOU have access to your funds or transaction data. 在 Edge 中,唯有您能够掌握您的资金或交易信息。 Edge 或 任何第三方都无法获取您的资金或数据。 您将得到专为比特币设计的财务隐私权和自主权,它极为简易,就连老人家都能应付自如。 You get the financial privacy and autonomy that blockchain was designed for, with the ease of use even grandma could handle.
13+
控制您的资金! With Edge, only YOU have access to your funds or transaction data. 在 Edge 中,唯有您能够掌握您的资金或交易信息。 Edge 或 任何第三方都无法获取您的资金或数据。 您将得到专为比特币设计的财务隐私权和自主权,它极为简易,就连老人家都能应付自如。 You get the financial privacy and autonomy that blockchain was designed for, with the ease of use even grandma could handle. You get the financial privacy and autonomy that blockchain was designed for, with the ease of use even grandma could handle.
1414

15-
Edge还提供加密货币交易服务。 只需轻点几下, 即可轻松交易加密货币。 Easily swap your currencies for others with a few taps.
15+
Edge还提供加密货币交易服务。 只需轻点几下, 即可轻松交易加密货币。 Easily swap your currencies for others with a few taps. Easily swap your currencies for others with a few taps.
1616

1717
• Edge 或第三方对用户的资金,密匙或交易数据完全没有任何的使用权
1818
• 轻松创建帐户,只需使用登入名和密码 (无需打印 pdf 文件,抄写密码或添加任何加密设置)
@@ -22,9 +22,9 @@ Edge还提供加密货币交易服务。 只需轻点几下, 即可轻松交易
2222
• Open-source code. • 开源代码。 可到 https://github.com/EdgeApp 下载
2323

2424
隐私声明
25-
Edge钱包应用程序要求应用装置中的联系人列表、位置和个人信息。 这些资讯将应用在装置中以便提升使用者的体验,例如: This information is used on the device to provide an improved user experience in the following ways:
25+
Edge钱包应用程序要求应用装置中的联系人列表、位置和个人信息。 这些资讯将应用在装置中以便提升使用者的体验,例如: This information is used on the device to provide an improved user experience in the following ways: This information is used on the device to provide an improved user experience in the following ways:
2626

2727
1. 在进行交易后,在使用者的通讯录当中自动完成联系人资料的填写
2828
2. 自动完成使用者通讯录中的联系人资料,以便通过电邮或短信发送付款请求
2929

30-
任何个人信息或联系人列表信息都不会离开设备。 Edge或任何第三方都无权获知应用程序所使用的信息。 Neither Edge nor any 3rd party can access the information requested by the application.
30+
任何个人信息或联系人列表信息都不会离开设备。 Edge或任何第三方都无权获知应用程序所使用的信息。 任何个人信息或联系人列表信息都不会离开设备。 Edge或任何第三方都无权获知应用程序所使用的信息。 Neither Edge nor any 3rd party can access the information requested by the application.

localization/PlayStoreDescription.de.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Kurze Beschreibung: Privat, sicher & einfach zu nutzen. Bitcoin & andere Kryptow
66

77
Weder Edge noch Dritte können auf Ihr Geld oder Ihre Daten zugreifen. Sie erhalten die finanzielle Privatsphäre und Autonomie, für die die Blockchain entworfen wurde, durch die leichte Handhabung kann sogar ihre Großmutter damit umgehen.
88

9-
Die Verwaltung Ihrer Kryptowährung war nie einfacher. Die Edge-Wallet bietet maximale Sicherheit bei gleichzeitiger Einfachheit und ermöglicht es allen Nutzern, ihre Währungen einfach zu verwalten, zu transferieren und zu tauschen. Verfügbar auf https://github.com/EdgeApp • Integrierte Kryptobörse zum Kauf & Verkauf von Kryptowährungen
9+
Die Verwaltung Ihrer Kryptowährung war nie einfacher. Die Edge-Wallet bietet maximale Sicherheit bei gleichzeitiger Einfachheit und ermöglicht es allen Nutzern, ihre Währungen einfach zu verwalten, zu transferieren und zu tauschen. Verfügbar auf https://github.com/EdgeApp Verfügbar auf https://github.com/EdgeApp • Integrierte Kryptobörse zum Kauf & Verkauf von Kryptowährungen
1010

1111
<b>Edge Crypto Wallet unterstützt derzeit:</b> Bitcoin (BTC), Bitcoin Cash (BCH), Bitcoin SV (BSV), Litecoin (LTC), Qtum (QTUM), Dash (DASH), Ethereum (ETH), Monero (XMR), Ripple (XRP), Digibyte (DGB), EOS, Binance Chain (BNB), RSK (RBTC), Stellar (XLM), Tezos (XTZ), Ravencoin (RVN), SmartCash (SMART), Zcoin (XZC), Dogecoin (DOGE) und Feathercoin (FTC). Du willst andere Kryptowährungen in unserer Wallet sehen? Senden Sie uns eine Anfrage!
1212

0 commit comments

Comments
 (0)