IntegralDelay
Verified contract
Proxy
Active on
Ethereum with 8,456 txns
Unified storage
Map
Table
Raw
Constants and immutables
21
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 15 additional slots
-
variable spans 1 additional slot
Balances ($2,722.57)
Native
Value
$236.59
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
ETH | Native | 0.065165 | $3,630.63 |
$236.59 | |
WETH | ERC-20 | 0.432424 | $3,633.00 |
$1,571 | |
USDC | ERC-20 | 900.07074 | $0.999156 |
$899.31 | |
LINK | ERC-20 | 0.554658 | $18.31 |
$10.16 | |
USDT | ERC-20 | 5.517028 | $1.001 |
$5.52 |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 19048463 | 10 months ago | | | 0 | 0.0053588553 | |
| 19048436 | 10 months ago | | | 0.015756489 | 0.0037869574 | |
| 18970289 | a year ago | | | 0 | 0.0056358778 | |
| 18970262 | a year ago | | | 0.015861447 | 0.0049821073 | |
| 18850754 | a year ago | | | 0 | 0.0067007730 | |
| 18850727 | a year ago | | | 0.015976989 | 0.0048692692 | |
| 18763900 | a year ago | | | 0 | 0.013775979 | |
| 18763873 | a year ago | | | 0.020286 | 0.0097662857 | |
| 18750493 | a year ago | | | 0 | 0.010078471 | |
| 18750482 | a year ago | | | 0 | 0.0096207664 |
ABI
ABI objects
Getter at block 21281864 ETHER_TRANSFER_CALL_COST() view returns (uint256) ORDER_BASE_COST() view returns (uint256) PAIR_TRANSFER_COST() view returns (uint256) REFUND_END_COST() view returns (uint256)
ORDER_CANCEL_TIME() view returns (uint256)
86400
botExecuteTime() view returns (uint256)
1200
delay() view returns (uint256)
300
factory() view returns (address)
0x673662e97b05e001816c380ba5a628d2e29f55d1
gasPrice() view returns (uint256)
35414000000
gasPriceInertia() view returns (uint256)
20000000
lastProcessedOrderId() view returns (uint256)
4064
maxGasLimit() view returns (uint256)
5000000
maxGasPriceImpact() view returns (uint256)
1000000
newestOrderId() view returns (uint256)
4064
owner() view returns (address)
0xff030beb0335432e156a0ee55bd87850eaad228e
weth() view returns (address)
0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Read-only
getBuyDisabled(address pair) view returns (bool)
getBuyOrder(uint256 orderId) view returns (struct OrdersBuyOrder order)
getDepositDisabled(address pair) view returns (bool)
getDepositOrder(uint256 orderId) view returns (struct OrdersDepositOrder order)
getOrder(uint256 orderId) view returns (uint8 orderType, uint256 validAfterTimestamp)
getOrderStatus(uint256 orderId) view returns (uint8)
getSellDisabled(address pair) view returns (bool)
getSellOrder(uint256 orderId) view returns (struct OrdersSellOrder order)
getTransferGasCost(address token) view returns (uint256 gasCost)
getWithdrawDisabled(address pair) view returns (bool)
getWithdrawOrder(uint256 orderId) view returns (struct OrdersWithdrawOrder order)
isBot(address) view returns (bool)
isOrderCanceled(uint256 orderId) view returns (bool)
totalShares(address token) view returns (uint256)
uint32ToGasPrice(uint32 gasPrice32) pure returns (uint256 gasPrice)
State-modifying
Events _executeBuy(struct OrdersBuyOrder buyOrder)
_executeDeposit(struct OrdersDepositOrder depositOrder)
_executeSell(struct OrdersSellOrder sellOrder)
_executeWithdraw(struct OrdersWithdrawOrder withdrawOrder)
_refundLiquidity(address pair, address to, uint256 liquidity)
_refundToken(address token, address to, uint256 share, bool unwrap)
_refundTokens(address to, address token0, uint256 share0, address token1, uint256 share1, bool unwrap)
buy(struct OrdersBuyParams buyParams) payable returns (uint256 orderId)
cancelOrder(uint256 orderId)
deposit(struct OrdersDepositParams depositParams) payable returns (uint256 orderId)
execute(uint256 n)
retryRefund(uint256 orderId)
sell(struct OrdersSellParams sellParams) payable returns (uint256 orderId)
setBot(address _bot, bool _isBot)
setDelay(uint256 _delay)
setGasPriceInertia(uint256 _gasPriceInertia)
setMaxGasLimit(uint256 _maxGasLimit)
setMaxGasPriceImpact(uint256 _maxGasPriceImpact)
setOrderDisabled(address pair, uint8 orderType, bool disabled)
setOwner(address _owner)
setTransferGasCost(address token, uint256 gasCost)
withdraw(struct OrdersWithdrawParams withdrawParams) payable returns (uint256 orderId)
BotSet(address bot, bool isBot)
DelaySet(uint256 delay)
EthRefund(address indexed to, bool indexed success, uint256 value)
Execute(address sender, uint256 n)
GasPriceInertiaSet(uint256 gasPriceInertia)
MaxGasLimitSet(uint256 maxGasLimit)
MaxGasPriceImpactSet(uint256 maxGasPriceImpact)
OrderDisabled(address pair, uint8 orderType, bool disabled)
OrderExecuted(uint256 indexed id, bool indexed success, bytes data, uint256 gasSpent, uint256 ethRefunded)
OwnerSet(address owner)
RefundFailed(address indexed to, address indexed token, uint256 amount, bytes data)
TransferGasCostSet(address token, uint256 gasCost)
UnwrapFailed(address to, uint256 amount)
BuyEnqueued(uint256 indexed orderId, uint128 validAfterTimestamp, uint256 gasPrice)
DepositEnqueued(uint256 indexed orderId, uint128 validAfterTimestamp, uint256 gasPrice)
GasPriceInertiaSet(uint256 gasPriceInertia)
MaxGasLimitSet(uint256 maxGasLimit)
MaxGasPriceImpactSet(uint256 maxGasPriceImpact)
SellEnqueued(uint256 indexed orderId, uint128 validAfterTimestamp, uint256 gasPrice)
TransferGasCostSet(address token, uint256 gasCost)
WithdrawEnqueued(uint256 indexed orderId, uint128 validAfterTimestamp, uint256 gasPrice)
constructor(address _factory, address _weth, address _bot)
receive()
This contract contains no error objects.