-
Notifications
You must be signed in to change notification settings - Fork 87
/
DanceFight.sol
34 lines (31 loc) · 917 Bytes
/
DanceFight.sol
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
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "./GenericRaffle.sol";
/* solhint-disable max-states-count */
contract DanceFight is GenericRaffle {
uint256 public constant MAX_SUPPLY = 3_130;
function initialize(
string memory baseURI,
string memory _name,
string memory _symbol,
address payable _sandOwner,
address _signAddress,
address _trustedForwarder,
address _registry,
address _operatorFiltererSubscription,
bool _operatorFiltererSubscriptionSubscribe
) public initializer {
__GenericRaffle_init(
baseURI,
_name,
_symbol,
_sandOwner,
_signAddress,
_trustedForwarder,
_registry,
_operatorFiltererSubscription,
_operatorFiltererSubscriptionSubscribe,
MAX_SUPPLY
);
}
}