예제 #1
0
 def Contract(self,
              source_code,
              bytecode=None,
              address=None,
              abi=contract.Contract.SOPHIA):
     return contract.Contract(source_code,
                              client=self,
                              bytecode=bytecode,
                              address=address,
                              abi=abi)
예제 #2
0
 def Contract(self):
     return contract.Contract(client=self)
예제 #3
0
 def Contract(self, **kwargs):
     return contract.Contract(client=self, **kwargs)