File tree Expand file tree Collapse file tree 6 files changed +19
-0
lines changed
Expand file tree Collapse file tree 6 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased (develop)
44
5+ - added: Add Abstract ETH Layer 2 support
6+
57## 4.22.0 (staging)
68
79- added: ` NotificationCenterScene `
Original file line number Diff line number Diff line change @@ -183,6 +183,19 @@ export const getSpecialCurrencyInfo = (pluginId: string): SpecialCurrencyInfo =>
183183export const SPECIAL_CURRENCY_INFO : {
184184 [ pluginId : string ] : SpecialCurrencyInfo
185185} = {
186+ abstract : {
187+ allowZeroTx : true ,
188+ chainCode : 'ETH' ,
189+ chainIcon : true ,
190+ dummyPublicAddress : '0x0d73358506663d484945ba85d0cd435ad610b0a0' ,
191+ initWalletName : lstrings . string_first_abstract_wallet_name ,
192+ isImportKeySupported : true ,
193+ noMaxSpend : true ,
194+ walletConnectV2ChainId : {
195+ namespace : 'eip155' ,
196+ reference : '324'
197+ }
198+ } ,
186199 amoy : {
187200 allowZeroTx : true ,
188201 chainCode : 'ETH' ,
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ export const asEnvConfig = asObject({
138138 UNSTOPPABLE_DOMAINS_API_KEY : asNullable ( asString ) ,
139139
140140 // Core plugin options:
141+ ABSTRACT_INIT : asCorePluginInit ( asEvmApiKeys ) ,
141142 ARBITRUM_INIT : asCorePluginInit ( asEvmApiKeys ) ,
142143 AMOY_INIT : asCorePluginInit ( asEvmApiKeys ) ,
143144 ALGORAND_INIT : asOptional ( asBoolean , true ) ,
Original file line number Diff line number Diff line change @@ -605,6 +605,7 @@ const strings = {
605605 string_first_bobevm_wallet_name : 'My BOB' ,
606606 string_first_algorand_wallet_name : 'My Algorand' ,
607607 string_first_zksync_wallet_name : 'My zkSync' ,
608+ string_first_abstract_wallet_name : 'My Abstract' ,
608609 string_first_sepolia_wallet_name : 'My Sepolia' ,
609610 my_crypto_wallet_name : 'My %s' ,
610611 string_help : 'Help' ,
Original file line number Diff line number Diff line change 537537 "string_first_bobevm_wallet_name" : " My BOB" ,
538538 "string_first_algorand_wallet_name" : " My Algorand" ,
539539 "string_first_zksync_wallet_name" : " My zkSync" ,
540+ "string_first_abstract_wallet_name" : " My Abstract" ,
540541 "string_first_sepolia_wallet_name" : " My Sepolia" ,
541542 "my_crypto_wallet_name" : " My %s" ,
542543 "string_help" : " Help" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { ENV } from '../env'
44
55export const currencyPlugins : EdgeCorePluginsInit = {
66 // // edge-currency-accountbased:
7+ abstract : ENV . ABSTRACT_INIT ,
78 algorand : ENV . ALGORAND_INIT ,
89 amoy : ENV . AMOY_INIT ,
910 arbitrum : ENV . ARBITRUM_INIT ,
You can’t perform that action at this time.
0 commit comments