Skip to content
Draft
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
2 changes: 1 addition & 1 deletion modules/statics/src/coins/erc20Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3720,7 +3720,7 @@ export const erc20Coins = [
18,
'0x5a98fcbea516cf06857215779fd812ca3bef1b32',
UnderlyingAsset.LDO,
ETH_FEATURES_WITH_FRANKFURT_GERMANY
[...ETH_FEATURES_WITH_FRANKFURT_GERMANY, CoinFeature.BULK_TRANSACTION]
),
erc20(
'5a44ae9e-c002-46cd-af8a-7e5fc91f3492',
Expand Down
4 changes: 4 additions & 0 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,10 @@ describe('Bulk Transaction Features', () => {
});

describe('ERC20 Bulk Transaction Feature', () => {
it('should mark LDO as spendable', () => {
coins.get('ldo').features.includes(CoinFeature.BULK_TRANSACTION).should.eql(true);
});

it('should have ERC20_BULK_TRANSACTION feature for appropriate coins', () => {
const erc20BulkTransactionCoins = [
'eth',
Expand Down
Loading