File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,9 @@ def _compile(
43
43
def from_abi_dict (cls , abi , name = "<anonymous contract>" , filename = None ):
44
44
raise NotImplementedError ("ZksyncDeployer does not support loading from ABI" )
45
45
46
- def deploy (self , * args , contract_name : Optional [str ]= None , ** kwargs ) -> ZksyncContract :
46
+ def deploy (
47
+ self , * args , contract_name : Optional [str ] = None , ** kwargs
48
+ ) -> ZksyncContract :
47
49
return ZksyncContract (
48
50
self .zkvyper_data ,
49
51
contract_name or self ._name ,
@@ -59,7 +61,9 @@ def at(self, address: Address | str) -> ZksyncContract:
59
61
"""
60
62
return self .deploy (override_address = Address (address ), skip_initcode = True )
61
63
62
- def deploy_as_blueprint (self , contract_name : Optional [str ]= None , ** kwargs ) -> ZksyncContract :
64
+ def deploy_as_blueprint (
65
+ self , contract_name : Optional [str ] = None , ** kwargs
66
+ ) -> ZksyncContract :
63
67
"""
64
68
In zkSync, any contract can be used as a blueprint.
65
69
The only difference here is that we don't need to run the constructor.
You can’t perform that action at this time.
0 commit comments