diff --git a/suite-common/wallet-config/src/networksConfig.ts b/suite-common/wallet-config/src/networksConfig.ts index ba83643df59c..a347b46d2214 100644 --- a/suite-common/wallet-config/src/networksConfig.ts +++ b/suite-common/wallet-config/src/networksConfig.ts @@ -57,6 +57,7 @@ export const networks = { 'coin-definitions', 'nft-definitions', 'staking', + 'eip1559', ], backendTypes: ['blockbook'], accountTypes: { diff --git a/suite-common/wallet-config/src/types.ts b/suite-common/wallet-config/src/types.ts index 603a82ef56fa..785eb28bb99a 100644 --- a/suite-common/wallet-config/src/types.ts +++ b/suite-common/wallet-config/src/types.ts @@ -62,7 +62,8 @@ export type NetworkFeature = | 'tokens' | 'staking' | 'coin-definitions' - | 'nft-definitions'; + | 'nft-definitions' + | 'eip1559'; type Level = `/${number}'`; type MaybeApostrophe = `'` | ''; diff --git a/suite-common/wallet-utils/src/__tests__/accountUtils.test.ts b/suite-common/wallet-utils/src/__tests__/accountUtils.test.ts index dcf57cf5be2b..4865a5db170d 100644 --- a/suite-common/wallet-utils/src/__tests__/accountUtils.test.ts +++ b/suite-common/wallet-utils/src/__tests__/accountUtils.test.ts @@ -233,6 +233,7 @@ describe('account utils', () => { 'coin-definitions', 'nft-definitions', 'staking', + 'eip1559', ]); expect(getNetworkAccountFeatures(coinjoinAcc)).toEqual(['rbf', 'amount-unit']); // when account does not have features defined, take them from root network object