IOfferingEvents

Git Source

Domain-specific events for Offering diamonds

Events

OfferingCreated

event OfferingCreated(
    address indexed entity,
    address indexed asset,
    address indexed paymentCurrency,
    uint256 paymentDecimals,
    uint256 pricePerToken,
    uint256 minInvestment,
    uint256 investmentDeadline,
    uint256 targetAmount,
    uint256 maxAmount,
    string baseURI
);

OfferingClosed

event OfferingClosed();

OfferingCancelled

event OfferingCancelled();

OfferingPricePerTokenUpdated

event OfferingPricePerTokenUpdated(uint256 newPrice);

OfferingMinInvestmentUpdated

event OfferingMinInvestmentUpdated(uint256 newMin);

OfferingInvestmentDeadlineUpdated

event OfferingInvestmentDeadlineUpdated(uint256 newDeadline);

OfferingTargetAmountUpdated

event OfferingTargetAmountUpdated(uint256 newTarget);

OfferingMaxAmountUpdated

event OfferingMaxAmountUpdated(uint256 newMax);

OfferingBaseURIUpdated

event OfferingBaseURIUpdated(string newURI);

DocumentRegistryUpdated

event DocumentRegistryUpdated(address indexed oldRegistry, address indexed newRegistry);

OfferingOperatorRoleRequested

event OfferingOperatorRoleRequested(address indexed offering, address indexed asset, address indexed authority);

Last updated

Was this helpful?