@@ -8,9 +8,12 @@ import {IRuleEngine} from "CMTAT/interfaces/engine/IRuleEngine.sol";
88import {RuleBlacklist} from "src/rules/validation/deployment/RuleBlacklist.sol " ;
99
1010contract DeployCMTATWithBlacklist is Script {
11- function deploy (address admin , address forwarder ) public returns (CMTATStandardStandalone token , RuleBlacklist rule ) {
12- ICMTATConstructor.ERC20Attributes memory erc20Attributes =
13- ICMTATConstructor.ERC20Attributes ("CMTA Token " , "CMTAT " , 0 );
11+ function deploy (address admin , address forwarder )
12+ public
13+ returns (CMTATStandardStandalone token , RuleBlacklist rule )
14+ {
15+ ICMTATConstructor.ERC20Attributes memory
16+ erc20Attributes = ICMTATConstructor.ERC20Attributes ("CMTA Token " , "CMTAT " , 0 );
1417 ICMTATConstructor.ExtraInformationAttributes memory extraInformationAttributes =
1518 ICMTATConstructor.ExtraInformationAttributes (
1619 "CMTAT_ISIN " ,
@@ -21,7 +24,8 @@ contract DeployCMTATWithBlacklist is Script {
2124 );
2225 ICMTATConstructor.Engine memory engines = ICMTATConstructor.Engine (IRuleEngine (address (0 )));
2326
24- token = new CMTATStandardStandalone (forwarder, address (this ), erc20Attributes, extraInformationAttributes, engines);
27+ token =
28+ new CMTATStandardStandalone (forwarder, address (this ), erc20Attributes, extraInformationAttributes, engines);
2529 rule = new RuleBlacklist (admin, address (0 ));
2630
2731 token.setRuleEngine (IRuleEngine (address (rule)));
0 commit comments