-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathERCDEFI.sol
62 lines (50 loc) · 1.93 KB
/
ERCDEFI.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// SPDX-License-Identifier: MIT
/*
███████╗███╗ ██╗███████╗████████╗██╗███████╗
██╔════╝████╗ ██║██╔════╝╚══██╔══╝██║██╔════╝
█████╗ ██╔██╗ ██║█████╗ ██║ ██║███████╗
██╔══╝ ██║╚██╗██║██╔══╝ ██║ ██║╚════██║
███████╗██║ ╚████║██║ ██║ ██║███████║
╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═╝╚══════╝
name : Enftis NFT Factory Token
symbol : ENFTIS
tokenTypes : ERC1155, ERC165, ERC2968
maxSupply : uint256.max()
solhcVersion: 0.8.20
version : 1.0.0
released : 25 March 2023
developers : @enftix
license : MIT License
networks : ethereum, polygon, binance
░░░█▀▄░▄▀▄░█▒█▒██▀░█▒░░█▒░░▄▀▄░█▒█░▄▀▀
▒░▒█▄▀░▀▄▀░▀▄▀░█▄▄▒█▄▄▒█▄▄░▀▄▀░▀▄█▒▄██
*/
/**
* Created on 2023-05-05 14:36
* @summary:
* @author: dovellous
* @repository: https://github.com/dovellous/com-enftis
* @website: https://enftis.com
*
*/
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;
import "./base/JWLMCF/IJWLX.sol";
import "./base/JWLMCF/JWLMCFBase.sol";
contract ERCDEFI is JWLMCFBase {
constructor(
IJWLX _jwlr,
address _dev,
uint256 _jwlrPerBlock,
uint256 _startBlock,
uint256 _multiplier,
uint256 _allocPoint
) payable JWLMCFBase(
_jwlr,
_dev,
_jwlrPerBlock,
_startBlock,
_multiplier,
_allocPoint
) {}
}