Skip to content

Commit d8f9ec9

Browse files
authored
Merge pull request #5453 from EdgeApp/matthew/kiln-eth-maxunstake
Force max unstake on Kiln ETH positions
2 parents a11d45e + 9c6a1c3 commit d8f9ec9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased (develop)
44

55
- added: Add Abstract ETH Layer 2 support
6+
- changed: Force max unstake on Kiln ETH positions
67

78
## 4.22.0 (staging)
89

src/plugins/stake-plugins/generic/pluginInfo/ethereumKilnPool.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const kilnPolicyConfig: Array<StakePolicyConfig<EthereumPooledKilnAdapterConfig>
2121
pluginId: 'holesky',
2222
rpcProviderUrls: [`https://ethereum-holesky-rpc.publicnode.com`, 'https://1rpc.io/holesky']
2323
},
24+
mustMaxUnstake: true, // TODO: This can be removed once engines have LP token balances
2425
hideUnstakeAndClaimAction: true,
2526
stakeAssets: [{ pluginId: 'holesky', currencyCode: 'ETH' }],
2627
rewardAssets: [{ pluginId: 'holesky', currencyCode: 'ETH' }]
@@ -43,6 +44,7 @@ const kilnPolicyConfig: Array<StakePolicyConfig<EthereumPooledKilnAdapterConfig>
4344
pluginId: 'ethereum',
4445
rpcProviderUrls: [`https://ethereum-rpc.publicnode.com`, 'https://1rpc.io/eth']
4546
},
47+
mustMaxUnstake: true, // TODO: This can be removed once engines have LP token balances
4648
hideUnstakeAndClaimAction: true,
4749
stakeAssets: [{ pluginId: 'ethereum', currencyCode: 'ETH' }],
4850
rewardAssets: [{ pluginId: 'ethereum', currencyCode: 'ETH' }]

0 commit comments

Comments
 (0)