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
12 changes: 9 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,15 @@ SLACK_AUTH_TOKEN=
# Descriptive name for this bot, for logging purposes
SLACK_REBALANCE_BOT_NAME=

# ==============
# ===============
# ==== Balmy ====
# ==============
# ===============

BALMY_SLIPPAGE_PERCENTAGE=
LIFI_API_KEY=
LIFI_API_KEY=

# =============
# ==== DEX ====
# =============

DEX_SLIPPAGE_BPS=
22 changes: 21 additions & 1 deletion abis/DutchAuctionRebalancer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const DutchAuctionRebalancerAbi = [
const DutchAuctionRebalancerBaseAbi = [
{
"type": "constructor",
"inputs": [
Expand Down Expand Up @@ -321,5 +321,25 @@ export const DutchAuctionRebalancerAbi = [
"type": "error",
"name": "Unauthorized",
"inputs": []
},
] as const;

export const DutchAuctionRebalancerAbi = [
...DutchAuctionRebalancerBaseAbi,
{
"type": "error",
"name": "AuctionNotValid",
"inputs": []
},
{
"type": "error",
"name": "InvalidLeverageTokenStateAfterRebalance",
"inputs": [
{
"name": "leverageToken",
"type": "address",
"internalType": "address"
},
]
Comment thread
chad-js marked this conversation as resolved.
}
] as const;
Loading