circle-developer-controlled-wallets 7.0.0__py3-none-any.whl → 8.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of circle-developer-controlled-wallets might be problematic. Click here for more details.

Files changed (94) hide show
  1. circle/web3/developer_controlled_wallets/__init__.py +6 -1
  2. circle/web3/developer_controlled_wallets/api/signing_api.py +6 -6
  3. circle/web3/developer_controlled_wallets/api/transactions_api.py +165 -4
  4. circle/web3/developer_controlled_wallets/api_client.py +1 -1
  5. circle/web3/developer_controlled_wallets/configuration.py +6 -2
  6. circle/web3/developer_controlled_wallets/models/__init__.py +5 -0
  7. circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py +1 -0
  8. circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py +1 -0
  9. circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py +2 -1
  10. circle/web3/developer_controlled_wallets/models/bad_request_response.py +2 -1
  11. circle/web3/developer_controlled_wallets/models/balance.py +3 -2
  12. circle/web3/developer_controlled_wallets/models/balances.py +1 -0
  13. circle/web3/developer_controlled_wallets/models/balances_data.py +1 -0
  14. circle/web3/developer_controlled_wallets/models/base_screening_decision.py +3 -2
  15. circle/web3/developer_controlled_wallets/models/blockchain.py +1 -0
  16. circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py +1 -0
  17. circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py +2 -1
  18. circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py +2 -1
  19. circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py +1 -0
  20. circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +21 -15
  21. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +24 -18
  22. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request_blockchain.py +130 -0
  23. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py +1 -0
  24. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py +2 -1
  25. circle/web3/developer_controlled_wallets/models/create_wallet_request.py +7 -6
  26. circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py +3 -2
  27. circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer.py +1 -0
  28. circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer_request.py +11 -10
  29. circle/web3/developer_controlled_wallets/models/derive_wallet_request.py +1 -0
  30. circle/web3/developer_controlled_wallets/models/developer_wallet_set.py +4 -3
  31. circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py +5 -4
  32. circle/web3/developer_controlled_wallets/models/eoa_wallet.py +13 -12
  33. circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py +14 -13
  34. circle/web3/developer_controlled_wallets/models/error.py +2 -1
  35. circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +9 -8
  36. circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py +1 -0
  37. circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py +6 -5
  38. circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +9 -8
  39. circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response.py +95 -0
  40. circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response_data.py +101 -0
  41. circle/web3/developer_controlled_wallets/models/lowest_nonce_transaction_fee_info.py +97 -0
  42. circle/web3/developer_controlled_wallets/models/nft.py +5 -4
  43. circle/web3/developer_controlled_wallets/models/nfts.py +1 -0
  44. circle/web3/developer_controlled_wallets/models/nfts_data.py +1 -0
  45. circle/web3/developer_controlled_wallets/models/not_authorized_response.py +2 -1
  46. circle/web3/developer_controlled_wallets/models/not_found_response.py +2 -1
  47. circle/web3/developer_controlled_wallets/models/risk_signal.py +5 -4
  48. circle/web3/developer_controlled_wallets/models/sca_wallet.py +14 -13
  49. circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py +15 -14
  50. circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py +3 -2
  51. circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py +1 -0
  52. circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py +2 -1
  53. circle/web3/developer_controlled_wallets/models/sign_message_request.py +12 -6
  54. circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +12 -6
  55. circle/web3/developer_controlled_wallets/models/sign_transaction_response.py +1 -0
  56. circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +3 -2
  57. circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py +11 -5
  58. circle/web3/developer_controlled_wallets/models/signature_response.py +1 -0
  59. circle/web3/developer_controlled_wallets/models/signature_response_data.py +1 -0
  60. circle/web3/developer_controlled_wallets/models/token.py +10 -9
  61. circle/web3/developer_controlled_wallets/models/token_blockchain.py +1 -0
  62. circle/web3/developer_controlled_wallets/models/token_response.py +1 -0
  63. circle/web3/developer_controlled_wallets/models/token_response_data.py +1 -0
  64. circle/web3/developer_controlled_wallets/models/transaction.py +31 -30
  65. circle/web3/developer_controlled_wallets/models/transaction_fee.py +10 -7
  66. circle/web3/developer_controlled_wallets/models/transaction_response.py +1 -0
  67. circle/web3/developer_controlled_wallets/models/transaction_response_data.py +1 -0
  68. circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py +4 -3
  69. circle/web3/developer_controlled_wallets/models/transaction_state.py +1 -0
  70. circle/web3/developer_controlled_wallets/models/transactions.py +1 -0
  71. circle/web3/developer_controlled_wallets/models/transactions_data.py +1 -0
  72. circle/web3/developer_controlled_wallets/models/transfer_blockchain.py +53 -0
  73. circle/web3/developer_controlled_wallets/models/update_wallet_request.py +2 -1
  74. circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py +1 -0
  75. circle/web3/developer_controlled_wallets/models/validate_address.py +1 -0
  76. circle/web3/developer_controlled_wallets/models/validate_address_data.py +1 -0
  77. circle/web3/developer_controlled_wallets/models/validate_address_request.py +2 -1
  78. circle/web3/developer_controlled_wallets/models/wallet.py +12 -11
  79. circle/web3/developer_controlled_wallets/models/wallet_metadata.py +2 -1
  80. circle/web3/developer_controlled_wallets/models/wallet_response.py +1 -0
  81. circle/web3/developer_controlled_wallets/models/wallet_response_data.py +1 -0
  82. circle/web3/developer_controlled_wallets/models/wallet_set.py +3 -2
  83. circle/web3/developer_controlled_wallets/models/wallet_set_response.py +1 -0
  84. circle/web3/developer_controlled_wallets/models/wallet_set_response_data.py +1 -0
  85. circle/web3/developer_controlled_wallets/models/wallet_sets.py +1 -0
  86. circle/web3/developer_controlled_wallets/models/wallet_sets_data.py +1 -0
  87. circle/web3/developer_controlled_wallets/models/wallets.py +1 -0
  88. circle/web3/developer_controlled_wallets/models/wallets_data.py +1 -0
  89. circle/web3/developer_controlled_wallets/models/wallets_with_balances.py +1 -0
  90. circle/web3/developer_controlled_wallets/models/wallets_with_balances_data.py +1 -0
  91. {circle_developer_controlled_wallets-7.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/METADATA +3 -3
  92. {circle_developer_controlled_wallets-7.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/RECORD +94 -89
  93. {circle_developer_controlled_wallets-7.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/WHEEL +0 -0
  94. {circle_developer_controlled_wallets-7.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "7.0.0"
13
+ __version__ = "8.1.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -48,6 +48,7 @@ from circle.web3.developer_controlled_wallets.models.contract_execution_blockcha
48
48
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
49
49
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
50
50
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
51
+ from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request_blockchain import CreateTransferTransactionForDeveloperRequestBlockchain
51
52
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response import CreateTransferTransactionForDeveloperResponse
52
53
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response_data import CreateTransferTransactionForDeveloperResponseData
53
54
  from circle.web3.developer_controlled_wallets.models.create_wallet_request import CreateWalletRequest
@@ -67,6 +68,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
67
68
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
68
69
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
69
70
  from circle.web3.developer_controlled_wallets.models.fee_level import FeeLevel
71
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
72
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
73
+ from circle.web3.developer_controlled_wallets.models.lowest_nonce_transaction_fee_info import LowestNonceTransactionFeeInfo
70
74
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
71
75
  from circle.web3.developer_controlled_wallets.models.nft import Nft
72
76
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -106,6 +110,7 @@ from circle.web3.developer_controlled_wallets.models.transaction_state import Tr
106
110
  from circle.web3.developer_controlled_wallets.models.transaction_type import TransactionType
107
111
  from circle.web3.developer_controlled_wallets.models.transactions import Transactions
108
112
  from circle.web3.developer_controlled_wallets.models.transactions_data import TransactionsData
113
+ from circle.web3.developer_controlled_wallets.models.transfer_blockchain import TransferBlockchain
109
114
  from circle.web3.developer_controlled_wallets.models.update_wallet_request import UpdateWalletRequest
110
115
  from circle.web3.developer_controlled_wallets.models.update_wallet_set_request import UpdateWalletSetRequest
111
116
  from circle.web3.developer_controlled_wallets.models.validate_address import ValidateAddress
@@ -228,7 +228,7 @@ class SigningApi(object):
228
228
  def sign_message(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
229
229
  """Sign message # noqa: E501
230
230
 
231
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
231
+ Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/.\" You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
232
232
  This method makes a synchronous HTTP request by default. To make an
233
233
  asynchronous HTTP request, please pass async_req=True
234
234
 
@@ -260,7 +260,7 @@ class SigningApi(object):
260
260
  def sign_message_with_http_info(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
261
261
  """Sign message # noqa: E501
262
262
 
263
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
263
+ Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/.\" You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
264
264
  This method makes a synchronous HTTP request by default. To make an
265
265
  asynchronous HTTP request, please pass async_req=True
266
266
 
@@ -387,7 +387,7 @@ class SigningApi(object):
387
387
  def sign_transaction(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignTransactionResponse: # noqa: E501
388
388
  """Sign transaction # noqa: E501
389
389
 
390
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
390
+ Sign a transaction from a specific developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
391
391
  This method makes a synchronous HTTP request by default. To make an
392
392
  asynchronous HTTP request, please pass async_req=True
393
393
 
@@ -419,7 +419,7 @@ class SigningApi(object):
419
419
  def sign_transaction_with_http_info(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
420
420
  """Sign transaction # noqa: E501
421
421
 
422
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
422
+ Sign a transaction from a specific developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
423
423
  This method makes a synchronous HTTP request by default. To make an
424
424
  asynchronous HTTP request, please pass async_req=True
425
425
 
@@ -546,7 +546,7 @@ class SigningApi(object):
546
546
  def sign_typed_data(self, sign_typed_data_request : Annotated[SignTypedDataRequest, Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
547
547
  """Sign typed data # noqa: E501
548
548
 
549
- Sign the EIP-712 typed structured data from a specified developer-controlled wallet. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all Dapps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
549
+ | Sign the EIP-712 typed structured data from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all apps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum apps that support SCA: https://eip1271.io/. # noqa: E501
550
550
  This method makes a synchronous HTTP request by default. To make an
551
551
  asynchronous HTTP request, please pass async_req=True
552
552
 
@@ -578,7 +578,7 @@ class SigningApi(object):
578
578
  def sign_typed_data_with_http_info(self, sign_typed_data_request : Annotated[SignTypedDataRequest, Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
579
579
  """Sign typed data # noqa: E501
580
580
 
581
- Sign the EIP-712 typed structured data from a specified developer-controlled wallet. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all Dapps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
581
+ | Sign the EIP-712 typed structured data from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all apps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum apps that support SCA: https://eip1271.io/. # noqa: E501
582
582
  This method makes a synchronous HTTP request by default. To make an
583
583
  asynchronous HTTP request, please pass async_req=True
584
584
 
@@ -37,6 +37,7 @@ from circle.web3.developer_controlled_wallets.models.custody_type import Custody
37
37
  from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request import EstimateContractExecutionTransactionFeeRequest
38
38
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee import EstimateTransactionFee
39
39
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
40
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
40
41
  from circle.web3.developer_controlled_wallets.models.transaction_response import TransactionResponse
41
42
  from circle.web3.developer_controlled_wallets.models.transaction_state import TransactionState
42
43
  from circle.web3.developer_controlled_wallets.models.transaction_type import TransactionType
@@ -419,7 +420,7 @@ class TransactionsApi(object):
419
420
  def create_developer_transaction_contract_execution(self, create_contract_execution_transaction_for_developer_request : Annotated[CreateContractExecutionTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateContractExecutionTransactionForDeveloper: # noqa: E501
420
421
  """Create a contract execution transaction # noqa: E501
421
422
 
422
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. # noqa: E501
423
+ Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
423
424
  This method makes a synchronous HTTP request by default. To make an
424
425
  asynchronous HTTP request, please pass async_req=True
425
426
 
@@ -451,7 +452,7 @@ class TransactionsApi(object):
451
452
  def create_developer_transaction_contract_execution_with_http_info(self, create_contract_execution_transaction_for_developer_request : Annotated[CreateContractExecutionTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
452
453
  """Create a contract execution transaction # noqa: E501
453
454
 
454
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. # noqa: E501
455
+ Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
455
456
  This method makes a synchronous HTTP request by default. To make an
456
457
  asynchronous HTTP request, please pass async_req=True
457
458
 
@@ -579,7 +580,7 @@ class TransactionsApi(object):
579
580
  def create_developer_transaction_transfer(self, create_transfer_transaction_for_developer_request : Annotated[CreateTransferTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateTransferTransactionForDeveloperResponse: # noqa: E501
580
581
  """Create a transfer transaction # noqa: E501
581
582
 
582
- Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. # noqa: E501
583
+ Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
583
584
  This method makes a synchronous HTTP request by default. To make an
584
585
  asynchronous HTTP request, please pass async_req=True
585
586
 
@@ -611,7 +612,7 @@ class TransactionsApi(object):
611
612
  def create_developer_transaction_transfer_with_http_info(self, create_transfer_transaction_for_developer_request : Annotated[CreateTransferTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
612
613
  """Create a transfer transaction # noqa: E501
613
614
 
614
- Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. # noqa: E501
615
+ Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
615
616
  This method makes a synchronous HTTP request by default. To make an
616
617
  asynchronous HTTP request, please pass async_req=True
617
618
 
@@ -1360,6 +1361,166 @@ class TransactionsApi(object):
1360
1361
  collection_formats=_collection_formats,
1361
1362
  _request_auth=_params.get('_request_auth'))
1362
1363
 
1364
+ @auto_fill
1365
+ @validate_arguments
1366
+ def get_lowest_nonce_transaction(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, address : Annotated[Optional[StrictStr], Field(description="Filter by the blockchain address of the wallet.")] = None, wallet_id : Annotated[Optional[StrictStr], Field(description="Filter by the wallet ID")] = None, **kwargs) -> GetLowestNonceTransactionResponse: # noqa: E501
1367
+ """Get the lowest nonce pending transaction for a wallet # noqa: E501
1368
+
1369
+ For a nonce-supported blockchain, get the lowest nonce transaction that's in QUEUED or SENT or STUCK state for the provided wallet. # noqa: E501
1370
+ This method makes a synchronous HTTP request by default. To make an
1371
+ asynchronous HTTP request, please pass async_req=True
1372
+
1373
+ >>> thread = api.get_lowest_nonce_transaction(blockchain, address, wallet_id, async_req=True)
1374
+ >>> result = thread.get()
1375
+
1376
+ :param blockchain: Filter by blockchain.
1377
+ :type blockchain: Blockchain
1378
+ :param address: Filter by the blockchain address of the wallet.
1379
+ :type address: str
1380
+ :param wallet_id: Filter by the wallet ID
1381
+ :type wallet_id: str
1382
+ :param async_req: Whether to execute the request asynchronously.
1383
+ :type async_req: bool, optional
1384
+ :param _request_timeout: timeout setting for this request. If one
1385
+ number provided, it will be total request
1386
+ timeout. It can also be a pair (tuple) of
1387
+ (connection, read) timeouts.
1388
+ :return: Returns the result object.
1389
+ If the method is called asynchronously,
1390
+ returns the request thread.
1391
+ :rtype: GetLowestNonceTransactionResponse
1392
+ """
1393
+ kwargs['_return_http_data_only'] = True
1394
+ if '_preload_content' in kwargs:
1395
+ raise ValueError("Error! Please call the get_lowest_nonce_transaction_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data")
1396
+ return self.get_lowest_nonce_transaction_with_http_info(blockchain, address, wallet_id, **kwargs) # noqa: E501
1397
+
1398
+ @auto_fill
1399
+ @validate_arguments
1400
+ def get_lowest_nonce_transaction_with_http_info(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, address : Annotated[Optional[StrictStr], Field(description="Filter by the blockchain address of the wallet.")] = None, wallet_id : Annotated[Optional[StrictStr], Field(description="Filter by the wallet ID")] = None, **kwargs) -> ApiResponse: # noqa: E501
1401
+ """Get the lowest nonce pending transaction for a wallet # noqa: E501
1402
+
1403
+ For a nonce-supported blockchain, get the lowest nonce transaction that's in QUEUED or SENT or STUCK state for the provided wallet. # noqa: E501
1404
+ This method makes a synchronous HTTP request by default. To make an
1405
+ asynchronous HTTP request, please pass async_req=True
1406
+
1407
+ >>> thread = api.get_lowest_nonce_transaction_with_http_info(blockchain, address, wallet_id, async_req=True)
1408
+ >>> result = thread.get()
1409
+
1410
+ :param blockchain: Filter by blockchain.
1411
+ :type blockchain: Blockchain
1412
+ :param address: Filter by the blockchain address of the wallet.
1413
+ :type address: str
1414
+ :param wallet_id: Filter by the wallet ID
1415
+ :type wallet_id: str
1416
+ :param async_req: Whether to execute the request asynchronously.
1417
+ :type async_req: bool, optional
1418
+ :param _preload_content: if False, the ApiResponse.data will
1419
+ be set to none and raw_data will store the
1420
+ HTTP response body without reading/decoding.
1421
+ Default is True.
1422
+ :type _preload_content: bool, optional
1423
+ :param _return_http_data_only: response data instead of ApiResponse
1424
+ object with status code, headers, etc
1425
+ :type _return_http_data_only: bool, optional
1426
+ :param _request_timeout: timeout setting for this request. If one
1427
+ number provided, it will be total request
1428
+ timeout. It can also be a pair (tuple) of
1429
+ (connection, read) timeouts.
1430
+ :param _request_auth: set to override the auth_settings for an a single
1431
+ request; this effectively ignores the authentication
1432
+ in the spec for a single request.
1433
+ :type _request_auth: dict, optional
1434
+ :type _content_type: string, optional: force content-type for the request
1435
+ :return: Returns the result object.
1436
+ If the method is called asynchronously,
1437
+ returns the request thread.
1438
+ :rtype: tuple(GetLowestNonceTransactionResponse, status_code(int), headers(HTTPHeaderDict))
1439
+ """
1440
+
1441
+ _params = locals()
1442
+
1443
+ _all_params = [
1444
+ 'blockchain',
1445
+ 'address',
1446
+ 'wallet_id'
1447
+ ]
1448
+ _all_params.extend(
1449
+ [
1450
+ 'async_req',
1451
+ '_return_http_data_only',
1452
+ '_preload_content',
1453
+ '_request_timeout',
1454
+ '_request_auth',
1455
+ '_content_type',
1456
+ '_headers'
1457
+ ]
1458
+ )
1459
+
1460
+ # validate the arguments
1461
+ for _key, _val in _params['kwargs'].items():
1462
+ if _key not in _all_params:
1463
+ raise ApiTypeError(
1464
+ "Got an unexpected keyword argument '%s'"
1465
+ " to method get_lowest_nonce_transaction" % _key
1466
+ )
1467
+ _params[_key] = _val
1468
+ del _params['kwargs']
1469
+
1470
+ _collection_formats = {}
1471
+
1472
+ # process the path parameters
1473
+ _path_params = {}
1474
+
1475
+ # process the query parameters
1476
+ _query_params = []
1477
+ if _params.get('blockchain') is not None: # noqa: E501
1478
+ _query_params.append(('blockchain', _params['blockchain'].value))
1479
+
1480
+ if _params.get('address') is not None: # noqa: E501
1481
+ _query_params.append(('address', _params['address']))
1482
+
1483
+ if _params.get('wallet_id') is not None: # noqa: E501
1484
+ _query_params.append(('walletId', _params['wallet_id']))
1485
+
1486
+ # process the header parameters
1487
+ _header_params = dict(_params.get('_headers', {}))
1488
+ # process the form parameters
1489
+ _form_params = []
1490
+ _files = {}
1491
+ # process the body parameter
1492
+ _body_params = None
1493
+ # set the HTTP header `Accept`
1494
+ _header_params['Accept'] = self.api_client.select_header_accept(
1495
+ ['application/json']) # noqa: E501
1496
+
1497
+ # authentication setting
1498
+ _auth_settings = ['BearerAuth'] # noqa: E501
1499
+
1500
+ _response_types_map = {
1501
+ '200': "GetLowestNonceTransactionResponse",
1502
+ '204': None,
1503
+ '400': "Error",
1504
+ '401': "NotAuthorizedResponse",
1505
+ }
1506
+
1507
+ return self.api_client.call_api(
1508
+ '/v1/w3s/transactions/lowestNonceTransaction', 'GET',
1509
+ _path_params,
1510
+ _query_params,
1511
+ _header_params,
1512
+ body=_body_params,
1513
+ post_params=_form_params,
1514
+ files=_files,
1515
+ response_types_map=_response_types_map,
1516
+ auth_settings=_auth_settings,
1517
+ async_req=_params.get('async_req'),
1518
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1519
+ _preload_content=_params.get('_preload_content', True),
1520
+ _request_timeout=_params.get('_request_timeout'),
1521
+ collection_formats=_collection_formats,
1522
+ _request_auth=_params.get('_request_auth'))
1523
+
1363
1524
  @auto_fill
1364
1525
  @validate_arguments
1365
1526
  def get_transaction(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> TransactionResponse: # noqa: E501
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 7.0.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 8.1.0'
81
81
  self.client_side_validation = configuration.client_side_validation
82
82
 
83
83
  def __enter__(self):
@@ -68,7 +68,7 @@ class Configuration(object):
68
68
  ):
69
69
  """Constructor
70
70
  """
71
- self._base_path = "https://api.circle.com" if host is None else host
71
+ self._base_path = "https://api-sandbox.circle.com" if host is None else host
72
72
  """Default Base url
73
73
  """
74
74
  self.server_index = 0 if server_index is None and host is None else server_index
@@ -383,7 +383,7 @@ class Configuration(object):
383
383
  "OS: {env}\n"\
384
384
  "Python Version: {pyversion}\n"\
385
385
  "Version of the API: 1.0\n"\
386
- "SDK Package Version: 7.0.0".\
386
+ "SDK Package Version: 8.1.0".\
387
387
  format(env=sys.platform, pyversion=sys.version)
388
388
 
389
389
  def get_host_settings(self):
@@ -392,6 +392,10 @@ class Configuration(object):
392
392
  :return: An array of host settings
393
393
  """
394
394
  return [
395
+ {
396
+ 'url': "https://api-sandbox.circle.com",
397
+ 'description': "No description provided",
398
+ },
395
399
  {
396
400
  'url': "https://api.circle.com",
397
401
  'description': "No description provided",
@@ -27,6 +27,7 @@ from circle.web3.developer_controlled_wallets.models.contract_execution_blockcha
27
27
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
28
28
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
29
29
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
30
+ from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request_blockchain import CreateTransferTransactionForDeveloperRequestBlockchain
30
31
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response import CreateTransferTransactionForDeveloperResponse
31
32
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response_data import CreateTransferTransactionForDeveloperResponseData
32
33
  from circle.web3.developer_controlled_wallets.models.create_wallet_request import CreateWalletRequest
@@ -46,6 +47,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
46
47
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
47
48
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
48
49
  from circle.web3.developer_controlled_wallets.models.fee_level import FeeLevel
50
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
51
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
52
+ from circle.web3.developer_controlled_wallets.models.lowest_nonce_transaction_fee_info import LowestNonceTransactionFeeInfo
49
53
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
50
54
  from circle.web3.developer_controlled_wallets.models.nft import Nft
51
55
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -85,6 +89,7 @@ from circle.web3.developer_controlled_wallets.models.transaction_state import Tr
85
89
  from circle.web3.developer_controlled_wallets.models.transaction_type import TransactionType
86
90
  from circle.web3.developer_controlled_wallets.models.transactions import Transactions
87
91
  from circle.web3.developer_controlled_wallets.models.transactions_data import TransactionsData
92
+ from circle.web3.developer_controlled_wallets.models.transfer_blockchain import TransferBlockchain
88
93
  from circle.web3.developer_controlled_wallets.models.update_wallet_request import UpdateWalletRequest
89
94
  from circle.web3.developer_controlled_wallets.models.update_wallet_set_request import UpdateWalletSetRequest
90
95
  from circle.web3.developer_controlled_wallets.models.validate_address import ValidateAddress
@@ -88,6 +88,7 @@ class AccelerateTransactionForDeveloper(BaseModel):
88
88
 
89
89
  _obj = AccelerateTransactionForDeveloper.parse_obj({
90
90
  "data": AccelerateTransactionForDeveloperData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
91
92
  })
92
93
  return _obj
93
94
 
@@ -84,6 +84,7 @@ class AccelerateTransactionForDeveloperData(BaseModel):
84
84
 
85
85
  _obj = AccelerateTransactionForDeveloperData.parse_obj({
86
86
  "id": obj.get("id")
87
+
87
88
  })
88
89
  return _obj
89
90
 
@@ -85,7 +85,8 @@ class AccelerateTransactionForDeveloperRequest(BaseModel):
85
85
 
86
86
  _obj = AccelerateTransactionForDeveloperRequest.parse_obj({
87
87
  "idempotency_key": obj.get("idempotencyKey"),
88
- "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
88
+ "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
89
+
89
90
  })
90
91
  return _obj
91
92
 
@@ -85,7 +85,8 @@ class BadRequestResponse(BaseModel):
85
85
 
86
86
  _obj = BadRequestResponse.parse_obj({
87
87
  "code": obj.get("code"),
88
- "message": obj.get("message")
88
+ "message": obj.get("message")
89
+
89
90
  })
90
91
  return _obj
91
92
 
@@ -90,8 +90,9 @@ class Balance(BaseModel):
90
90
 
91
91
  _obj = Balance.parse_obj({
92
92
  "amount": obj.get("amount"),
93
- "token": Token.from_dict(obj.get("token")) if obj.get("token") is not None else None,
94
- "update_date": obj.get("updateDate")
93
+ "token": Token.from_dict(obj.get("token")) if obj.get("token") is not None else None,
94
+ "update_date": obj.get("updateDate")
95
+
95
96
  })
96
97
  return _obj
97
98
 
@@ -88,6 +88,7 @@ class Balances(BaseModel):
88
88
 
89
89
  _obj = Balances.parse_obj({
90
90
  "data": BalancesData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
91
92
  })
92
93
  return _obj
93
94
 
@@ -92,6 +92,7 @@ class BalancesData(BaseModel):
92
92
 
93
93
  _obj = BalancesData.parse_obj({
94
94
  "token_balances": [Balance.from_dict(_item) for _item in obj.get("tokenBalances")] if obj.get("tokenBalances") is not None else None
95
+
95
96
  })
96
97
  return _obj
97
98
 
@@ -87,8 +87,9 @@ class BaseScreeningDecision(BaseModel):
87
87
 
88
88
  _obj = BaseScreeningDecision.parse_obj({
89
89
  "rule_name": obj.get("ruleName"),
90
- "actions": obj.get("actions"),
91
- "screening_date": obj.get("screeningDate")
90
+ "actions": obj.get("actions"),
91
+ "screening_date": obj.get("screeningDate")
92
+
92
93
  })
93
94
  return _obj
94
95
 
@@ -47,6 +47,7 @@ class Blockchain(str, Enum):
47
47
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
48
48
  APTOS = 'APTOS'
49
49
  APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
50
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
50
51
 
51
52
  @classmethod
52
53
  def from_json(cls, json_str: str) -> Blockchain:
@@ -88,6 +88,7 @@ class CancelTransactionForDeveloper(BaseModel):
88
88
 
89
89
  _obj = CancelTransactionForDeveloper.parse_obj({
90
90
  "data": CreateTransferTransactionForDeveloperResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
91
92
  })
92
93
  return _obj
93
94
 
@@ -85,7 +85,8 @@ class CancelTransactionForDeveloperRequest(BaseModel):
85
85
 
86
86
  _obj = CancelTransactionForDeveloperRequest.parse_obj({
87
87
  "idempotency_key": obj.get("idempotencyKey"),
88
- "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
88
+ "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
89
+
89
90
  })
90
91
  return _obj
91
92
 
@@ -19,7 +19,7 @@ from aenum import Enum, no_arg
19
19
 
20
20
  class ContractExecutionBlockchain(str, Enum):
21
21
  """
22
- Blockchain associated with the transaction. Required along with `sourceAddress` if you don't provide `walletId`. The `blockchain` and `walletId` fields are mutually exclusive.
22
+ Blockchain associated with the contract execution transaction. Required when either of `walletAddress` or `sourceAddress` is provided. The `blockchain` and `walletId` fields are mutually exclusive.
23
23
  """
24
24
 
25
25
  """
@@ -39,6 +39,7 @@ class ContractExecutionBlockchain(str, Enum):
39
39
  BASE_MINUS_SEPOLIA = 'BASE-SEPOLIA'
40
40
  OP = 'OP'
41
41
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
42
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
42
43
 
43
44
  @classmethod
44
45
  def from_json(cls, json_str: str) -> ContractExecutionBlockchain:
@@ -88,6 +88,7 @@ class CreateContractExecutionTransactionForDeveloper(BaseModel):
88
88
 
89
89
  _obj = CreateContractExecutionTransactionForDeveloper.parse_obj({
90
90
  "data": CreateTransferTransactionForDeveloperResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
91
92
  })
92
93
  return _obj
93
94
 
@@ -22,6 +22,7 @@ from pydantic.json import pydantic_encoder
22
22
  from typing import List, Optional, Union
23
23
  from pydantic import BaseModel, Field, StrictBytes, StrictStr, conlist
24
24
  from circle.web3.developer_controlled_wallets.models.abi_parameters_inner import AbiParametersInner
25
+ from circle.web3.developer_controlled_wallets.models.contract_execution_blockchain import ContractExecutionBlockchain
25
26
  from circle.web3.developer_controlled_wallets.models.fee_level import FeeLevel
26
27
 
27
28
  class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
@@ -41,8 +42,10 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
41
42
  max_fee: Optional[StrictStr] = Field(None, alias="maxFee", description="For blockchains with EIP-1559 support, the maximum price per unit of gas (see `gasLimit`), in gwei. Requires `priorityFee`, and `gasLimit` to be present. Cannot be used with `feeLevel` or `gasPrice`. Estimates for this fee can be obtained through the [`POST /transactions/transfer/estimateFee`](/api-reference/w3s/developer-controlled-wallets/create-transfer-estimate-fee) API. ")
42
43
  priority_fee: Optional[StrictStr] = Field(None, alias="priorityFee", description="For blockchains with EIP-1559 support, the “tip”, in gwei, to add to the base fee as an incentive for validators. Please note that the `maxFee` and `gasLimit` parameters are required alongside the `priorityFee`. The `feeLevel` and `gasPrice` parameters cannot be used with the `priorityFee`. Estimations for this fee can be obtained through the [`POST /transactions/transfer/estimateFee`](/api-reference/w3s/developer-controlled-wallets/create-transfer-estimate-fee) API. ")
43
44
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Optional reference or description used to identify the transaction.")
44
- wallet_id: StrictStr = Field(..., alias="walletId", description="Unique system generated identifier of the wallet. Required when `sourceAddress` and `blockchain` are not provided. Mutually exclusive with `sourceAddress` and `blockchain`. For contract deploys this wallet ID will be used as the source. ")
45
- __properties = ["idempotencyKey", "abiFunctionSignature", "abiParameters", "callData", "amount", "contractAddress", "entitySecretCiphertext", "feeLevel", "gasLimit", "gasPrice", "maxFee", "priorityFee", "refId", "walletId"]
45
+ wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="Unique system generated identifier of the wallet. For contract deploys this wallet ID will be used as the source. ")
46
+ blockchain: Optional[ContractExecutionBlockchain] = None
47
+ wallet_address: Optional[StrictStr] = Field(None, alias="walletAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
48
+ __properties = ["idempotencyKey", "abiFunctionSignature", "abiParameters", "callData", "amount", "contractAddress", "entitySecretCiphertext", "feeLevel", "gasLimit", "gasPrice", "maxFee", "priorityFee", "refId", "walletId", "blockchain", "walletAddress"]
46
49
 
47
50
  def __init__(self, **kwargs):
48
51
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -106,19 +109,22 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
106
109
 
107
110
  _obj = CreateContractExecutionTransactionForDeveloperRequest.parse_obj({
108
111
  "idempotency_key": obj.get("idempotencyKey"),
109
- "abi_function_signature": obj.get("abiFunctionSignature"),
110
- "abi_parameters": [AbiParametersInner.from_dict(_item) for _item in obj.get("abiParameters")] if obj.get("abiParameters") is not None else None,
111
- "call_data": obj.get("callData"),
112
- "amount": obj.get("amount"),
113
- "contract_address": obj.get("contractAddress"),
114
- "entity_secret_ciphertext": obj.get("entitySecretCiphertext"),
115
- "fee_level": obj.get("feeLevel"),
116
- "gas_limit": obj.get("gasLimit"),
117
- "gas_price": obj.get("gasPrice"),
118
- "max_fee": obj.get("maxFee"),
119
- "priority_fee": obj.get("priorityFee"),
120
- "ref_id": obj.get("refId"),
121
- "wallet_id": obj.get("walletId")
112
+ "abi_function_signature": obj.get("abiFunctionSignature"),
113
+ "abi_parameters": [AbiParametersInner.from_dict(_item) for _item in obj.get("abiParameters")] if obj.get("abiParameters") is not None else None,
114
+ "call_data": obj.get("callData"),
115
+ "amount": obj.get("amount"),
116
+ "contract_address": obj.get("contractAddress"),
117
+ "entity_secret_ciphertext": obj.get("entitySecretCiphertext"),
118
+ "fee_level": obj.get("feeLevel"),
119
+ "gas_limit": obj.get("gasLimit"),
120
+ "gas_price": obj.get("gasPrice"),
121
+ "max_fee": obj.get("maxFee"),
122
+ "priority_fee": obj.get("priorityFee"),
123
+ "ref_id": obj.get("refId"),
124
+ "wallet_id": obj.get("walletId"),
125
+ "blockchain": obj.get("blockchain"),
126
+ "wallet_address": obj.get("walletAddress")
127
+
122
128
  })
123
129
  return _obj
124
130