1
- /* Update:
2
- * Move Amounts to decimals
3
- */
4
- /* Discussion:
5
- * https://gitcoin.co/grants/154/decentralized-flexible-organization
6
- */
7
- /* Description:
8
- * DFOHub - Voting Token Creation.
9
- * This specific DFOHub functionality is called during the new DFO creation.
10
- * It initialized 3 DFO delegates cloning them from the original DFOHub ones: Voting Token, State Holder, Well-Known Functionalities Manager.
11
- * Complessive Voting Token amount is split between DFOHub (calculating the correct amount through the proper functionality) and the survey proposer.
12
- * After its initialization, StateHolder is filled with a standard index page and an additional voting token amount (if any).
13
- */
1
+ // SPDX-License-Identifier: BSD
14
2
pragma solidity ^ 0.6.0 ;
15
3
4
+ /**
5
+ * @title Voting Token Creation.
6
+ * @dev This specific DFOHub functionality is called during the new DFO creation.
7
+ * It initialized 3 DFO delegates cloning them from the original DFOHub ones: Voting Token, State Holder,
8
+ * Well-Known Functionalities Manager.
9
+ * Voting Token amount is split between DFOHub (calculating the correct amount through
10
+ * the proper functionality) and the survey proposer.
11
+ * After its initialization, StateHolder is filled with a standard index page and an additional voting
12
+ * token amount (if any).
13
+ */
16
14
contract DeployVotingToken {
17
-
18
15
string private _metadataLink;
19
16
20
17
constructor (string memory metadataLink ) public {
21
18
_metadataLink = metadataLink;
22
19
}
23
20
24
- function getMetadataLink () public view returns (string memory ) {
21
+ function getMetadataLink () public view returns (string memory ) {
25
22
return _metadataLink;
26
23
}
27
24
28
- function onStart (address , address ) public {
29
- }
30
-
31
- function onStop (address ) public {
32
- }
33
-
25
+ function onStart (address , address ) public {}
26
+
27
+ function onStop (address ) public {}
28
+
29
+ /**
30
+ * @dev Deploy the voting token
31
+ * @param sender Address of the Caller
32
+ * @param
33
+ * @param name Name of the voting token
34
+ * @param symbol Ticker Symbol for the voting token
35
+ * @param totalSupply Total Supply of the voting token
36
+ * @param additionalAmount Amount of token to pay as generation fee
37
+ * @return votingToken Address of the newly deployed voting token
38
+ * @return stateHolderAddress Address of the StateHolder
39
+ * @return mvdFunctionalityModelsManagerAddress Address of the FunctionalityModelsManager
40
+ */
34
41
function deployVotingToken (
35
- address sender , uint256 ,
36
- string memory name , string memory symbol , uint256 totalSupply , uint256 additionalAmount )
37
- public returns (address votingToken , address stateHolderAddress , address mvdFunctionalityModelsManagerAddress ) {
38
-
42
+ address sender ,
43
+ uint256 ,
44
+ string memory name ,
45
+ string memory symbol ,
46
+ uint256 totalSupply ,
47
+ uint256 additionalAmount
48
+ )
49
+ public
50
+ returns (
51
+ address votingToken ,
52
+ address stateHolderAddress ,
53
+ address mvdFunctionalityModelsManagerAddress
54
+ )
55
+ {
39
56
IMVDProxy proxy = IMVDProxy (msg .sender );
40
57
41
- IVotingToken token = IVotingToken (votingToken = clone (proxy.getToken ()));
58
+ IVotingToken token = IVotingToken (
59
+ votingToken = clone (proxy.getToken ())
60
+ );
42
61
token.init (name, symbol, 18 , totalSupply);
43
- token.transfer (proxy.getMVDWalletAddress (), additionalAmount + toUint256 (proxy.read ("getVotingTokenAmountForHub " , abi.encode (token.totalSupply ()))));
62
+ token.transfer (
63
+ proxy.getMVDWalletAddress (),
64
+ additionalAmount +
65
+ toUint256 (
66
+ proxy.read (
67
+ "getVotingTokenAmountForHub " ,
68
+ abi.encode (token.totalSupply ())
69
+ )
70
+ )
71
+ );
44
72
token.transfer (sender, token.balanceOf (address (this )));
45
73
46
- IStateHolder (stateHolderAddress = clone (proxy.getStateHolderAddress ())).init ();
47
-
48
- mvdFunctionalityModelsManagerAddress = proxy.getMVDFunctionalityModelsManagerAddress ();
49
-
50
- proxy.emitEvent ("DFOCollateralContractsCloned(address_indexed,address,address,address) " , abi.encodePacked (sender), bytes ("" ), abi.encode (votingToken, stateHolderAddress, mvdFunctionalityModelsManagerAddress));
74
+ IStateHolder (stateHolderAddress = clone (proxy.getStateHolderAddress ()))
75
+ .init ();
76
+
77
+ mvdFunctionalityModelsManagerAddress = proxy
78
+ .getMVDFunctionalityModelsManagerAddress ();
79
+
80
+ proxy.emitEvent (
81
+ "DFOCollateralContractsCloned(address_indexed,address,address,address) " ,
82
+ abi.encodePacked (sender),
83
+ bytes ("" ),
84
+ abi.encode (
85
+ votingToken,
86
+ stateHolderAddress,
87
+ mvdFunctionalityModelsManagerAddress
88
+ )
89
+ );
51
90
}
52
91
53
- function clone (address original ) private returns (address copy ) {
92
+ function clone (address original ) private returns (address copy ) {
54
93
assembly {
55
- mstore (0 , or (0x5880730000000000000000000000000000000000000000803b80938091923cF3 , mul (original, 0x1000000000000000000 )))
94
+ mstore (
95
+ 0 ,
96
+ or (
97
+ 0x5880730000000000000000000000000000000000000000803b80938091923cF3 ,
98
+ mul (original, 0x1000000000000000000 )
99
+ )
100
+ )
56
101
copy := create (0 , 0 , 32 )
57
- switch extcodesize (copy) case 0 { invalid () }
102
+ switch extcodesize (copy)
103
+ case 0 {
104
+ invalid ()
105
+ }
58
106
}
59
107
}
60
108
61
- function toUint256 (bytes memory bs ) private pure returns (uint256 x ) {
62
- if (bs.length >= 32 ) {
109
+ function toUint256 (bytes memory bs ) private pure returns (uint256 x ) {
110
+ if (bs.length >= 32 ) {
63
111
assembly {
64
112
x := mload (add (bs, add (0x20 , 0 )))
65
113
}
@@ -68,22 +116,52 @@ contract DeployVotingToken {
68
116
}
69
117
70
118
interface IVotingToken {
71
- function init (string calldata name , string calldata symbol , uint256 decimals , uint256 totalSupply ) external ;
119
+ function init (
120
+ string calldata name ,
121
+ string calldata symbol ,
122
+ uint256 decimals ,
123
+ uint256 totalSupply
124
+ ) external ;
125
+
72
126
function totalSupply () external view returns (uint256 );
127
+
73
128
function balanceOf (address account ) external view returns (uint256 );
74
- function transfer (address recipient , uint256 amount ) external returns (bool );
129
+
130
+ function transfer (address recipient , uint256 amount )
131
+ external
132
+ returns (bool );
75
133
}
76
134
77
135
interface IStateHolder {
78
136
function init () external ;
79
137
}
80
138
81
139
interface IMVDProxy {
82
- function getMVDWalletAddress () external view returns (address );
83
- function getToken () external view returns (address );
84
- function getStateHolderAddress () external view returns (address );
85
- function getMVDFunctionalityModelsManagerAddress () external view returns (address );
86
- function getMVDFunctionalitiesManagerAddress () external view returns (address );
87
- function read (string calldata codeName , bytes calldata data ) external view returns (bytes memory returnData );
88
- function emitEvent (string calldata eventSignature , bytes calldata firstIndex , bytes calldata secondIndex , bytes calldata data ) external ;
89
- }
140
+ function getMVDWalletAddress () external view returns (address );
141
+
142
+ function getToken () external view returns (address );
143
+
144
+ function getStateHolderAddress () external view returns (address );
145
+
146
+ function getMVDFunctionalityModelsManagerAddress ()
147
+ external
148
+ view
149
+ returns (address );
150
+
151
+ function getMVDFunctionalitiesManagerAddress ()
152
+ external
153
+ view
154
+ returns (address );
155
+
156
+ function read (string calldata codeName , bytes calldata data )
157
+ external
158
+ view
159
+ returns (bytes memory returnData );
160
+
161
+ function emitEvent (
162
+ string calldata eventSignature ,
163
+ bytes calldata firstIndex ,
164
+ bytes calldata secondIndex ,
165
+ bytes calldata data
166
+ ) external ;
167
+ }
0 commit comments