Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased (develop)

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

## 4.22.0 (staging)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const kilnPolicyConfig: Array<StakePolicyConfig<EthereumPooledKilnAdapterConfig>
pluginId: 'holesky',
rpcProviderUrls: [`https://ethereum-holesky-rpc.publicnode.com`, 'https://1rpc.io/holesky']
},
mustMaxUnstake: true, // TODO: This can be removed once engines have LP token balances
hideUnstakeAndClaimAction: true,
stakeAssets: [{ pluginId: 'holesky', currencyCode: 'ETH' }],
rewardAssets: [{ pluginId: 'holesky', currencyCode: 'ETH' }]
Expand All @@ -43,6 +44,7 @@ const kilnPolicyConfig: Array<StakePolicyConfig<EthereumPooledKilnAdapterConfig>
pluginId: 'ethereum',
rpcProviderUrls: [`https://ethereum-rpc.publicnode.com`, 'https://1rpc.io/eth']
},
mustMaxUnstake: true, // TODO: This can be removed once engines have LP token balances
hideUnstakeAndClaimAction: true,
stakeAssets: [{ pluginId: 'ethereum', currencyCode: 'ETH' }],
rewardAssets: [{ pluginId: 'ethereum', currencyCode: 'ETH' }]
Expand Down
Loading