Skip to main content

GnoDaiDistributor

Git Source

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

NameTypeDescription
sDaiTokenaddressThe address of the sDaiToken contract
vaultsRegistryaddressThe address of the VaultsRegistry contract
savingsXDaiAdapteraddressThe address of the SavingsXDaiAdapter contract
merkleDistributoraddress

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;