Skip to content

Commit

Permalink
Removing constructor params
Browse files Browse the repository at this point in the history
  • Loading branch information
phanigovindaraju committed May 23, 2024
1 parent c72fd8e commit b2cd048
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions fireblocks_sdk/tokenization_api_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,9 @@ class EVMTokenCreateParams(BaseDictClass):
def __init__(
self,
contract_id: str,
constructor_params: Optional[List[ParameterWithValue]] = None,
deploy_function_params: Optional[List[ParameterWithValue]] = None
):
self.contract_id = contract_id
self.constructor_params = constructor_params
self.deploy_function_params = deploy_function_params


Expand Down Expand Up @@ -88,12 +86,10 @@ def __init__(
self,
asset_id: str,
vault_account_id: str,
constructor_parameters: Optional[List[ParameterWithValue]] = None,
deploy_function_params: Optional[List[ParameterWithValue]] = None
):
self.asset_id = asset_id
self.vault_account_id = vault_account_id
self.constructor_parameters = constructor_parameters
self.deploy_function_params = deploy_function_params


Expand Down

0 comments on commit b2cd048

Please sign in to comment.