circle-developer-controlled-wallets 3.0.0__py3-none-any.whl → 5.0.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 (33) hide show
  1. circle/web3/developer_controlled_wallets/__init__.py +2 -2
  2. circle/web3/developer_controlled_wallets/api/signing_api.py +6 -2
  3. circle/web3/developer_controlled_wallets/api/token_lookup_api.py +2 -0
  4. circle/web3/developer_controlled_wallets/api/transactions_api.py +55 -33
  5. circle/web3/developer_controlled_wallets/api/wallets_api.py +20 -14
  6. circle/web3/developer_controlled_wallets/api_client.py +1 -1
  7. circle/web3/developer_controlled_wallets/configuration.py +1 -1
  8. circle/web3/developer_controlled_wallets/models/__init__.py +1 -1
  9. circle/web3/developer_controlled_wallets/models/blockchain.py +2 -0
  10. circle/web3/developer_controlled_wallets/models/{estimate_contract_execution_transaction_fee_request_blockchain.py → contract_execution_blockchain.py} +7 -5
  11. circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +1 -1
  12. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +2 -2
  13. circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py +1 -1
  14. circle/web3/developer_controlled_wallets/models/eoa_wallet.py +2 -2
  15. circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +4 -4
  16. circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +3 -3
  17. circle/web3/developer_controlled_wallets/models/sca_wallet.py +2 -2
  18. circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py +1 -1
  19. circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +2 -2
  20. circle/web3/developer_controlled_wallets/models/signature_response_data.py +1 -1
  21. circle/web3/developer_controlled_wallets/models/token.py +1 -1
  22. circle/web3/developer_controlled_wallets/models/token_blockchain.py +3 -1
  23. circle/web3/developer_controlled_wallets/models/transaction.py +4 -4
  24. circle/web3/developer_controlled_wallets/models/transaction_state.py +5 -5
  25. circle/web3/developer_controlled_wallets/models/update_wallet_request.py +1 -1
  26. circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py +2 -2
  27. circle/web3/developer_controlled_wallets/models/validate_address_request.py +1 -1
  28. circle/web3/developer_controlled_wallets/models/wallet.py +2 -2
  29. circle/web3/developer_controlled_wallets/models/wallet_metadata.py +1 -1
  30. {circle_developer_controlled_wallets-3.0.0.dist-info → circle_developer_controlled_wallets-5.0.0.dist-info}/METADATA +15 -8
  31. {circle_developer_controlled_wallets-3.0.0.dist-info → circle_developer_controlled_wallets-5.0.0.dist-info}/RECORD +33 -33
  32. {circle_developer_controlled_wallets-3.0.0.dist-info → circle_developer_controlled_wallets-5.0.0.dist-info}/WHEEL +1 -1
  33. {circle_developer_controlled_wallets-3.0.0.dist-info → circle_developer_controlled_wallets-5.0.0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,7 @@ from circle.web3.developer_controlled_wallets.models.base_screening_decision imp
23
23
  from circle.web3.developer_controlled_wallets.models.blockchain import Blockchain
24
24
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer import CancelTransactionForDeveloper
25
25
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer_request import CancelTransactionForDeveloperRequest
26
+ from circle.web3.developer_controlled_wallets.models.contract_execution_blockchain import ContractExecutionBlockchain
26
27
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
27
28
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
28
29
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
@@ -36,7 +37,6 @@ from circle.web3.developer_controlled_wallets.models.eoa_wallet import EOAWallet
36
37
  from circle.web3.developer_controlled_wallets.models.end_user_wallet_set import EndUserWalletSet
37
38
  from circle.web3.developer_controlled_wallets.models.error import Error
38
39
  from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request import EstimateContractExecutionTransactionFeeRequest
39
- from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request_blockchain import EstimateContractExecutionTransactionFeeRequestBlockchain
40
40
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee import EstimateTransactionFee
41
41
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_data import EstimateTransactionFeeData
42
42
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
@@ -39,6 +39,8 @@ class Blockchain(str, Enum):
39
39
  NEAR_MINUS_TESTNET = 'NEAR-TESTNET'
40
40
  EVM = 'EVM'
41
41
  EVM_MINUS_TESTNET = 'EVM-TESTNET'
42
+ UNI = 'UNI'
43
+ UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
42
44
 
43
45
  @classmethod
44
46
  def from_json(cls, json_str: str) -> Blockchain:
@@ -17,9 +17,9 @@ from aenum import Enum, no_arg
17
17
 
18
18
 
19
19
 
20
- class EstimateContractExecutionTransactionFeeRequestBlockchain(str, Enum):
20
+ class ContractExecutionBlockchain(str, Enum):
21
21
  """
22
- The blockchain network that the resource is to be created on or is currently on.
22
+ Blockchain associated with the transaction. Required along with `sourceAddress` if you don't provide `walletId`. The `blockchain` and `walletId` fields are mutually exclusive.
23
23
  """
24
24
 
25
25
  """
@@ -33,10 +33,12 @@ class EstimateContractExecutionTransactionFeeRequestBlockchain(str, Enum):
33
33
  MATIC_MINUS_AMOY = 'MATIC-AMOY'
34
34
  ARB = 'ARB'
35
35
  ARB_MINUS_SEPOLIA = 'ARB-SEPOLIA'
36
+ UNI = 'UNI'
37
+ UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
36
38
 
37
39
  @classmethod
38
- def from_json(cls, json_str: str) -> EstimateContractExecutionTransactionFeeRequestBlockchain:
39
- """Create an instance of EstimateContractExecutionTransactionFeeRequestBlockchain from a JSON string"""
40
- return EstimateContractExecutionTransactionFeeRequestBlockchain(json.loads(json_str))
40
+ def from_json(cls, json_str: str) -> ContractExecutionBlockchain:
41
+ """Create an instance of ContractExecutionBlockchain from a JSON string"""
42
+ return ContractExecutionBlockchain(json.loads(json_str))
41
43
 
42
44
 
@@ -36,7 +36,7 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
36
36
  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. ")
37
37
  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. ")
38
38
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Optional reference or description used to identify the transaction.")
39
- wallet_id: StrictStr = Field(..., alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
39
+ 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. ")
40
40
  __properties = ["idempotencyKey", "abiFunctionSignature", "abiParameters", "callData", "amount", "contractAddress", "entitySecretCiphertext", "feeLevel", "gasLimit", "gasPrice", "maxFee", "priorityFee", "refId", "walletId"]
41
41
 
42
42
  def __init__(self, **kwargs):
@@ -25,7 +25,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
25
25
  """
26
26
  idempotency_key: StrictStr = Field(..., alias="idempotencyKey", description="Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. To create a UUIDv4 go to [uuidgenerator.net](https://www.uuidgenerator.net). If the same key is reused, it will be treated as the same request and the original response will be returned.")
27
27
  amounts: Optional[conlist(StrictStr, min_items=1)] = Field(None, description="Transfer amounts in decimal number format, at least one element is required for transfer. For ERC721 token transfer, the amounts field is required to be [\"1\"] (array with \"1\" as the only element).")
28
- destination_address: StrictStr = Field(..., alias="destinationAddress", description="The destination blockchain address for the transaction.")
28
+ destination_address: StrictStr = Field(..., alias="destinationAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
29
29
  entity_secret_ciphertext: Union[StrictBytes, StrictStr] = Field(..., alias="entitySecretCiphertext", description="A base64 string expression of the entity secret ciphertext. The entity secret should be encrypted by the entity public key. Circle mandates that the entity secret ciphertext is unique for each API request. ")
30
30
  fee_level: Optional[FeeLevel] = Field(None, alias="feeLevel")
31
31
  gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. GasLimit override (only supported for EOA wallets): Using `gasLimit` together with `feeLevel`, the provided `gasLimit` is required to be greater or equal to `feeLevel` estimation and will override the estimation's gasLimit. ")
@@ -37,7 +37,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
37
37
  token_id: Optional[StrictStr] = Field(None, alias="tokenId", description="System generated identifier of the token. Excluded with `tokenAddress` and `tokenBlockchain`.")
38
38
  token_address: Optional[StrictStr] = Field(None, alias="tokenAddress", description="Blockchain address of the transferred token. Empty for native tokens. Excluded with `tokenId`.")
39
39
  blockchain: Optional[TokenBlockchain] = None
40
- wallet_id: StrictStr = Field(..., alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
40
+ 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. ")
41
41
  __properties = ["idempotencyKey", "amounts", "destinationAddress", "entitySecretCiphertext", "feeLevel", "gasLimit", "gasPrice", "maxFee", "priorityFee", "nftTokenIds", "refId", "tokenId", "tokenAddress", "blockchain", "walletId"]
42
42
 
43
43
  def __init__(self, **kwargs):
@@ -23,7 +23,7 @@ class CreateWalletSetRequest(BaseModel):
23
23
  """
24
24
  entity_secret_ciphertext: Union[StrictBytes, StrictStr] = Field(..., alias="entitySecretCiphertext", description="A base64 string expression of the entity secret ciphertext. The entity secret should be encrypted by the entity public key. Circle mandates that the entity secret ciphertext is unique for each API request. ")
25
25
  idempotency_key: StrictStr = Field(..., alias="idempotencyKey", description="Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. To create a UUIDv4 go to [uuidgenerator.net](https://www.uuidgenerator.net). If the same key is reused, it will be treated as the same request and the original response will be returned.")
26
- name: Optional[StrictStr] = None
26
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
27
27
  __properties = ["entitySecretCiphertext", "idempotencyKey", "name"]
28
28
 
29
29
  def __init__(self, **kwargs):
@@ -25,12 +25,12 @@ class EOAWallet(BaseModel):
25
25
  EOAWallet
26
26
  """
27
27
  id: StrictStr = Field(..., description="System-generated unique identifier of the resource.")
28
- address: StrictStr = Field(..., description="Blockchain address of the wallet.")
28
+ address: StrictStr = Field(..., description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
29
29
  blockchain: Blockchain = Field(...)
30
30
  create_date: datetime = Field(..., alias="createDate", description="Date and time the resource was created, in ISO-8601 UTC format.")
31
31
  update_date: datetime = Field(..., alias="updateDate", description="Date and time the resource was last updated, in ISO-8601 UTC format.")
32
32
  custody_type: CustodyType = Field(..., alias="custodyType")
33
- name: Optional[StrictStr] = Field(None, description="Optional name or description associated with the wallet.")
33
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
34
34
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Reference or description used to identify the object.")
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
@@ -17,7 +17,7 @@ import json
17
17
  from typing import List, Optional
18
18
  from pydantic import BaseModel, Field, StrictStr, conlist
19
19
  from circle.web3.developer_controlled_wallets.models.abi_parameters_inner import AbiParametersInner
20
- from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request_blockchain import EstimateContractExecutionTransactionFeeRequestBlockchain
20
+ from circle.web3.developer_controlled_wallets.models.contract_execution_blockchain import ContractExecutionBlockchain
21
21
 
22
22
  class EstimateContractExecutionTransactionFeeRequest(BaseModel):
23
23
  """
@@ -27,10 +27,10 @@ class EstimateContractExecutionTransactionFeeRequest(BaseModel):
27
27
  abi_parameters: Optional[conlist(AbiParametersInner)] = Field(None, alias="abiParameters", description="The contract ABI function signature parameters for executing the contract interaction. Supported parameter types include string, integer, boolean, and array. These parameters should be used exclusively with the abiFunctionSignature and cannot be used with `callData`.")
28
28
  call_data: Optional[StrictStr] = Field(None, alias="callData", description="The raw transaction data, must be an even-length hexadecimal string with the `0x` prefix, to be executed. It is important to note that the usage of `callData` is mutually exclusive with the `abiFunctionSignature` and `abiParameters`. Therefore, `callData` cannot be utilized simultaneously with either `abiFunctionSignature` or `abiParameters`.")
29
29
  amount: Optional[StrictStr] = Field(None, description="The amount of native token that will be sent to the contract abi execution. Optional field for payable api only, if not provided, no native token will be sent.")
30
- blockchain: Optional[EstimateContractExecutionTransactionFeeRequestBlockchain] = None
30
+ blockchain: Optional[ContractExecutionBlockchain] = None
31
31
  contract_address: StrictStr = Field(..., alias="contractAddress", description="The blockchain address of the contract to be executed.")
32
- source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="The source address of the transaction.")
33
- wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
32
+ source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="Source address of the transaction. Required along with `blockchain` if `walletId` is not provided. The `sourceAddress` and `walletId` fields are mutually exclusive. ")
33
+ wallet_id: Optional[StrictStr] = Field(None, 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. ")
34
34
  __properties = ["abiFunctionSignature", "abiParameters", "callData", "amount", "blockchain", "contractAddress", "sourceAddress", "walletId"]
35
35
 
36
36
  def __init__(self, **kwargs):
@@ -23,13 +23,13 @@ class EstimateTransferTransactionFeeRequest(BaseModel):
23
23
  EstimateTransferTransactionFeeRequest
24
24
  """
25
25
  amounts: conlist(StrictStr, min_items=1) = Field(..., description="Transfer amounts in decimal number format, at least one element is required for transfer. For ERC721 token transfer, the amounts field is required to be [\"1\"] (array with \"1\" as the only element).")
26
- destination_address: StrictStr = Field(..., alias="destinationAddress", description="The destination blockchain address for the transaction.")
26
+ destination_address: StrictStr = Field(..., alias="destinationAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
27
27
  nft_token_ids: Optional[conlist(StrictStr)] = Field(None, alias="nftTokenIds", description="List of NFT token IDs corresponding with the NFTs to transfer. Batch transfers are supported only for ERC-1155 tokens. The length of NFT token IDs must match the length of amounts.")
28
- source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="The source address of the transaction.")
28
+ source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="Source address of the transaction. Required along with `blockchain` if `walletId` is not provided. The `sourceAddress` and `walletId` fields are mutually exclusive. ")
29
29
  token_id: Optional[StrictStr] = Field(None, alias="tokenId", description="System generated identifier of the token. Excluded with `tokenAddress` and `tokenBlockchain`.")
30
30
  token_address: Optional[StrictStr] = Field(None, alias="tokenAddress", description="Blockchain address of the transferred token. Empty for native tokens. Excluded with `tokenId`.")
31
31
  blockchain: Optional[TokenBlockchain] = None
32
- wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
32
+ wallet_id: Optional[StrictStr] = Field(None, 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. ")
33
33
  __properties = ["amounts", "destinationAddress", "nftTokenIds", "sourceAddress", "tokenId", "tokenAddress", "blockchain", "walletId"]
34
34
 
35
35
  def __init__(self, **kwargs):
@@ -25,12 +25,12 @@ class SCAWallet(BaseModel):
25
25
  SCAWallet
26
26
  """
27
27
  id: StrictStr = Field(..., description="System-generated unique identifier of the resource.")
28
- address: StrictStr = Field(..., description="Blockchain address of the wallet.")
28
+ address: StrictStr = Field(..., description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
29
29
  blockchain: Blockchain = Field(...)
30
30
  create_date: datetime = Field(..., alias="createDate", description="Date and time the resource was created, in ISO-8601 UTC format.")
31
31
  update_date: datetime = Field(..., alias="updateDate", description="Date and time the resource was last updated, in ISO-8601 UTC format.")
32
32
  custody_type: CustodyType = Field(..., alias="custodyType")
33
- name: Optional[StrictStr] = Field(None, description="Optional name or description associated with the wallet.")
33
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
34
34
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Reference or description used to identify the object.")
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
@@ -21,7 +21,7 @@ class SignDelegateActionResponseData(BaseModel):
21
21
  """
22
22
  SignDelegateActionResponseData
23
23
  """
24
- signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string.")
24
+ signature: StrictStr = Field(..., description="Each chain encode signatures in a different way, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis) and the blockchain's document.")
25
25
  signed_delegate_action: StrictStr = Field(..., alias="signedDelegateAction", description="Signed delegate action is a base64 encoded string for NEAR.")
26
26
  __properties = ["signature", "signedDelegateAction"]
27
27
 
@@ -21,8 +21,8 @@ class SignTransactionResponseData(BaseModel):
21
21
  """
22
22
  SignTransactionResponseData
23
23
  """
24
- signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string.")
25
- signed_transaction: StrictStr = Field(..., alias="signedTransaction", description="Signed transaction is a base64 encoded string.")
24
+ signature: StrictStr = Field(..., description="Each chain encode signatures in a different way, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis) and the blockchain's document.")
25
+ signed_transaction: StrictStr = Field(..., alias="signedTransaction", description="Signed transaction. Base64 encoded for NEAR and Solana chains. Hex encoded for EVM chains.")
26
26
  tx_hash: Optional[StrictStr] = Field(None, alias="txHash", description="Blockchain generated identifier of the transaction.")
27
27
  __properties = ["signature", "signedTransaction", "txHash"]
28
28
 
@@ -21,7 +21,7 @@ class SignatureResponseData(BaseModel):
21
21
  """
22
22
  SignatureResponseData
23
23
  """
24
- signature: StrictStr = Field(..., description="Signature is a hex encoded 65 byte array starting with 0x.")
24
+ signature: StrictStr = Field(..., description="Each chain encode signatures in a different way, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis) and the blockchain's document.")
25
25
  __properties = ["signature"]
26
26
 
27
27
  def __init__(self, **kwargs):
@@ -30,7 +30,7 @@ class Token(BaseModel):
30
30
  decimals: Optional[StrictInt] = Field(None, description="Number of decimal places shown in the token amount.")
31
31
  is_native: StrictBool = Field(..., alias="isNative", description="Defines if the token is a native token of the specified blockchain. If TRUE, the token is a native token.")
32
32
  symbol: Optional[StrictStr] = Field(None, description="Blockchain symbol of the specified token.")
33
- token_address: Optional[StrictStr] = Field(None, alias="tokenAddress", description="Blockchain address of the specified token.")
33
+ token_address: Optional[StrictStr] = Field(None, alias="tokenAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
34
34
  update_date: datetime = Field(..., alias="updateDate", description="Date and time the resource was last updated, in ISO-8601 UTC format.")
35
35
  create_date: datetime = Field(..., alias="createDate", description="Date and time the resource was created, in ISO-8601 UTC format.")
36
36
  __properties = ["id", "name", "standard", "blockchain", "decimals", "isNative", "symbol", "tokenAddress", "updateDate", "createDate"]
@@ -19,7 +19,7 @@ from aenum import Enum, no_arg
19
19
 
20
20
  class TokenBlockchain(str, Enum):
21
21
  """
22
- Blockchain of the transferred token. Required if tokenId is not provided. Excluded with `tokenId`.
22
+ Blockchain of the transferred token. Required if `tokenId` is not provided. The `blockchain` and `tokenId` fields are mutually exclusive.
23
23
  """
24
24
 
25
25
  """
@@ -35,6 +35,8 @@ class TokenBlockchain(str, Enum):
35
35
  SOL_MINUS_DEVNET = 'SOL-DEVNET'
36
36
  ARB = 'ARB'
37
37
  ARB_MINUS_SEPOLIA = 'ARB-SEPOLIA'
38
+ UNI = 'UNI'
39
+ UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
38
40
 
39
41
  @classmethod
40
42
  def from_json(cls, json_str: str) -> TokenBlockchain:
@@ -41,7 +41,7 @@ class Transaction(BaseModel):
41
41
  contract_address: Optional[StrictStr] = Field(None, alias="contractAddress", description="The blockchain address of the contract to be executed.")
42
42
  create_date: datetime = Field(..., alias="createDate", description="Date and time the resource was created, in ISO-8601 UTC format.")
43
43
  custody_type: Optional[CustodyType] = Field(None, alias="custodyType")
44
- destination_address: Optional[StrictStr] = Field(None, alias="destinationAddress", description="The destination blockchain address for the transaction.")
44
+ destination_address: Optional[StrictStr] = Field(None, alias="destinationAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
45
45
  error_reason: Optional[StrictStr] = Field(None, alias="errorReason", description="Description of the error. Only present for transactions in `FAILED` state.")
46
46
  error_details: Optional[StrictStr] = Field(None, alias="errorDetails", description="Additional detail associated with the corresponding transaction's error reason")
47
47
  estimated_fee: Optional[TransactionFee] = Field(None, alias="estimatedFee")
@@ -52,14 +52,14 @@ class Transaction(BaseModel):
52
52
  nfts: Optional[conlist(StrictStr)] = Field(None, description="List of Nfts, in JSON string format, associated with the transaction.")
53
53
  operation: Optional[Operation] = None
54
54
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Optional reference or description used to identify the transaction.")
55
- source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="The source address of the transaction.")
55
+ source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
56
56
  state: TransactionState = Field(...)
57
- token_id: Optional[StrictStr] = Field(None, alias="tokenId", description="System generated identifier of the token. Excluded with `tokenAddress` and `tokenBlockchain`.")
57
+ token_id: Optional[StrictStr] = Field(None, alias="tokenId", description="System-generated unique identifier of the resource.")
58
58
  transaction_type: TransactionType = Field(..., alias="transactionType")
59
59
  tx_hash: Optional[StrictStr] = Field(None, alias="txHash", description="Blockchain generated identifier of the transaction.")
60
60
  update_date: datetime = Field(..., alias="updateDate", description="Date and time the resource was last updated, in ISO-8601 UTC format.")
61
61
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
62
- wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
62
+ wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="System-generated unique identifier of the resource.")
63
63
  transaction_screening_evaluation: Optional[TransactionScreeningDecision] = Field(None, alias="transactionScreeningEvaluation")
64
64
  __properties = ["id", "abiFunctionSignature", "abiParameters", "amounts", "amountInUSD", "blockHash", "blockHeight", "blockchain", "contractAddress", "createDate", "custodyType", "destinationAddress", "errorReason", "errorDetails", "estimatedFee", "feeLevel", "firstConfirmDate", "networkFee", "networkFeeInUSD", "nfts", "operation", "refId", "sourceAddress", "state", "tokenId", "transactionType", "txHash", "updateDate", "userId", "walletId", "transactionScreeningEvaluation"]
65
65
 
@@ -25,15 +25,15 @@ class TransactionState(str, Enum):
25
25
  """
26
26
  allowed enum values
27
27
  """
28
+ CANCELLED = 'CANCELLED'
29
+ CONFIRMED = 'CONFIRMED'
30
+ COMPLETE = 'COMPLETE'
31
+ DENIED = 'DENIED'
32
+ FAILED = 'FAILED'
28
33
  INITIATED = 'INITIATED'
29
34
  PENDING_RISK_SCREENING = 'PENDING_RISK_SCREENING'
30
- DENIED = 'DENIED'
31
35
  QUEUED = 'QUEUED'
32
36
  SENT = 'SENT'
33
- CONFIRMED = 'CONFIRMED'
34
- COMPLETE = 'COMPLETE'
35
- FAILED = 'FAILED'
36
- CANCELLED = 'CANCELLED'
37
37
 
38
38
  @classmethod
39
39
  def from_json(cls, json_str: str) -> TransactionState:
@@ -21,7 +21,7 @@ class UpdateWalletRequest(BaseModel):
21
21
  """
22
22
  UpdateWalletRequest
23
23
  """
24
- name: Optional[StrictStr] = Field(None, description="Optional name or description associated with the wallet.")
24
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
25
25
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Reference or description used to identify the object.")
26
26
  __properties = ["name", "refId"]
27
27
 
@@ -15,13 +15,13 @@ import json
15
15
 
16
16
 
17
17
  from typing import Optional
18
- from pydantic import BaseModel, constr
18
+ from pydantic import BaseModel, Field, StrictStr
19
19
 
20
20
  class UpdateWalletSetRequest(BaseModel):
21
21
  """
22
22
  UpdateWalletSetRequest
23
23
  """
24
- name: Optional[constr(strict=True, min_length=1)] = None
24
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
25
25
  __properties = ["name"]
26
26
 
27
27
  def __init__(self, **kwargs):
@@ -22,7 +22,7 @@ class ValidateAddressRequest(BaseModel):
22
22
  """
23
23
  ValidateAddressRequest
24
24
  """
25
- address: StrictStr = Field(..., description="The blockchain address generated upon wallet creation.")
25
+ address: StrictStr = Field(..., description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
26
26
  blockchain: Blockchain = Field(...)
27
27
  __properties = ["address", "blockchain"]
28
28
 
@@ -25,12 +25,12 @@ class Wallet(BaseModel):
25
25
  Wallet
26
26
  """
27
27
  id: StrictStr = Field(..., description="System-generated unique identifier of the resource.")
28
- address: StrictStr = Field(..., description="Blockchain address of the wallet.")
28
+ address: StrictStr = Field(..., description="Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects. ")
29
29
  blockchain: Blockchain = Field(...)
30
30
  create_date: datetime = Field(..., alias="createDate", description="Date and time the resource was created, in ISO-8601 UTC format.")
31
31
  update_date: datetime = Field(..., alias="updateDate", description="Date and time the resource was last updated, in ISO-8601 UTC format.")
32
32
  custody_type: CustodyType = Field(..., alias="custodyType")
33
- name: Optional[StrictStr] = Field(None, description="Optional name or description associated with the wallet.")
33
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
34
34
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Reference or description used to identify the object.")
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
@@ -21,7 +21,7 @@ class WalletMetadata(BaseModel):
21
21
  """
22
22
  WalletMetadata
23
23
  """
24
- name: Optional[StrictStr] = Field(None, description="Optional name or description associated with the wallet.")
24
+ name: Optional[StrictStr] = Field(None, description="Name or description associated with the wallet or walletSet.")
25
25
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Reference or description used to identify the object.")
26
26
  __properties = ["name", "refId"]
27
27
 
@@ -1,24 +1,31 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 3.0.0
3
+ Version: 5.0.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
7
7
  Author-email: team@openapitools.org
8
8
  Keywords: OpenAPI,OpenAPI-Generator,Developer-Controlled Wallets
9
9
  Description-Content-Type: text/markdown
10
- Requires-Dist: urllib3 <2.1.0,>=1.25.3
10
+ Requires-Dist: urllib3<2.1.0,>=1.25.3
11
11
  Requires-Dist: python-dateutil
12
- Requires-Dist: pydantic <2,>=1.10.5
12
+ Requires-Dist: pydantic<2,>=1.10.5
13
13
  Requires-Dist: aenum
14
- Requires-Dist: pycryptodome >=3.20.0
15
- Requires-Dist: circle-configurations ==3.0.0
16
- Requires-Dist: circle-web3-sdk-util ==3.0.0
14
+ Requires-Dist: pycryptodome>=3.20.0
15
+ Requires-Dist: circle-configurations==5.0.0
16
+ Requires-Dist: circle-web3-sdk-util==5.0.0
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: keywords
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
17
24
 
18
25
  # circle-developer-controlled-wallets
19
26
  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).
20
27
 
21
- - Package version: 3.0.0
28
+ - Package version: 5.0.0
22
29
 
23
30
  ## Requirements.
24
31
 
@@ -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=wYd_1lTpv_4at0Fsew8koJZ4P4dqlI5GWdmA9REq_p8,10302
4
- circle/web3/developer_controlled_wallets/api_client.py,sha256=7_U8RPEXYxFe5kOX_RMDoOr3V1qoeHy3xnfIw49zEdo,31612
3
+ circle/web3/developer_controlled_wallets/__init__.py,sha256=j_sbgZ0NNDKpyL0fR00C6cZmFVVkSLG30VkmgrabOtM,10240
4
+ circle/web3/developer_controlled_wallets/api_client.py,sha256=5vfCX8e4s_TqvILUb7DdddAXb9KyltsH4c2OZdx5qu0,31612
5
5
  circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
6
- circle/web3/developer_controlled_wallets/configuration.py,sha256=t7amiifo1LTippSiFDpkset6yKpsPr8OG6s5ag2GCjE,15101
6
+ circle/web3/developer_controlled_wallets/configuration.py,sha256=adWd90HEZD_uEpqchsw-2c_wLB09Sh81NXXMgV7k0wc,15101
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=6U0HhHSmk5qs_cjt4yzZ5qlmLUk-joRCaN0d9UTl9T0,31506
12
- circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=uLa6OsID3BkYkcul-XYFzwjMbTMYyKdNChohP68JuBI,8004
13
- circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=Fwfhf-B07f1gqBSlm4gkyhVMxD8Bs_sLlGzpDBNqbpQ,81920
11
+ circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=2O5_VX_vHZvKEjBz3QN2Z9KQLgIFvxb1Vk1B4yMRNfo,31894
12
+ circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=1U25ywu5FEpMwzKxCDIjIyDXpJaHy3HQ4qux2tcIcdA,8076
13
+ circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=ZnsuSgLS3ohi-5NPLKMzReBn64m96geje8hwla8caVg,83834
14
14
  circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=0VHhXuMAYlfOjZN3K2UNCfGc7f-eN1WaT7N0sTlAZvI,39351
15
- circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=4CUW4LmvLOQAewvnkwpN7I9sjYLkgTJXEHHZfErICDU,71044
16
- circle/web3/developer_controlled_wallets/models/__init__.py,sha256=8YyrDEcN-wWGzKqZz7TTB1OqJ3-hcxfGNRHW9jBsHP8,9098
15
+ circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=8Knrkm7wHVdtk0j4NWuH_CeWFnbFPfMUlsgNOFDATJ4,71358
16
+ circle/web3/developer_controlled_wallets/models/__init__.py,sha256=hcO-s5SuWremOHUey1HDOhcG7zleLripngtElgFpwvw,9036
17
17
  circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py,sha256=YX5BNB39myCXozO8yBzN-PnPC_81HovQEL8_i_irhpU,6093
18
18
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py,sha256=p_gW451uzynxR2KX_-s7dfby13hpkk5tdOD0i7BO7tI,3108
19
19
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py,sha256=45oeo8Y5X00kEl7cwUB0y0ccTezJpGsTWhs5LtEUDvg,2813
@@ -24,26 +24,26 @@ circle/web3/developer_controlled_wallets/models/balance.py,sha256=b_q6mHnmL0-gvD
24
24
  circle/web3/developer_controlled_wallets/models/balances.py,sha256=9mBDyfJXXSq5Bx94dhGDO4_47k7RT-gL5AW0Vp_AK8Y,2781
25
25
  circle/web3/developer_controlled_wallets/models/balances_data.py,sha256=q7Pc-1uiN2_vS9Ze3koSyy96U7NqdY7cHcfWJq3F7jM,3195
26
26
  circle/web3/developer_controlled_wallets/models/base_screening_decision.py,sha256=2GXzmMm2Tcsm_mURpcQqYEeyg7DUnC8g_k3EfIYHuX4,3297
27
- circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=vA_eHyGbyQrDT5vxAJbypVXnSrWcK12QmFRCpuFCUqE,1015
27
+ circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=BQonMuVxCEo42SUSVYtLCY4Nt2BcPkORArLfxIdIbm0,1069
28
28
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py,sha256=rgxhKpv_iyveNryqLjv6Oy2DEcNkG4YtX3DExG3DL9c,3102
29
29
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py,sha256=PQaehF6SPZguQZcTJPwA8Z5xaGEe_JLekM_EkvEc6Ns,3574
30
+ circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=lNit8jfCR5wvPQwV6jY1uFGGgPyFajj7gp_ApJYbC5Y,1070
30
31
  circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py,sha256=IddNCdmw9EFf5pl4tF8WeBxvNxnKUKVj9jZCazMcAbg,3238
31
- circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=q4weq1Q-YKdgUzoAc-ByVwmb13NxDrfLWD5XBAOpbow,8818
32
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=xcfw2-jItrb58O_wTAKlfDhhUndfdcnXblEzTi0mmIk,7976
32
+ circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=tev0QLk6-0ZnhvTBv6siRlrjf-R4M90KJpXzerwOxPg,8863
33
+ circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=0vTZyXNgne4k6n_if2NB3tlxXvTlA8WBKPkZKrgTEhk,8084
33
34
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=YRMpIZhy8ZiBwuQls9Sfqg8CIOWlz8KNF1DAG1PeLdE,3254
34
35
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py,sha256=dLj_Y4YMpmf1hTSsYSECBjd5mNWXVCsq492mPLH5CvE,3055
35
36
  circle/web3/developer_controlled_wallets/models/create_wallet_request.py,sha256=nEGgLhxmeygJDlXDgRoj4RySzzkt8uMA93iqCQFkHOA,5142
36
- circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py,sha256=x0lU4OtovUcVwjSQqYTewA232SKffyO5rdC18l65rzg,3554
37
+ circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py,sha256=ZkkkKopXBtf8WCpUMtVu27GOqUN0yy1Du5d7jWWL2uA,3637
37
38
  circle/web3/developer_controlled_wallets/models/custody_type.py,sha256=-jwmNI1fRdu99uU6d8ewv6zXp7Of769WhIL0Qy1i_KI,704
38
39
  circle/web3/developer_controlled_wallets/models/developer_wallet_set.py,sha256=P1ON_uNz_fTfSNtEZ9hxKu6J7uTFINoyTmrASDDjMe0,3447
39
40
  circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py,sha256=_-vg7A8IQUWm0OeAASrpwXaeN6F6FaqcgNC7kq_GJK4,3642
40
- circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=0p41jrU0olMrQjvUODF_VsADat1EoHmlHXTwohwXZ2o,5554
41
+ circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=nRwrBMt98gU6Pcow_udEWx6Z4ds-OkcYF89cqJuOGxs,5643
41
42
  circle/web3/developer_controlled_wallets/models/error.py,sha256=D43thFidD6O6DYDPGu7VThkOegMATdG3anTTx2UzeNQ,2661
42
- circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=t4pIwD60330N81Uq1dqDNFt0-_X2krrgniAL4hbyLNI,5993
43
- circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request_blockchain.py,sha256=3zqmEoU200dkSOZIfdOhsNvXoVqN7nUmsk_Kv_TlR7k,1035
43
+ circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=h7yXztot_Sxqy_ozeX-wxGU7qRtGl892yeMhIf2KS08,6075
44
44
  circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py,sha256=843p1adcNxjo1kXxJm9NYLnqRvOzo7QDHCyLqVS-S2g,2951
45
45
  circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py,sha256=orTybZ1SmCiivc4LNnu3EdzVOSdNUyxv7TFLsGTSyq4,4607
46
- circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=ieSOFPnrmToCSEKJKws-D42KkNVb_qJXeSs3-sXaB4I,4818
46
+ circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=ARQ9xUsJjFE1MhLbBSDVb2hFslqUOP8bLpPtYmEnkTQ,5054
47
47
  circle/web3/developer_controlled_wallets/models/fee_level.py,sha256=udtM-56G8JXf7r680EmD404rH6J4IffcfhYIo2pYORE,985
48
48
  circle/web3/developer_controlled_wallets/models/nft.py,sha256=HRrXxplK1UeCOQf27JoOxvM5HqEmuMPPNqD8Pd5xnDY,3756
49
49
  circle/web3/developer_controlled_wallets/models/nfts.py,sha256=9CxeG7e5cO0X9rTMFnJslQYKysdEkRupvqsTsfdqNqc,2733
@@ -56,38 +56,38 @@ circle/web3/developer_controlled_wallets/models/risk_category.py,sha256=33grvah3
56
56
  circle/web3/developer_controlled_wallets/models/risk_score.py,sha256=6fYv3L2IFz4c3YgYqAx16A8BZ_e9wc_H_WPxCligN3U,706
57
57
  circle/web3/developer_controlled_wallets/models/risk_signal.py,sha256=xjcdgecIlFpGX0UihoijlWm8aLNeArAcOr7bHAXCTic,3853
58
58
  circle/web3/developer_controlled_wallets/models/risk_type.py,sha256=QWM4vdDO6z-9GH3lbROk-FCuaX-cMBnhf5WtVGufbUs,654
59
- circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=pwJYdb9fHxHvB71Z2h_mH23uq9nP2VpxlGZCL81ufv4,5874
59
+ circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=PvihtGQzytjR2VW5MoJoVnNblCYFBBey6cXY9zqoInw,5963
60
60
  circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py,sha256=ExlKj_6BQgbRqaUE6O4oFE-P4wpfzIyvNUElNAKqUy8,3470
61
61
  circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py,sha256=G9AKrgLcf411k8-zV349geMrdo6j7t_MxiCIrOyHazE,3000
62
- circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py,sha256=CKuoauXZj7wq-X5MLfr9YX2mFUh4Nahw3BcVs7uN3wY,2992
62
+ circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py,sha256=yMP_0T0BBLule9m5z_RCCKyUMZn_jFOkTAQ7jHWphs4,3104
63
63
  circle/web3/developer_controlled_wallets/models/sign_message_request.py,sha256=JM8zOhqqC4EhFW90ECUVUlfvo7anpeMbNgnla9jVDPI,3927
64
64
  circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=j66otM8GBdtN5epoqhji6jm_2aYECLr4GYsOvSqDxRE,4060
65
65
  circle/web3/developer_controlled_wallets/models/sign_transaction_response.py,sha256=3i97UhivfHJoKym91FR2joK50oiM4zxrNvJSxLlVCJY,2963
66
- circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=PRaumN7FufN-Cp4JWVm-7Ndov-nrSMdjNC_08FFT0EQ,3147
66
+ circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=IeNi8cyvoB6H1gHWUdPR6WFGBjIUwoTWq8MXgh5WaT4,3303
67
67
  circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha256=vMvEUHVOjkexLIriS8rQ6uhpw-IC6uJDYV8u4uPip2Y,3511
68
68
  circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=2c7Az0Q3uLkaMYM3MsZkNFbYp6GWCGEpx3HYl9l7l2U,2890
69
- circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=_xbbfi8I5D1XSSIO5L2PUQKwft8Dk_219bu4o7BIWtY,2682
70
- circle/web3/developer_controlled_wallets/models/token.py,sha256=qLmaVDTtpaeHkNRSHOF6AT7vlAOBriemQtWbCHo_S5k,4292
71
- circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=vnaCb_asLKvzQusdw713iyPbT-jDhaIjwPE2ZaD_mdw,941
69
+ circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=EHT_UKAPRr9kIs1mvjCQKBjlR-tlMSprpaPaMPu__u0,2781
70
+ circle/web3/developer_controlled_wallets/models/token.py,sha256=ni7oNTYPD9y_FStWn3KLKzqT0Chn0rPNDh31Lbm_rE0,4368
71
+ circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=QJ893HRTwHa4mtqqyKvQDYq5OfKIsgp7LeSs_ouLGGE,1035
72
72
  circle/web3/developer_controlled_wallets/models/token_response.py,sha256=QVsuDj3KSBIOIQo4bQmE14O5LHo38aNxDO4moaOSlxk,2866
73
73
  circle/web3/developer_controlled_wallets/models/token_response_data.py,sha256=dJjNCPbQJJjHY55pWkGHdx9jTRVaGFYO3Whx8EuiJzQ,2857
74
74
  circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=CtoV9hUiEiIMnKdXh0d_KZyyvgFtGLO0tkByEIaBjnY,912
75
- circle/web3/developer_controlled_wallets/models/transaction.py,sha256=Ik0OgjU3oQi31gBCiX_7npZyZLkZQgTf_-EdboTQdjQ,11118
75
+ circle/web3/developer_controlled_wallets/models/transaction.py,sha256=isYKO9kCxUfcSTFwWj-kuBpXuKZBev0hSAzGa7MIYBY,11076
76
76
  circle/web3/developer_controlled_wallets/models/transaction_fee.py,sha256=xPVPc6zDJ9xlDcWBk8ffckxPhnCb7AfZevJ9u68OJt4,5800
77
77
  circle/web3/developer_controlled_wallets/models/transaction_response.py,sha256=UIJf3QEx6Pjiw5NvoRIKs31KuHpqEkYxtDfBbMm4cfg,2914
78
78
  circle/web3/developer_controlled_wallets/models/transaction_response_data.py,sha256=PRJIr8-WlSojEHz7Tu9O8B5frWDw1z00ueYKasrb-Eg,2983
79
79
  circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py,sha256=_ExFIvRsdvQFPePIJct4XyBdsWCKSe91fh8WWgNL_kw,4062
80
- circle/web3/developer_controlled_wallets/models/transaction_state.py,sha256=8cjEEbnPwkUfVnPY8_yVdMttS9r-U5qDF5b_MPpGgZc,860
80
+ circle/web3/developer_controlled_wallets/models/transaction_state.py,sha256=jHWDEXyEwxFnl3djgkNPtZfUtKs5JDvrpTS_SpBY8Tg,860
81
81
  circle/web3/developer_controlled_wallets/models/transaction_type.py,sha256=OmQinsZ-TZxCRQDKxZCYy5Yqb61IXDGl3J5O2YqafRU,640
82
82
  circle/web3/developer_controlled_wallets/models/transactions.py,sha256=XZEgP91uUtUUjntyl5QGDSlTSyyaRCUQwjbsX5Dh55k,2853
83
83
  circle/web3/developer_controlled_wallets/models/transactions_data.py,sha256=F_er-dpB4R-DWCeMVIxSVj_bVx0fCk01E6igjIWxboY,3121
84
- circle/web3/developer_controlled_wallets/models/update_wallet_request.py,sha256=Jzgn_q0QnVEIiOztclxN7AVl1diM1xZELGdgupAPu8w,2861
85
- circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py,sha256=rt7obKc9WNBcQtzuiu6FgjR_1lAYky4O2Akg9ArlIjw,2641
84
+ circle/web3/developer_controlled_wallets/models/update_wallet_request.py,sha256=3zs9lpvrOzF2aSKRisSpE-OwghEFBsDnyo1-xa4ny_4,2865
85
+ circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py,sha256=GuqBimbhblOMIOs7ENf6Gsrq66SKKQ7aCXksXXeUB5k,2710
86
86
  circle/web3/developer_controlled_wallets/models/validate_address.py,sha256=BxdgY9SV1HOIs3FkiEftuJLSpQGkZOciCg-bNhadxEI,2866
87
87
  circle/web3/developer_controlled_wallets/models/validate_address_data.py,sha256=M7GvTNr6lAJfWMXIR8jO6r-1oKiZLmKwONri6maRdGM,2605
88
- circle/web3/developer_controlled_wallets/models/validate_address_request.py,sha256=1URC5TIBEscZNHEynijX67mmLQuceXUZqVFjN9K0jbA,2863
89
- circle/web3/developer_controlled_wallets/models/wallet.py,sha256=c-jseN4tfcFK93TnVnKHdf2DAYcIEfSCQ1CC3uNfTMA,4750
90
- circle/web3/developer_controlled_wallets/models/wallet_metadata.py,sha256=Px7sIcHQF9rYNoAtsDkq2fAjMs3qD-rUh3gUqaazXC0,2821
88
+ circle/web3/developer_controlled_wallets/models/validate_address_request.py,sha256=zmkcyNDjlXYZw4kaMaWPUOW2aVPK47bixqapWcnduZQ,2927
89
+ circle/web3/developer_controlled_wallets/models/wallet.py,sha256=D81vwLGZjB14X2vKABWn6yAa6fej5869eOC-IVPrBws,4839
90
+ circle/web3/developer_controlled_wallets/models/wallet_metadata.py,sha256=80on-SXj2N88rn7NlHKD_wKgcwKzOSQzlLFypkZTDzM,2825
91
91
  circle/web3/developer_controlled_wallets/models/wallet_response.py,sha256=6fuhbwpeGQ8LBaKTAPg9D-dXxrD-YmwlNeAxlZV2fdQ,2854
92
92
  circle/web3/developer_controlled_wallets/models/wallet_response_data.py,sha256=vmeq-EoCnSj1sFYYFbkEuYgxNUXQaClZjm72QQAj1Rk,2925
93
93
  circle/web3/developer_controlled_wallets/models/wallet_set.py,sha256=36XfbZN1HNSlupjl-9MXkd3vzI5VxOXCFDLKLZEkLJs,2989
@@ -100,7 +100,7 @@ circle/web3/developer_controlled_wallets/models/wallet_state.py,sha256=sM_nM5aSI
100
100
  circle/web3/developer_controlled_wallets/models/wallets.py,sha256=FtATAK5iH8ZBPEiG-kphwFrxu_zqca16ptkXJPpYFBk,2769
101
101
  circle/web3/developer_controlled_wallets/models/wallets_data.py,sha256=WBtomlq7WnzoNQ6ujPCqR_JbNh1sDkYzfdEp7afOdwk,3080
102
102
  circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sha256=Qob2-DdcoyAx3pzDq8YJvB7u9RGqWJ5FP9M6M6c_Fzg,5163
103
- circle_developer_controlled_wallets-3.0.0.dist-info/METADATA,sha256=kjYjmfoWBYmW9Sriqb5RIE0P54jMgMP5PY8qgunSUOU,5846
104
- circle_developer_controlled_wallets-3.0.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
105
- circle_developer_controlled_wallets-3.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
106
- circle_developer_controlled_wallets-3.0.0.dist-info/RECORD,,
103
+ circle_developer_controlled_wallets-5.0.0.dist-info/METADATA,sha256=8Uw5kDgBG-dj3zV6GUexFt_b9C553j0Pa2_0arOUuBc,5992
104
+ circle_developer_controlled_wallets-5.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
105
+ circle_developer_controlled_wallets-5.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
106
+ circle_developer_controlled_wallets-5.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5