SettlementΒΆ
SIP-37 in the Achernar release introduced Fee Reclamation into Synthetix. This means, following all exchanges into a synth, a waiting period must expire before subsequent exchanges out of that synth can be processed.
Once the waiting period expires, settlement is performed automatically during subsequent exchanges. However, subsequent transfer
attempts will always fail if there is not sufficient balance after settlement, hence transferAndSettle
must be used.
Transfer and settle
It was decided during SIP-37 to not automatically settle within transfers. The reason being is that to settle within a transfer may break ERC20 conventions because the amount provided as a parameter might not be the amount emitted via Transfer
due to fees owing or owed.
Settlement APIΒΆ
There are a number of different ways to settle synths explicitly:
- via
Synthetix.settle(bytes32 synth)
where the user ismsg.sender
- via
Exchanger.settle(address user, bytes32 synth)
where theuser
is provided (andmsg.sender
pays the gas) - via
Synth<key>.transferAndSettle(address to, uint value)
where the usermsg.sender
- via
Synth<key>.transferFromAndSettle()
where theuser
is provided (andmsg.sender
has been ERC20 approved totransferFrom
)
1. User settles for themselvesΒΆ
Destination contract (address): ProxyERC20
Target contract (ABI): Synthetix
Note: Synthetix uses a proxy system. The ABI of the underlying Synthetix
ProxyERC20
contract you need isSynthetix
. Learn more about how proxies work by visiting the overview page.
MethodsΒΆ
Examples on MainnetΒΆ
2. Anyone can settle on behalf of a userΒΆ
Contract (address & ABI): Exchanger
(this address is subject to change in subsequent releases)
MethodsΒΆ
Examples on MainnetΒΆ
3. User transfers and settlesΒΆ
Destination contract (address): Proxy<key>
where key
is the synth key (e.g. sUSD
, iETH
, etc)
Target contract (ABI): Synth<key
MethodsΒΆ
Examples on MainnetΒΆ
4. Approved contract transfers and settles for a userΒΆ
Destination contract (address): Proxy<key>
where key
is the synth key (e.g. sUSD
, iETH
, etc)
Target contract (ABI): Synth<key
MethodsΒΆ
Events EmittedΒΆ
If fees owing on src
(fee reclamation)ΒΆ
name | emitted on | address from |
address to |
uint value |
---|---|---|---|---|
Transfer |
Proxy<src> |
msg.sender (or user ) |
0x0 |
feesOwing |
name | emitted on | address account |
uint value |
---|---|---|---|
Burned |
Proxy<src> |
msg.sender (or user ) |
feesOwing |
Else if fees owed on src
(fee rebate)ΒΆ
name | emitted on | address from |
address to |
uint value |
---|---|---|---|---|
Transfer |
Proxy<src> |
0x0 |
msg.sender (or user ) |
feesOwed |
name | emitted on | address account |
uint value |
---|---|---|---|
Issued |
Proxy<src> |
msg.sender (or user ) |
feesOwed |
And following thoseΒΆ
name | emitted on | uint cachedDebt |
---|---|---|
DebtCacheUpdated |
DebtCache |
New cachedDebt in the system (see SIP-91) |
name | emitted on | address account |
bytes32 src |
uint amount |
bytes32 dest |
uint reclaim |
uint rebate |
uint srcRoundIdAtPeriodEnd |
uint destRoundIdAtPeriodEnd |
uint exchangeTimestamp |
---|---|---|---|---|---|---|---|---|---|---|
ExchangeEntrySettled |
Exchanger |
msg.sender (or user ) |
src |
fromAmount |
dest |
reclaimedAmount if any |
rebateAmount if any |
the roundId for rate of src synth at waiting period expiry |
the roundId for rate of dest synth at waiting period expiry |
the timestamp of the exchange |
Code SnippetsΒΆ
Settlement
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|