circle-developer-controlled-wallets 8.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 (23) hide show
  1. circle/web3/developer_controlled_wallets/__init__.py +4 -1
  2. circle/web3/developer_controlled_wallets/api/signing_api.py +12 -12
  3. circle/web3/developer_controlled_wallets/api/transactions_api.py +169 -8
  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 +3 -0
  7. circle/web3/developer_controlled_wallets/models/blockchain.py +1 -0
  8. circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py +1 -0
  9. circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +1 -3
  10. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +1 -3
  11. circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response.py +95 -0
  12. circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response_data.py +101 -0
  13. circle/web3/developer_controlled_wallets/models/lowest_nonce_transaction_fee_info.py +97 -0
  14. circle/web3/developer_controlled_wallets/models/sign_message_request.py +0 -2
  15. circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +0 -2
  16. circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py +0 -2
  17. circle/web3/developer_controlled_wallets/models/token_blockchain.py +1 -0
  18. circle/web3/developer_controlled_wallets/models/transaction_fee.py +1 -1
  19. circle/web3/developer_controlled_wallets/models/transfer_blockchain.py +1 -0
  20. {circle_developer_controlled_wallets-8.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/METADATA +3 -3
  21. {circle_developer_controlled_wallets-8.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/RECORD +23 -20
  22. {circle_developer_controlled_wallets-8.0.0.dist-info → circle_developer_controlled_wallets-8.1.0.dist-info}/WHEEL +0 -0
  23. {circle_developer_controlled_wallets-8.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__ = "8.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
@@ -68,6 +68,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
68
68
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
69
69
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
70
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
71
74
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
72
75
  from circle.web3.developer_controlled_wallets.models.nft import Nft
73
76
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -225,10 +225,10 @@ class SigningApi(object):
225
225
 
226
226
  @auto_fill
227
227
  @validate_arguments
228
- def sign_message(self, sign_message_request : Annotated[Optional[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
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
 
@@ -257,10 +257,10 @@ class SigningApi(object):
257
257
 
258
258
  @auto_fill
259
259
  @validate_arguments
260
- def sign_message_with_http_info(self, sign_message_request : Annotated[Optional[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
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
 
@@ -384,10 +384,10 @@ class SigningApi(object):
384
384
 
385
385
  @auto_fill
386
386
  @validate_arguments
387
- def sign_transaction(self, sign_transaction_request : Annotated[Optional[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
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
 
@@ -416,10 +416,10 @@ class SigningApi(object):
416
416
 
417
417
  @auto_fill
418
418
  @validate_arguments
419
- def sign_transaction_with_http_info(self, sign_transaction_request : Annotated[Optional[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
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
 
@@ -543,10 +543,10 @@ class SigningApi(object):
543
543
 
544
544
  @auto_fill
545
545
  @validate_arguments
546
- def sign_typed_data(self, sign_typed_data_request : Annotated[Optional[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
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
 
@@ -575,10 +575,10 @@ class SigningApi(object):
575
575
 
576
576
  @auto_fill
577
577
  @validate_arguments
578
- def sign_typed_data_with_http_info(self, sign_typed_data_request : Annotated[Optional[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
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
@@ -416,10 +417,10 @@ class TransactionsApi(object):
416
417
 
417
418
  @auto_fill
418
419
  @validate_arguments
419
- def create_developer_transaction_contract_execution(self, create_contract_execution_transaction_for_developer_request : Annotated[Optional[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
+ 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
 
@@ -448,10 +449,10 @@ class TransactionsApi(object):
448
449
 
449
450
  @auto_fill
450
451
  @validate_arguments
451
- def create_developer_transaction_contract_execution_with_http_info(self, create_contract_execution_transaction_for_developer_request : Annotated[Optional[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
+ 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
 
@@ -576,10 +577,10 @@ class TransactionsApi(object):
576
577
 
577
578
  @auto_fill
578
579
  @validate_arguments
579
- def create_developer_transaction_transfer(self, create_transfer_transaction_for_developer_request : Annotated[Optional[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
+ 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
 
@@ -608,10 +609,10 @@ class TransactionsApi(object):
608
609
 
609
610
  @auto_fill
610
611
  @validate_arguments
611
- def create_developer_transaction_transfer_with_http_info(self, create_transfer_transaction_for_developer_request : Annotated[Optional[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
+ 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 / 8.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: 8.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",
@@ -47,6 +47,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
47
47
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
48
48
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
49
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
50
53
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
51
54
  from circle.web3.developer_controlled_wallets.models.nft import Nft
52
55
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -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:
@@ -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:
@@ -82,7 +82,6 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
82
82
  exclude={
83
83
  },
84
84
  exclude_none=True)
85
- # Handle anyOf models where allVars is empty - use vars instead
86
85
  # override the default output from pydantic by calling `to_dict()` of each item in abi_parameters (list)
87
86
  _items = []
88
87
  if self.abi_parameters:
@@ -109,10 +108,9 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
109
108
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
110
109
 
111
110
  _obj = CreateContractExecutionTransactionForDeveloperRequest.parse_obj({
112
-
113
111
  "idempotency_key": obj.get("idempotencyKey"),
114
112
  "abi_function_signature": obj.get("abiFunctionSignature"),
115
- "abi_parameters": obj.get("abiParameters"),
113
+ "abi_parameters": [AbiParametersInner.from_dict(_item) for _item in obj.get("abiParameters")] if obj.get("abiParameters") is not None else None,
116
114
  "call_data": obj.get("callData"),
117
115
  "amount": obj.get("amount"),
118
116
  "contract_address": obj.get("contractAddress"),
@@ -81,7 +81,6 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
81
81
  exclude={
82
82
  },
83
83
  exclude_none=True)
84
- # Handle anyOf models where allVars is empty - use vars instead
85
84
  # override the default output from pydantic by calling `to_dict()` of blockchain
86
85
  if self.blockchain:
87
86
  _dict['blockchain'] = self.blockchain.to_dict()
@@ -104,7 +103,6 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
104
103
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
105
104
 
106
105
  _obj = CreateTransferTransactionForDeveloperRequest.parse_obj({
107
-
108
106
  "idempotency_key": obj.get("idempotencyKey"),
109
107
  "amounts": obj.get("amounts"),
110
108
  "destination_address": obj.get("destinationAddress"),
@@ -118,7 +116,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
118
116
  "ref_id": obj.get("refId"),
119
117
  "token_id": obj.get("tokenId"),
120
118
  "token_address": obj.get("tokenAddress"),
121
- "blockchain": obj.get("blockchain"),
119
+ "blockchain": CreateTransferTransactionForDeveloperRequestBlockchain.from_dict(obj.get("blockchain")) if obj.get("blockchain") is not None else None,
122
120
  "wallet_id": obj.get("walletId"),
123
121
  "wallet_address": obj.get("walletAddress")
124
122
 
@@ -0,0 +1,95 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ The version of the OpenAPI document: 1.0
5
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
6
+
7
+ Do not edit the class manually.
8
+ """ # noqa: E501
9
+
10
+
11
+ from __future__ import annotations
12
+ import pprint
13
+ import re # noqa: F401
14
+ import json
15
+
16
+ # CUSTOMIZED: Added pydantic_encoder import (not in default OpenAPI Generator template)
17
+ # pydantic_encoder is needed to address serialization issues with datetime and other non-primitive fields,
18
+ # which are not handled by the default JSON encoder.
19
+ from pydantic.json import pydantic_encoder
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field
24
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
25
+
26
+ class GetLowestNonceTransactionResponse(BaseModel):
27
+ """
28
+ GetLowestNonceTransactionResponse
29
+ """
30
+ data: GetLowestNonceTransactionResponseData = Field(...)
31
+ __properties = ["data"]
32
+
33
+ def __init__(self, **kwargs):
34
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
35
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
36
+
37
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
38
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
39
+ super().__init__(**kwargs)
40
+
41
+
42
+ class Config:
43
+ """Pydantic configuration"""
44
+ allow_population_by_field_name = True
45
+ validate_assignment = True
46
+
47
+ def to_str(self) -> str:
48
+ """Returns the string representation of the model using alias"""
49
+ return pprint.pformat(self.dict(by_alias=True))
50
+
51
+ def to_json(self) -> str:
52
+ """Return JSON string of the model (handles datetime/UUID/Decimal/Enum, etc.)"""
53
+ # CUSTOMIZED: Added default=pydantic_encoder to handle complex types (datetime, UUID, Enum, etc.)
54
+ # This differs from the default OpenAPI Generator template which doesn't handle these types properly
55
+ return json.dumps(self.to_dict(), default=pydantic_encoder)
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> GetLowestNonceTransactionResponse:
59
+ """Create an instance of GetLowestNonceTransactionResponse from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self):
63
+ """Returns the dictionary representation of the model using alias"""
64
+ _dict = self.dict(by_alias=True,
65
+ exclude={
66
+ },
67
+ exclude_none=True)
68
+ # override the default output from pydantic by calling `to_dict()` of data
69
+ if self.data:
70
+ _dict['data'] = self.data.to_dict()
71
+ return _dict
72
+
73
+ @classmethod
74
+ def from_dict(cls, obj: dict) -> GetLowestNonceTransactionResponse:
75
+ """Create an instance of GetLowestNonceTransactionResponse from a dict"""
76
+ if obj is None:
77
+ return None
78
+
79
+ if not isinstance(obj, dict):
80
+ return GetLowestNonceTransactionResponse.parse_obj(obj)
81
+
82
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
83
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
84
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
85
+
86
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
87
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
88
+
89
+ _obj = GetLowestNonceTransactionResponse.parse_obj({
90
+ "data": GetLowestNonceTransactionResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
92
+ })
93
+ return _obj
94
+
95
+
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ The version of the OpenAPI document: 1.0
5
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
6
+
7
+ Do not edit the class manually.
8
+ """ # noqa: E501
9
+
10
+
11
+ from __future__ import annotations
12
+ import pprint
13
+ import re # noqa: F401
14
+ import json
15
+
16
+ # CUSTOMIZED: Added pydantic_encoder import (not in default OpenAPI Generator template)
17
+ # pydantic_encoder is needed to address serialization issues with datetime and other non-primitive fields,
18
+ # which are not handled by the default JSON encoder.
19
+ from pydantic.json import pydantic_encoder
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field
24
+ from circle.web3.developer_controlled_wallets.models.lowest_nonce_transaction_fee_info import LowestNonceTransactionFeeInfo
25
+ from circle.web3.developer_controlled_wallets.models.transaction import Transaction
26
+
27
+ class GetLowestNonceTransactionResponseData(BaseModel):
28
+ """
29
+ GetLowestNonceTransactionResponseData
30
+ """
31
+ transaction: Transaction = Field(...)
32
+ fee_info: LowestNonceTransactionFeeInfo = Field(..., alias="feeInfo")
33
+ __properties = ["transaction", "feeInfo"]
34
+
35
+ def __init__(self, **kwargs):
36
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
37
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
38
+
39
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
40
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
41
+ super().__init__(**kwargs)
42
+
43
+
44
+ class Config:
45
+ """Pydantic configuration"""
46
+ allow_population_by_field_name = True
47
+ validate_assignment = True
48
+
49
+ def to_str(self) -> str:
50
+ """Returns the string representation of the model using alias"""
51
+ return pprint.pformat(self.dict(by_alias=True))
52
+
53
+ def to_json(self) -> str:
54
+ """Return JSON string of the model (handles datetime/UUID/Decimal/Enum, etc.)"""
55
+ # CUSTOMIZED: Added default=pydantic_encoder to handle complex types (datetime, UUID, Enum, etc.)
56
+ # This differs from the default OpenAPI Generator template which doesn't handle these types properly
57
+ return json.dumps(self.to_dict(), default=pydantic_encoder)
58
+
59
+ @classmethod
60
+ def from_json(cls, json_str: str) -> GetLowestNonceTransactionResponseData:
61
+ """Create an instance of GetLowestNonceTransactionResponseData from a JSON string"""
62
+ return cls.from_dict(json.loads(json_str))
63
+
64
+ def to_dict(self):
65
+ """Returns the dictionary representation of the model using alias"""
66
+ _dict = self.dict(by_alias=True,
67
+ exclude={
68
+ },
69
+ exclude_none=True)
70
+ # override the default output from pydantic by calling `to_dict()` of transaction
71
+ if self.transaction:
72
+ _dict['transaction'] = self.transaction.to_dict()
73
+ # override the default output from pydantic by calling `to_dict()` of fee_info
74
+ if self.fee_info:
75
+ _dict['feeInfo'] = self.fee_info.to_dict()
76
+ return _dict
77
+
78
+ @classmethod
79
+ def from_dict(cls, obj: dict) -> GetLowestNonceTransactionResponseData:
80
+ """Create an instance of GetLowestNonceTransactionResponseData from a dict"""
81
+ if obj is None:
82
+ return None
83
+
84
+ if not isinstance(obj, dict):
85
+ return GetLowestNonceTransactionResponseData.parse_obj(obj)
86
+
87
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
88
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
89
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
90
+
91
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
92
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
93
+
94
+ _obj = GetLowestNonceTransactionResponseData.parse_obj({
95
+ "transaction": Transaction.from_dict(obj.get("transaction")) if obj.get("transaction") is not None else None,
96
+ "fee_info": LowestNonceTransactionFeeInfo.from_dict(obj.get("feeInfo")) if obj.get("feeInfo") is not None else None
97
+
98
+ })
99
+ return _obj
100
+
101
+
@@ -0,0 +1,97 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ The version of the OpenAPI document: 1.0
5
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
6
+
7
+ Do not edit the class manually.
8
+ """ # noqa: E501
9
+
10
+
11
+ from __future__ import annotations
12
+ import pprint
13
+ import re # noqa: F401
14
+ import json
15
+
16
+ # CUSTOMIZED: Added pydantic_encoder import (not in default OpenAPI Generator template)
17
+ # pydantic_encoder is needed to address serialization issues with datetime and other non-primitive fields,
18
+ # which are not handled by the default JSON encoder.
19
+ from pydantic.json import pydantic_encoder
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field, StrictStr
24
+ from circle.web3.developer_controlled_wallets.models.transaction_fee import TransactionFee
25
+
26
+ class LowestNonceTransactionFeeInfo(BaseModel):
27
+ """
28
+ LowestNonceTransactionFeeInfo
29
+ """
30
+ new_high_estimated_fee: TransactionFee = Field(..., alias="newHighEstimatedFee")
31
+ fee_difference_amount: StrictStr = Field(..., alias="feeDifferenceAmount", description="Difference between new HIGH estimation and transaction's existing estimated fee, in native token amount unit, for example ETH")
32
+ __properties = ["newHighEstimatedFee", "feeDifferenceAmount"]
33
+
34
+ def __init__(self, **kwargs):
35
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
36
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
37
+
38
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
39
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
40
+ super().__init__(**kwargs)
41
+
42
+
43
+ class Config:
44
+ """Pydantic configuration"""
45
+ allow_population_by_field_name = True
46
+ validate_assignment = True
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Return JSON string of the model (handles datetime/UUID/Decimal/Enum, etc.)"""
54
+ # CUSTOMIZED: Added default=pydantic_encoder to handle complex types (datetime, UUID, Enum, etc.)
55
+ # This differs from the default OpenAPI Generator template which doesn't handle these types properly
56
+ return json.dumps(self.to_dict(), default=pydantic_encoder)
57
+
58
+ @classmethod
59
+ def from_json(cls, json_str: str) -> LowestNonceTransactionFeeInfo:
60
+ """Create an instance of LowestNonceTransactionFeeInfo from a JSON string"""
61
+ return cls.from_dict(json.loads(json_str))
62
+
63
+ def to_dict(self):
64
+ """Returns the dictionary representation of the model using alias"""
65
+ _dict = self.dict(by_alias=True,
66
+ exclude={
67
+ },
68
+ exclude_none=True)
69
+ # override the default output from pydantic by calling `to_dict()` of new_high_estimated_fee
70
+ if self.new_high_estimated_fee:
71
+ _dict['newHighEstimatedFee'] = self.new_high_estimated_fee.to_dict()
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: dict) -> LowestNonceTransactionFeeInfo:
76
+ """Create an instance of LowestNonceTransactionFeeInfo from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return LowestNonceTransactionFeeInfo.parse_obj(obj)
82
+
83
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
84
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
85
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
86
+
87
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
88
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
89
+
90
+ _obj = LowestNonceTransactionFeeInfo.parse_obj({
91
+ "new_high_estimated_fee": TransactionFee.from_dict(obj.get("newHighEstimatedFee")) if obj.get("newHighEstimatedFee") is not None else None,
92
+ "fee_difference_amount": obj.get("feeDifferenceAmount")
93
+
94
+ })
95
+ return _obj
96
+
97
+
@@ -71,7 +71,6 @@ class SignMessageRequest(BaseModel):
71
71
  exclude={
72
72
  },
73
73
  exclude_none=True)
74
- # Handle anyOf models where allVars is empty - use vars instead
75
74
  return _dict
76
75
 
77
76
  @classmethod
@@ -91,7 +90,6 @@ class SignMessageRequest(BaseModel):
91
90
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
92
91
 
93
92
  _obj = SignMessageRequest.parse_obj({
94
-
95
93
  "wallet_id": obj.get("walletId"),
96
94
  "encoded_by_hex": obj.get("encodedByHex"),
97
95
  "message": obj.get("message"),
@@ -71,7 +71,6 @@ class SignTransactionRequest(BaseModel):
71
71
  exclude={
72
72
  },
73
73
  exclude_none=True)
74
- # Handle anyOf models where allVars is empty - use vars instead
75
74
  return _dict
76
75
 
77
76
  @classmethod
@@ -91,7 +90,6 @@ class SignTransactionRequest(BaseModel):
91
90
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
92
91
 
93
92
  _obj = SignTransactionRequest.parse_obj({
94
-
95
93
  "wallet_id": obj.get("walletId"),
96
94
  "raw_transaction": obj.get("rawTransaction"),
97
95
  "transaction": obj.get("transaction"),
@@ -70,7 +70,6 @@ class SignTypedDataRequest(BaseModel):
70
70
  exclude={
71
71
  },
72
72
  exclude_none=True)
73
- # Handle anyOf models where allVars is empty - use vars instead
74
73
  return _dict
75
74
 
76
75
  @classmethod
@@ -90,7 +89,6 @@ class SignTypedDataRequest(BaseModel):
90
89
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
91
90
 
92
91
  _obj = SignTypedDataRequest.parse_obj({
93
-
94
92
  "wallet_id": obj.get("walletId"),
95
93
  "data": obj.get("data"),
96
94
  "memo": obj.get("memo"),
@@ -43,6 +43,7 @@ class TokenBlockchain(str, Enum):
43
43
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
44
44
  APTOS = 'APTOS'
45
45
  APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
46
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
46
47
 
47
48
  @classmethod
48
49
  def from_json(cls, json_str: str) -> TokenBlockchain:
@@ -33,7 +33,7 @@ class TransactionFee(BaseModel):
33
33
  base_fee: Optional[StrictStr] = Field(None, alias="baseFee", description="For blockchains with EIP-1559 support, the estimated base fee represents the minimum fee required for a transaction to be included in a block on the blockchain. It is measured in gwei and compensates for the computational resources validators consume to process the transaction. The base fee is supplemented by a separate \"tip\" called the priority fee, which acts as an extra incentive for validators to prioritize the transaction. The priority fee is added to the base fee to calculate the final transaction fee. ")
34
34
  network_fee: Optional[StrictStr] = Field(None, alias="networkFee", description="The estimated network fee is the maximum amount of cryptocurrency (such as ETH, ARB, or SOL) that you will pay for your transaction. This fee depends on the parameters you set, including Gas Limit, Priority Fee, and Max Fee. It compensates for the computational resources that validators consume to process the transaction. It is measured in native token such as ETH, SOL. For blockchains with L1 data fees such as OP/BASE, the network fee is a combination of the Execution Gas Fee and the L1 Data Fee. Each blockchain might use different formula for network fee. Refer to each specific blockchain's documentation to understand how `networkFee` is calculated. ")
35
35
  network_fee_raw: Optional[StrictStr] = Field(None, alias="networkFeeRaw", description="Similar to `networkFee`, `networkFeeRaw` is an estimation with lower buffer and thus should be closer to the actual on-chain expense. This field will only be returned in the estimation response. ")
36
- l1_fee: Optional[StrictStr] = Field(None, alias="l1Fee", description="This is the L1 rollup fee incurred for Layer 2 blockchain transactions. The value is returned in native currency, e.g. ETH. ")
36
+ l1_fee: Optional[StrictStr] = Field(None, alias="l1Fee", description="This fee represents the Layer 1 (L1) rollup charge associated with transactions on Layer 2 blockchains. The amount is expressed in the native currency, such as ETH. This field is relevant for Layer 2 blockchains utilizing a rollup mechanism and for specific account types, such as externally owned accounts (EOAs) on the Optimism (OP) blockchain. ")
37
37
  __properties = ["gasLimit", "gasPrice", "maxFee", "priorityFee", "baseFee", "networkFee", "networkFeeRaw", "l1Fee"]
38
38
 
39
39
  def __init__(self, **kwargs):
@@ -43,6 +43,7 @@ class TransferBlockchain(str, Enum):
43
43
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
44
44
  APTOS = 'APTOS'
45
45
  APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
46
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
46
47
 
47
48
  @classmethod
48
49
  def from_json(cls, json_str: str) -> TransferBlockchain:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 8.0.0
3
+ Version: 8.1.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,7 +12,7 @@ Requires-Dist: python-dateutil
12
12
  Requires-Dist: pydantic<2,>=1.10.5
13
13
  Requires-Dist: aenum
14
14
  Requires-Dist: pycryptodome>=3.20.0
15
- Requires-Dist: circle-configurations==8.0.0
15
+ Requires-Dist: circle-configurations==8.1.0
16
16
  Dynamic: author
17
17
  Dynamic: author-email
18
18
  Dynamic: description
@@ -24,7 +24,7 @@ Dynamic: summary
24
24
  # circle-developer-controlled-wallets
25
25
  This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in Python. For the API reference, see the [Circle Web3 API docs](https://developers.circle.com/api-reference/w3s/common/ping).
26
26
 
27
- - Package version: 8.0.0
27
+ - Package version: 8.1.0
28
28
 
29
29
  ## Requirements.
30
30
 
@@ -1,19 +1,19 @@
1
1
  circle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  circle/web3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- circle/web3/developer_controlled_wallets/__init__.py,sha256=EBPN1GNA_OBp1AXbFAi6oSsd7tZPl4by92xdhfJEdQ4,11748
4
- circle/web3/developer_controlled_wallets/api_client.py,sha256=A9ApsnWCP1G7bcBkJSItN8ygszVC9qk1ZnjoC3_hEXo,31612
3
+ circle/web3/developer_controlled_wallets/__init__.py,sha256=pdH1RFH2iMArsVgjMOaCXhCc3e1b8x4j_C9v5AP4Nr0,12145
4
+ circle/web3/developer_controlled_wallets/api_client.py,sha256=NHUizIham5yFkoWhA3t_-U7Cr1lvQ5GL2k_Mn753HZQ,31612
5
5
  circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
6
- circle/web3/developer_controlled_wallets/configuration.py,sha256=coi5_lAP4J7AhzP_X0TMcitgc33lfNWCrGGue4ISJgQ,15101
6
+ circle/web3/developer_controlled_wallets/configuration.py,sha256=evyIoUKgqMD8xIC1WoRJoz68fKHmfjnqMv8kueqBKrg,15253
7
7
  circle/web3/developer_controlled_wallets/exceptions.py,sha256=_2uyalsxooiwXa05bg46v7jt1aSrhzOD9etoqSyZEac,5218
8
8
  circle/web3/developer_controlled_wallets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  circle/web3/developer_controlled_wallets/rest.py,sha256=L2w4OU_OfcJNZ3nwckgwq21B3gIOXkpFjsOP4QliIeY,12814
10
10
  circle/web3/developer_controlled_wallets/api/__init__.py,sha256=OdeJef0RSUikrtSOaxsOkocXjHQYocnuXjq7TnT6W_Y,474
11
- circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=2OABw8FmktGZzo9ECIhlHrMbGVnnuGDymMkNMu4SWbM,35984
11
+ circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=oaEel64wiKSUUbZ9hWmwGKBqY5C5Ur7qpMTJCNEibdw,36542
12
12
  circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=IdCqsWeHOsj9YEiY_ImxULGV_9ifzlvEn5b5XNO3S-k,8089
13
- circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=Nxsntr-wXF6h4r1KvODCioaPn3eFCTsPtI7EWwqCA7U,100944
13
+ circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=KE-a-HMYZtMRqxAvXItViosOGu_6phFOuaneogSwdUk,109284
14
14
  circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=rYwsgRvKvS-iyOy3B81ub2GYhw9gqm2onm0_sWN4h2E,41015
15
15
  circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=qgbO4vQgN1tz1YkDNSEA6Jux69p-wR31Om3XeAOL5dQ,106773
16
- circle/web3/developer_controlled_wallets/models/__init__.py,sha256=4fF3XmrybngSGM00WVXxoXtc-S8DENuaL5L6XxiFshg,10544
16
+ circle/web3/developer_controlled_wallets/models/__init__.py,sha256=6shZdvUCsCQkkKbfr4bN-xSot_YTX_aigekgaNLGd_8,10941
17
17
  circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py,sha256=MMs5mxNCxJ0G-aW6O8l5hRUhvzoXukmO_JtSg3xRkVM,6118
18
18
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py,sha256=zQoDsvIz4nQolxtukjPq4FfmunFQMbVm7JuwAbDK1XQ,3672
19
19
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py,sha256=Uvp2Lw5PCBHFsgO-UK7nXen5oBPbxqbJLTZtJzp9NOA,3377
@@ -24,13 +24,13 @@ circle/web3/developer_controlled_wallets/models/balance.py,sha256=nHeDJYA-C9xdw2
24
24
  circle/web3/developer_controlled_wallets/models/balances.py,sha256=1O_jesRX1R8MSPdVAqm_iSth_Rh2_63F2r7KvDX2IQ4,3345
25
25
  circle/web3/developer_controlled_wallets/models/balances_data.py,sha256=fKCw8xaw13HNNr0JssyRtc3unTuM9T2dMp65eA1ByD0,3759
26
26
  circle/web3/developer_controlled_wallets/models/base_screening_decision.py,sha256=G1WchqWkSD7DaaJ74CN3Yiq2SU-1FfR8PqJEUj9Hk4o,3885
27
- circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=JaW8Vlni1FKVd0D8Ok1jla9hyZNc7rSBybvpP9SEcG4,1239
27
+ circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=IHXFpxvgO2FHHqQF5aRY00Av5S7rsU2mU-STcCQzGRo,1277
28
28
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py,sha256=rFt93qGtyk0Z5ku7WibXrDk019L8Bdax9NBl7WlgjtM,3666
29
29
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py,sha256=UOpfNzYJZe6NsVwT9Byc2S-djAviOqanLyOIaXNS514,4150
30
- circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=CWC_IaYvCVuJpgGsrkWOEMugUwC8TaIeFMMTb_h_znc,1199
30
+ circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=EBIFL3gXN7Dgnx4PjKMWAwXprETrMp-DP7o5RsbLOX4,1237
31
31
  circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py,sha256=54W16vtrI-sO-l95OjUFbDt-XIb02FHjD843bHpCNyk,3802
32
- circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=U2psDCENoXs92KB2gHNwhlY9xy9WD4PgCILGwBpiJQY,10311
33
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=uk_FVquD77fjyIzM2pmEPrGvSm6Z_dEx7QzaGLQvEl0,9690
32
+ circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=_D9iuEZbyumAzmP4DYzLf2V1A-4ASFy5zPbg3BsODfg,10339
33
+ circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=J2Ds4xFbhjsL599Ub6lx3kl4SL0bExQv_opZnkH2uB0,9730
34
34
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request_blockchain.py,sha256=Y8r4pd-g8FcTtzAP_ZfGvuANrDBaBgp5Sm_0fLB5t8Q,5144
35
35
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=2xxX4O_b97ScAE1xv8p1ZmRl7JTvwCGUujwarJpWQzo,3818
36
36
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py,sha256=4oT5P5brOt_XDfDIQ9Mre_tGoqK8j34KEb1FARbpEXg,3631
@@ -51,6 +51,9 @@ circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py
51
51
  circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=31nThDbzolvNQHzUJf_R-bza6PqsE5sMTJRMLoM7SuU,5577
52
52
  circle/web3/developer_controlled_wallets/models/evm_blockchain.py,sha256=NuKOqG79Rdt7EgBnUHZpnWFDjvEOB-reo-B09hniQ54,1079
53
53
  circle/web3/developer_controlled_wallets/models/fee_level.py,sha256=joeSUsnzvbDCW6DxOv3O9Fuj4YIO6VGCFTlAd6kp-BE,1065
54
+ circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response.py,sha256=DvDmpmzMG1o5KIn5HY64wFAMWZPbULX8SncjsjuWb2k,3649
55
+ circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response_data.py,sha256=irx-KU2n5YJLT_mA5ufkGKbyJYaSV08AJUvBEGTFfYE,4153
56
+ circle/web3/developer_controlled_wallets/models/lowest_nonce_transaction_fee_info.py,sha256=Llu9mRD3vKRcD8rrwqczNpWzg5mZZXpgS5Hp4R6p4jA,4035
54
57
  circle/web3/developer_controlled_wallets/models/new_sca_core.py,sha256=DElcdgBxIB7oaT-uV0YJ6t4CrCyKTbtT_3MkzTE4PLs,756
55
58
  circle/web3/developer_controlled_wallets/models/nft.py,sha256=42O6PqgD6WkS20hJCxxcYnPq2QkDCzkSSB0J8nkxg4E,4368
56
59
  circle/web3/developer_controlled_wallets/models/nfts.py,sha256=_gzqEJcekH0adwYCjfsSATG29BhM4c-BiiKUMY2lHjQ,3297
@@ -69,20 +72,20 @@ circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py,sha2
69
72
  circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py,sha256=zOiuKDApTqkmwkP1RDRCqD0mn-asaZxBmqpo-8tTPEw,4058
70
73
  circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py,sha256=hn-RM4lOjcore2cWjeqk5IJnCgQfSnYpHUzQzOtrqDU,3564
71
74
  circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py,sha256=yHq5rwVybo9D4gLi16xflnxgu19CE5cuqWKyVwfvn6s,3680
72
- circle/web3/developer_controlled_wallets/models/sign_message_request.py,sha256=tgXgR30npDFgLNLT9j5P6AzvuyYJmrSOGsO2nk-OCK4,5120
73
- circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=TwyRbw4PN7cL8imvVXqVnRdJoAgrgxlZx0nvPYpBPQw,5253
75
+ circle/web3/developer_controlled_wallets/models/sign_message_request.py,sha256=RYhZapkC6jpgncqFtHGJTGGDc7f133nY0nMtJAjPkEI,5047
76
+ circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=FN6H9S7B3Hxh6T-VYZUh1yKTIO4CSF3wJqCGTQk9eLw,5180
74
77
  circle/web3/developer_controlled_wallets/models/sign_transaction_response.py,sha256=X-ZPfCsvwyLIHrUdb-hauvt_r0tFPavDMtHUXh1UdLk,3527
75
78
  circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=z12mLR-cxPDk1asQaiXXHD2tICTE2qeJZsTwiTdEAVc,3891
76
- circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha256=Sz2w0HdmzJrdmWVQ5VHKSEH6qIxldWBjIcGcIjCfjwk,4692
79
+ circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha256=7X_-YlzyKWcvCz9k8KrJ7hhTsZDP8QHrO_bK1prSi5A,4619
77
80
  circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=aWFqLuBwMYJj1ZqVeq50NYfvy_FhpFGjD1yzZtXVDrs,3454
78
81
  circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=e401JRv0nMNqMf-Joe4HpSUQ-oTca-3938jgdHKheyw,3345
79
82
  circle/web3/developer_controlled_wallets/models/token.py,sha256=8FEgsOSGDngaLrYdFmPEmH9MWMooeCG67SaglEKhR4I,5040
80
- circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=pK9M1EBAbfeMWYyL94msKrDys0CNFpf0lfmgxxvIdyk,1205
83
+ circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=k72cVO30tu9p3o2Y_e4nJxvoAocrGOYuhiauEPBFL2k,1243
81
84
  circle/web3/developer_controlled_wallets/models/token_response.py,sha256=E9w6Hk5CZXaA8vl0_kmHeZ8jxvViE3NLkXne5XxYdmI,3430
82
85
  circle/web3/developer_controlled_wallets/models/token_response_data.py,sha256=1ZgtgbLzIfJPFpNleLTNmEBj_OEz3jn_nRL3hmS9e0Q,3421
83
86
  circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=CtoV9hUiEiIMnKdXh0d_KZyyvgFtGLO0tkByEIaBjnY,912
84
87
  circle/web3/developer_controlled_wallets/models/transaction.py,sha256=Oj3jpagt8CXSfUySWZL3lqOsgse0pkxUx_Ol5rr4ByE,11987
85
- circle/web3/developer_controlled_wallets/models/transaction_fee.py,sha256=Q8FEKsTxg7tThnv0X3PMgSYxAJAMLwZQr8I2xOMMWck,7512
88
+ circle/web3/developer_controlled_wallets/models/transaction_fee.py,sha256=ZyXTzLU6A6-ow7XyOItTsrDtTbPf3Nt0ejJuJR9PEEM,7735
86
89
  circle/web3/developer_controlled_wallets/models/transaction_response.py,sha256=dV62xfex2kZ6IsnVP8UsDRU8MldnHwF6cn_aCoEjN8g,3478
87
90
  circle/web3/developer_controlled_wallets/models/transaction_response_data.py,sha256=X6z8pika1RU6zssnZjOIAtu1fYfnKldxzefXOqr-GfQ,3547
88
91
  circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py,sha256=6YzzXXWdjYf1LOupKCDLZfjMf-ygi5YGLN4f0wO5I-k,4662
@@ -90,7 +93,7 @@ circle/web3/developer_controlled_wallets/models/transaction_state.py,sha256=SBXL
90
93
  circle/web3/developer_controlled_wallets/models/transaction_type.py,sha256=OmQinsZ-TZxCRQDKxZCYy5Yqb61IXDGl3J5O2YqafRU,640
91
94
  circle/web3/developer_controlled_wallets/models/transactions.py,sha256=PN0tweIUQpxyzo_b_Ef3QedJxaexK-aq80z19ppgNI4,3417
92
95
  circle/web3/developer_controlled_wallets/models/transactions_data.py,sha256=8hDHc8f2IQV4R5GIlqTBRKs0379728tztDgKzfE1d9E,3685
93
- circle/web3/developer_controlled_wallets/models/transfer_blockchain.py,sha256=3BXignOE0S4xHdz9-fCz6BeUb3Rd-iN7w2zJ0M0biWw,1203
96
+ circle/web3/developer_controlled_wallets/models/transfer_blockchain.py,sha256=jnqPVHrDtYWGvqjkcwyj2WSD5LU1CWHbaLnDkQS825M,1241
94
97
  circle/web3/developer_controlled_wallets/models/update_wallet_request.py,sha256=ioIFu2JyePuSeLOGZjNose7G_eRSrZxxl9TN_A1r4AY,3441
95
98
  circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py,sha256=59FDASpch0HaE28KDXSvC1FjW6qsNco2M95dIa9_NcU,3274
96
99
  circle/web3/developer_controlled_wallets/models/validate_address.py,sha256=RmfNQaaMbpmHVL2ae3K2kD5wblE_F4wnObD5Wo60yU0,3430
@@ -113,7 +116,7 @@ circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sh
113
116
  circle/web3/developer_controlled_wallets/models/wallets_with_balances.py,sha256=_boxAPpp-d9igMwvqiSJNOK4hkucjsNgNJPjDIlo154,3479
114
117
  circle/web3/developer_controlled_wallets/models/wallets_with_balances_data.py,sha256=V967b5KoP_sVbcwzlmGqXezMNQgJk0taEBEyl_hU3Ag,3790
115
118
  circle/web3/developer_controlled_wallets/models/wallets_with_balances_data_wallets_inner.py,sha256=Bss1dqGl6TLi17jLgQtdb8l5MKbOBUPruyY982SCU5U,5671
116
- circle_developer_controlled_wallets-8.0.0.dist-info/METADATA,sha256=nUGBpgw6pGn-Nj5uXp9J8z-qtoVehZuy03G8S7PuBmQ,5949
117
- circle_developer_controlled_wallets-8.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
118
- circle_developer_controlled_wallets-8.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
119
- circle_developer_controlled_wallets-8.0.0.dist-info/RECORD,,
119
+ circle_developer_controlled_wallets-8.1.0.dist-info/METADATA,sha256=l3X2Q9kRAGsLYgJP-6Lr_0mysWycaCxZXot0wssPuzA,5949
120
+ circle_developer_controlled_wallets-8.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
121
+ circle_developer_controlled_wallets-8.1.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
122
+ circle_developer_controlled_wallets-8.1.0.dist-info/RECORD,,