GnoDaiDistributor
Inherits: ReentrancyGuard, IGnoDaiDistributor
Author: StakeWise
Converts xDAI to sDAI and distributes it to the users using Merkle Distributor on Gnosis chain
State Variables
_sDaiToken
address private immutable _sDaiToken;
_vaultsRegistry
IVaultsRegistry private immutable _vaultsRegistry;
_savingsXDaiAdapter
ISavingsXDaiAdapter private immutable _savingsXDaiAdapter;
_merkleDistributor
IMerkleDistributor private immutable _merkleDistributor;
Functions
constructor
Constructor
constructor(address sDaiToken, address vaultsRegistry, address savingsXDaiAdapter, address merkleDistributor)
ReentrancyGuard();
Parameters
Name | Type | Description |
---|---|---|
sDaiToken | address | The address of the sDaiToken contract |
vaultsRegistry | address | The address of the VaultsRegistry contract |
savingsXDaiAdapter | address | The address of the SavingsXDaiAdapter contract |
merkleDistributor | address |
distributeSDai
Distribute sDAI to the users. Can be called only by the vaults. Must transfer xDAI together with the call.
function distributeSDai() external payable nonReentrant;