Depot: Exchanging ETH
for sUSD
ΒΆ
The Depot is a place to deposit any excess sUSD
for others to purchase it with ETH
. On testnets it also allows you to exchange testnet ETH
for SNX
.
Notice
The Depot also supports exchanging SNX
for ETH
via any SNX
the contract holds, however it will send all proceeds to the contract's fundsWalet
, so
it's only used on testnets to allow developers to purchase testnet SNX
(see testnets)
Note: while the depositing of sUSD can be done in Mintr, the exchanging of ETH for sUSD has no corresponding controls in the Synthetix dApps (it is however used in third parties aggregators).
Exchange ETH for sUSD APIΒΆ
ContractΒΆ
Destination contract (address & ABI): Depot
MethodsΒΆ
exchangeEtherForSynths()
- (sending
ETH
to the contract)
Events EmittedΒΆ
On a successful transaction, the following events occur:
For each deposit paid through, the following two events are emitted:
name | emitted on | address fromAddress |
address toAddress |
uint fromETHAmount |
uint toAmount |
uint depositIndex |
---|---|---|---|---|---|---|
ClearedDeposit |
Depot |
msg.sender |
the current depositor in the queue | the amount of ETH the toAddress has been paid |
the amont of sUSD the msg.sender will received |
the depositIndex that was accessed in this exchange |
name | emitted on | address from |
address to |
uint value |
---|---|---|---|---|
Transfer |
ProxysUSD |
Depot |
msg.sender |
an amount of sUSD |
Following all deposits paid though, emits the following event:
name | emitted on | string fromCurrency |
uint fromAmount |
string toCurrency |
uint toAmount |
---|---|---|---|---|---|
Exchange |
Depot |
ETH |
fromAmount of ETH sent by msg.sender |
sUSD |
toAmount of sUSD the sender was sent |
Example Transactions on MainnetΒΆ
Depot.exchangeEtherForSynths()
(with a single deposit accessed)
- sending ETH to
Depot
(with two deposits accessed)
Code SnippetsΒΆ
Exchanging ETH for sUSD
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 35 36 |
|
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 |
|