Metronome Synth Debt Token
Verified contract
Implementation
Active on
Ethereum with 1 txns
Storage
Map
Table
Raw
Constants and immutables
7
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
0x3364…7f46
-
variable spans 48 additional slots
0x8b4f…31c7
Balances ($0.00)
No balances found for "Metronome Synth Debt Token"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 16784986 | 2 years ago | | | 0 | 0.015640584 |
ABI
ABI objects
Getter at block 21226124
SECONDS_PER_YEAR() view returns (uint256)
31557600
VERSION() view returns (string)
1.0.0
debtIndex() view returns (uint256)
1000000000000000000
decimals() view returns (uint8)
18
governor() view returns (address _governor)
0xd1de3f9cd4ae2f23da941a67ca4c739f8dd9af33
interestRate() view returns (uint256)
10000000000000000
interestRatePerSecond() view returns (uint256)
316880878
isActive() view returns (bool)
true
lastTimestampAccrued() view returns (uint256)
1678296107
maxTotalSupply() view returns (uint256)
1250000000000000000000
name() view returns (string)
Metronome Synth Debt Token
pool() view returns (address)
0x3364f53cb866762aef66deef2a6b1a17c1f17f46
symbol() view returns (string)
msToken-Debt-1
syntheticToken() view returns (address)
0x8b4f8ad3801b4015dea6da1d36f063cbf4e231c7
totalSupply() view returns (uint256)
0
Read-only
allowance(address, address) pure returns (uint256)
balanceOf(address account_) view returns (uint256)
quoteIssueIn(uint256 amountToIssue_) view returns (uint256 _amount, uint256 _fee)
quoteIssueOut(uint256 amount_) view returns (uint256 _amountToIssue, uint256 _fee)
quoteRepayIn(uint256 amountToRepay_) view returns (uint256 _amount, uint256 _fee)
quoteRepayOut(uint256 amount_) view returns (uint256 _amountToRepay, uint256 _fee)
State-modifying
Events accrueInterest()
approve(address, uint256) returns (bool)
burn(address from_, uint256 amount_)
initialize(string name_, string symbol_, address pool_, address syntheticToken_, uint256 interestRate_, uint256 maxTotalSupply_)
issue(uint256 amount_, address to_) returns (uint256 _issued, uint256 _fee)
repay(address onBehalfOf_, uint256 amount_) returns (uint256 _repaid, uint256 _fee)
repayAll(address onBehalfOf_) returns (uint256 _repaid, uint256 _fee)
sweep(address token_, address to_, uint256 amount_)
toggleIsActive()
transfer(address, uint256) returns (bool)
transferFrom(address, address, uint256) returns (bool)
updateInterestRate(uint256 newInterestRate_)
updateMaxTotalSupply(uint256 newMaxTotalSupply_)
Approval(address indexed owner, address indexed spender, uint256 value)
DebtRepaid(address indexed payer, address indexed account, uint256 amount, uint256 repaid, uint256 fee)
DebtTokenActiveUpdated(bool newActive)
InterestRateUpdated(uint256 oldInterestRate, uint256 newInterestRate)
MaxTotalSupplyUpdated(uint256 oldMaxTotalSupply, uint256 newMaxTotalSupply)
SyntheticTokenIssued(address indexed account, address indexed to, uint256 amount, uint256 issued, uint256 fee)
Transfer(address indexed from, address indexed to, uint256 value)
This contract contains no constructor objects.
fallback()
receive()
AllowanceNotSupported()
AmountIsZero()
ApprovalNotSupported()
BurnAmountExceedsBalance()
BurnFromNullAddress()
DebtLowerThanTheFloor()
DebtTokenInactive()
FallbackIsNotAllowed()
IsShutdown()
MintToNullAddress()
NameIsNull()
NewValueIsSameAsCurrent()
NotEnoughCollateral()
PoolAddressIsNull()
PoolIsNull()
ReceiveIsNotAllowed()
RemainingDebtIsLowerThanTheFloor()
SenderIsNotGovernor()
SenderIsNotPool()
SurpassMaxDebtSupply()
SymbolIsNull()
SyntheticDoesNotExist()
SyntheticIsInactive()
SyntheticIsNull()
TransferNotSupported()