circle-developer-controlled-wallets 6.2.0__tar.gz → 6.3.0__tar.gz

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 (225) hide show
  1. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/PKG-INFO +4 -4
  2. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/README.md +1 -1
  3. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/__init__.py +1 -1
  4. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/signing_api.py +2 -2
  5. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/wallets_api.py +8 -8
  6. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api_client.py +1 -1
  7. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/configuration.py +1 -1
  8. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/account_type.py +1 -1
  9. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/blockchain.py +2 -0
  10. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/eoa_wallet.py +1 -1
  11. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py +1 -1
  12. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sca_wallet.py +1 -1
  13. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py +1 -1
  14. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/token_blockchain.py +2 -0
  15. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle_developer_controlled_wallets.egg-info/PKG-INFO +4 -4
  16. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle_developer_controlled_wallets.egg-info/requires.txt +2 -2
  17. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/pyproject.toml +1 -1
  18. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/setup.py +3 -3
  19. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_accelerate_transaction_for_developer_request.py +2 -2
  20. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_cancel_transaction_for_developer_request.py +2 -2
  21. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_contract_execution_transaction_for_developer_request.py +2 -2
  22. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_transfer_transaction_for_developer_request.py +2 -2
  23. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_wallet_request.py +2 -2
  24. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_wallet_set_request.py +2 -2
  25. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_wallet_upgrade_transaction_for_developer_request.py +2 -2
  26. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_delegate_action_request.py +2 -2
  27. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_message_request.py +2 -2
  28. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_transaction_request.py +2 -2
  29. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_typed_data_request.py +2 -2
  30. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/__init__.py +0 -0
  31. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/__init__.py +0 -0
  32. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/__init__.py +0 -0
  33. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/token_lookup_api.py +0 -0
  34. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/transactions_api.py +0 -0
  35. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api/wallet_sets_api.py +0 -0
  36. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/api_response.py +0 -0
  37. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/exceptions.py +0 -0
  38. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/__init__.py +0 -0
  39. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py +0 -0
  40. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py +0 -0
  41. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py +0 -0
  42. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py +0 -0
  43. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/bad_request_response.py +0 -0
  44. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/balance.py +0 -0
  45. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/balances.py +0 -0
  46. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/balances_data.py +0 -0
  47. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/base_screening_decision.py +0 -0
  48. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py +0 -0
  49. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py +0 -0
  50. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py +0 -0
  51. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py +0 -0
  52. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +0 -0
  53. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +0 -0
  54. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py +0 -0
  55. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py +0 -0
  56. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_wallet_request.py +0 -0
  57. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py +0 -0
  58. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer.py +0 -0
  59. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer_request.py +0 -0
  60. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/custody_type.py +0 -0
  61. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/derive_wallet_request.py +0 -0
  62. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/developer_wallet_set.py +0 -0
  63. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py +0 -0
  64. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/error.py +0 -0
  65. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +0 -0
  66. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py +0 -0
  67. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py +0 -0
  68. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +0 -0
  69. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/evm_blockchain.py +0 -0
  70. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/fee_level.py +0 -0
  71. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/new_sca_core.py +0 -0
  72. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/nft.py +0 -0
  73. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/nfts.py +0 -0
  74. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/nfts_data.py +0 -0
  75. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/not_authorized_response.py +0 -0
  76. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/not_found_response.py +0 -0
  77. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/operation.py +0 -0
  78. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/risk_action.py +0 -0
  79. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/risk_category.py +0 -0
  80. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/risk_score.py +0 -0
  81. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/risk_signal.py +0 -0
  82. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/risk_type.py +0 -0
  83. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sca_core.py +0 -0
  84. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py +0 -0
  85. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py +0 -0
  86. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py +0 -0
  87. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_message_request.py +0 -0
  88. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +0 -0
  89. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response.py +0 -0
  90. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +0 -0
  91. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py +0 -0
  92. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/signature_response.py +0 -0
  93. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/signature_response_data.py +0 -0
  94. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/token.py +0 -0
  95. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/token_response.py +0 -0
  96. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/token_response_data.py +0 -0
  97. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/token_standard.py +0 -0
  98. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction.py +0 -0
  99. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_fee.py +0 -0
  100. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_response.py +0 -0
  101. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_response_data.py +0 -0
  102. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py +0 -0
  103. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_state.py +0 -0
  104. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transaction_type.py +0 -0
  105. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transactions.py +0 -0
  106. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/transactions_data.py +0 -0
  107. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/update_wallet_request.py +0 -0
  108. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py +0 -0
  109. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/validate_address.py +0 -0
  110. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/validate_address_data.py +0 -0
  111. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/validate_address_request.py +0 -0
  112. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet.py +0 -0
  113. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_metadata.py +0 -0
  114. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_response.py +0 -0
  115. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_response_data.py +0 -0
  116. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_set.py +0 -0
  117. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response.py +0 -0
  118. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response_data.py +0 -0
  119. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_sets.py +0 -0
  120. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data.py +0 -0
  121. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data_wallet_sets_inner.py +0 -0
  122. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallet_state.py +0 -0
  123. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets.py +0 -0
  124. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets_data.py +0 -0
  125. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py +0 -0
  126. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances.py +0 -0
  127. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances_data.py +0 -0
  128. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances_data_wallets_inner.py +0 -0
  129. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/py.typed +0 -0
  130. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle/web3/developer_controlled_wallets/rest.py +0 -0
  131. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle_developer_controlled_wallets.egg-info/SOURCES.txt +0 -0
  132. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle_developer_controlled_wallets.egg-info/dependency_links.txt +0 -0
  133. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/circle_developer_controlled_wallets.egg-info/top_level.txt +0 -0
  134. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/setup.cfg +0 -0
  135. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_abi_parameters_inner.py +0 -0
  136. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_accelerate_transaction_for_developer.py +0 -0
  137. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_accelerate_transaction_for_developer_data.py +0 -0
  138. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_account_type.py +0 -0
  139. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_bad_request_response.py +0 -0
  140. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_balance.py +0 -0
  141. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_balances.py +0 -0
  142. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_balances_data.py +0 -0
  143. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_base_screening_decision.py +0 -0
  144. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_blockchain.py +0 -0
  145. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_cancel_transaction_for_developer.py +0 -0
  146. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_contract_execution_blockchain.py +0 -0
  147. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_contract_execution_transaction_for_developer.py +0 -0
  148. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_transfer_transaction_for_developer_response.py +0 -0
  149. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_transfer_transaction_for_developer_response_data.py +0 -0
  150. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_create_wallet_upgrade_transaction_for_developer.py +0 -0
  151. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_custody_type.py +0 -0
  152. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_derive_wallet_request.py +0 -0
  153. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_developer_wallet_set.py +0 -0
  154. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_end_user_wallet_set.py +0 -0
  155. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_eoa_wallet.py +0 -0
  156. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_eoa_wallet_with_balances.py +0 -0
  157. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_error.py +0 -0
  158. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_estimate_contract_execution_transaction_fee_request.py +0 -0
  159. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_estimate_transaction_fee.py +0 -0
  160. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_estimate_transaction_fee_data.py +0 -0
  161. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_estimate_transfer_transaction_fee_request.py +0 -0
  162. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_evm_blockchain.py +0 -0
  163. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_fee_level.py +0 -0
  164. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_new_sca_core.py +0 -0
  165. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_nft.py +0 -0
  166. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_nfts.py +0 -0
  167. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_nfts_data.py +0 -0
  168. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_not_authorized_response.py +0 -0
  169. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_not_found_response.py +0 -0
  170. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_operation.py +0 -0
  171. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_risk_action.py +0 -0
  172. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_risk_category.py +0 -0
  173. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_risk_score.py +0 -0
  174. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_risk_signal.py +0 -0
  175. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_risk_type.py +0 -0
  176. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sca_core.py +0 -0
  177. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sca_wallet.py +0 -0
  178. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sca_wallet_with_balances.py +0 -0
  179. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_delegate_action_response.py +0 -0
  180. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_delegate_action_response_data.py +0 -0
  181. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_transaction_response.py +0 -0
  182. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_sign_transaction_response_data.py +0 -0
  183. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_signature_response.py +0 -0
  184. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_signature_response_data.py +0 -0
  185. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_signing_api.py +0 -0
  186. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token.py +0 -0
  187. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token_blockchain.py +0 -0
  188. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token_lookup_api.py +0 -0
  189. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token_response.py +0 -0
  190. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token_response_data.py +0 -0
  191. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_token_standard.py +0 -0
  192. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction.py +0 -0
  193. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_fee.py +0 -0
  194. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_response.py +0 -0
  195. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_response_data.py +0 -0
  196. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_screening_decision.py +0 -0
  197. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_state.py +0 -0
  198. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transaction_type.py +0 -0
  199. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transactions.py +0 -0
  200. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transactions_api.py +0 -0
  201. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_transactions_data.py +0 -0
  202. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_update_wallet_request.py +0 -0
  203. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_update_wallet_set_request.py +0 -0
  204. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_validate_address.py +0 -0
  205. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_validate_address_data.py +0 -0
  206. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_validate_address_request.py +0 -0
  207. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet.py +0 -0
  208. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_metadata.py +0 -0
  209. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_response.py +0 -0
  210. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_response_data.py +0 -0
  211. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_set.py +0 -0
  212. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_set_response.py +0 -0
  213. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_set_response_data.py +0 -0
  214. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_sets.py +0 -0
  215. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_sets_api.py +0 -0
  216. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_sets_data.py +0 -0
  217. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_sets_data_wallet_sets_inner.py +0 -0
  218. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallet_state.py +0 -0
  219. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets.py +0 -0
  220. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_api.py +0 -0
  221. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_data.py +0 -0
  222. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_data_wallets_inner.py +0 -0
  223. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_with_balances.py +0 -0
  224. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_with_balances_data.py +0 -0
  225. {circle_developer_controlled_wallets-6.2.0 → circle_developer_controlled_wallets-6.3.0}/test/test_wallets_with_balances_data_wallets_inner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 6.2.0
3
+ Version: 6.3.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,8 +12,8 @@ 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==6.2.0
16
- Requires-Dist: circle-web3-sdk-util==6.2.0
15
+ Requires-Dist: circle-configurations==6.3.0
16
+ Requires-Dist: circle-web3-sdk-util==6.3.0
17
17
  Dynamic: author
18
18
  Dynamic: author-email
19
19
  Dynamic: description
@@ -25,7 +25,7 @@ Dynamic: summary
25
25
  # circle-developer-controlled-wallets
26
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).
27
27
 
28
- - Package version: 6.2.0
28
+ - Package version: 6.3.0
29
29
 
30
30
  ## Requirements.
31
31
 
@@ -1,7 +1,7 @@
1
1
  # circle-developer-controlled-wallets
2
2
  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).
3
3
 
4
- - Package version: 6.2.0
4
+ - Package version: 6.3.0
5
5
 
6
6
  ## Requirements.
7
7
 
@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "6.2.0"
13
+ __version__ = "6.3.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -228,7 +228,7 @@ class SigningApi(object):
228
228
  def sign_message(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
229
229
  """Sign message # noqa: E501
230
230
 
231
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for both Ethereum-based blockchains (using EIP-191) and Solana (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/. # noqa: E501
232
232
  This method makes a synchronous HTTP request by default. To make an
233
233
  asynchronous HTTP request, please pass async_req=True
234
234
 
@@ -260,7 +260,7 @@ class SigningApi(object):
260
260
  def sign_message_with_http_info(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
261
261
  """Sign message # noqa: E501
262
262
 
263
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for both Ethereum-based blockchains (using EIP-191) and Solana (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/. # 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
 
@@ -1040,7 +1040,7 @@ class WalletsApi(object):
1040
1040
 
1041
1041
  @auto_fill
1042
1042
  @validate_arguments
1043
- def list_wallet_balance(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> Balances: # noqa: E501
1043
+ def list_wallet_balance(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> Balances: # noqa: E501
1044
1044
  """Get token balance for a wallet # noqa: E501
1045
1045
 
1046
1046
  Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
@@ -1058,7 +1058,7 @@ class WalletsApi(object):
1058
1058
  :type name: str
1059
1059
  :param token_address: Filter by token address.
1060
1060
  :type token_address: str
1061
- :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
1061
+ :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
1062
1062
  :type standard: TokenStandard
1063
1063
  :param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1064
1064
  :type page_before: str
@@ -1086,7 +1086,7 @@ class WalletsApi(object):
1086
1086
 
1087
1087
  @auto_fill
1088
1088
  @validate_arguments
1089
- def list_wallet_balance_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> ApiResponse: # noqa: E501
1089
+ def list_wallet_balance_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> ApiResponse: # noqa: E501
1090
1090
  """Get token balance for a wallet # noqa: E501
1091
1091
 
1092
1092
  Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
@@ -1104,7 +1104,7 @@ class WalletsApi(object):
1104
1104
  :type name: str
1105
1105
  :param token_address: Filter by token address.
1106
1106
  :type token_address: str
1107
- :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
1107
+ :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
1108
1108
  :type standard: TokenStandard
1109
1109
  :param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1110
1110
  :type page_before: str
@@ -1247,7 +1247,7 @@ class WalletsApi(object):
1247
1247
 
1248
1248
  @auto_fill
1249
1249
  @validate_arguments
1250
- def list_wallet_nfts(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> Nfts: # noqa: E501
1250
+ def list_wallet_nfts(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> Nfts: # noqa: E501
1251
1251
  """Get NFTs for a wallet # noqa: E501
1252
1252
 
1253
1253
  Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
@@ -1265,7 +1265,7 @@ class WalletsApi(object):
1265
1265
  :type name: str
1266
1266
  :param token_address: Filter by token address.
1267
1267
  :type token_address: str
1268
- :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
1268
+ :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
1269
1269
  :type standard: TokenStandard
1270
1270
  :param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1271
1271
  :type page_before: str
@@ -1293,7 +1293,7 @@ class WalletsApi(object):
1293
1293
 
1294
1294
  @auto_fill
1295
1295
  @validate_arguments
1296
- def list_wallet_nfts_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> ApiResponse: # noqa: E501
1296
+ def list_wallet_nfts_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = 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) -> ApiResponse: # noqa: E501
1297
1297
  """Get NFTs for a wallet # noqa: E501
1298
1298
 
1299
1299
  Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
@@ -1311,7 +1311,7 @@ class WalletsApi(object):
1311
1311
  :type name: str
1312
1312
  :param token_address: Filter by token address.
1313
1313
  :type token_address: str
1314
- :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
1314
+ :param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
1315
1315
  :type standard: TokenStandard
1316
1316
  :param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
1317
1317
  :type page_before: str
@@ -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 / 6.2.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 6.3.0'
81
81
  self.client_side_validation = configuration.client_side_validation
82
82
 
83
83
  def __enter__(self):
@@ -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: 6.2.0".\
386
+ "SDK Package Version: 6.3.0".\
387
387
  format(env=sys.platform, pyversion=sys.version)
388
388
 
389
389
  def get_host_settings(self):
@@ -19,7 +19,7 @@ from aenum import Enum, no_arg
19
19
 
20
20
  class AccountType(str, Enum):
21
21
  """
22
- An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA).
22
+ An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana and Aptos don't support Smart Contract Account (SCA).
23
23
  """
24
24
 
25
25
  """
@@ -45,6 +45,8 @@ class Blockchain(str, Enum):
45
45
  BASE_MINUS_SEPOLIA = 'BASE-SEPOLIA'
46
46
  OP = 'OP'
47
47
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
48
+ APTOS = 'APTOS'
49
+ APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
48
50
 
49
51
  @classmethod
50
52
  def from_json(cls, json_str: str) -> Blockchain:
@@ -36,7 +36,7 @@ class EOAWallet(BaseModel):
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.")
37
37
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
38
38
  initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
39
- account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
39
+ account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana and Aptos don't support Smart Contract Account (SCA). ")
40
40
  __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType"]
41
41
 
42
42
  def __init__(self, **kwargs):
@@ -37,7 +37,7 @@ class EOAWalletWithBalances(BaseModel):
37
37
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
38
38
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
39
39
  initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
40
- account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
40
+ account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana and Aptos don't support Smart Contract Account (SCA). ")
41
41
  token_balances: conlist(Balance) = Field(..., alias="tokenBalances", description="Lists native token balances and, if specified, USDC/EURC balances for the wallets.")
42
42
  __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "tokenBalances"]
43
43
 
@@ -37,7 +37,7 @@ class SCAWallet(BaseModel):
37
37
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
38
38
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
39
39
  initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
40
- account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
40
+ account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana and Aptos don't support Smart Contract Account (SCA). ")
41
41
  sca_core: ScaCore = Field(..., alias="scaCore")
42
42
  __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "scaCore"]
43
43
 
@@ -38,7 +38,7 @@ class SCAWalletWithBalances(BaseModel):
38
38
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
39
39
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
40
40
  initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
41
- account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
41
+ account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana and Aptos don't support Smart Contract Account (SCA). ")
42
42
  sca_core: ScaCore = Field(..., alias="scaCore")
43
43
  token_balances: conlist(Balance) = Field(..., alias="tokenBalances", description="Lists native token balances and, if specified, USDC/EURC balances for the wallets.")
44
44
  __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "scaCore", "tokenBalances"]
@@ -41,6 +41,8 @@ class TokenBlockchain(str, Enum):
41
41
  BASE_MINUS_SEPOLIA = 'BASE-SEPOLIA'
42
42
  OP = 'OP'
43
43
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
44
+ APTOS = 'APTOS'
45
+ APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
44
46
 
45
47
  @classmethod
46
48
  def from_json(cls, json_str: str) -> TokenBlockchain:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 6.2.0
3
+ Version: 6.3.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,8 +12,8 @@ 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==6.2.0
16
- Requires-Dist: circle-web3-sdk-util==6.2.0
15
+ Requires-Dist: circle-configurations==6.3.0
16
+ Requires-Dist: circle-web3-sdk-util==6.3.0
17
17
  Dynamic: author
18
18
  Dynamic: author-email
19
19
  Dynamic: description
@@ -25,7 +25,7 @@ Dynamic: summary
25
25
  # circle-developer-controlled-wallets
26
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).
27
27
 
28
- - Package version: 6.2.0
28
+ - Package version: 6.3.0
29
29
 
30
30
  ## Requirements.
31
31
 
@@ -3,5 +3,5 @@ python-dateutil
3
3
  pydantic<2,>=1.10.5
4
4
  aenum
5
5
  pycryptodome>=3.20.0
6
- circle-configurations==6.2.0
7
- circle-web3-sdk-util==6.2.0
6
+ circle-configurations==6.3.0
7
+ circle-web3-sdk-util==6.3.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "circle.web3.developer_controlled_wallets"
3
- version = "6.2.0"
3
+ version = "6.3.0"
4
4
  description = "Developer-Controlled Wallets"
5
5
  authors = ["OpenAPI Generator Community <team@openapitools.org>"]
6
6
  license = "NoLicense"
@@ -18,7 +18,7 @@ import pathlib
18
18
  # prerequisite: setuptools
19
19
  # http://pypi.python.org/pypi/setuptools
20
20
  NAME = "circle-developer-controlled-wallets"
21
- VERSION = "6.2.0"
21
+ VERSION = "6.3.0"
22
22
  PYTHON_REQUIRES = ">=3.7"
23
23
  REQUIRES = [
24
24
  "urllib3 >= 1.25.3, < 2.1.0",
@@ -26,8 +26,8 @@ REQUIRES = [
26
26
  "pydantic >= 1.10.5, < 2",
27
27
  "aenum",
28
28
  "pycryptodome >= 3.20.0",
29
- "circle-configurations == 6.2.0",
30
- "circle-web3-sdk-util == 6.2.0"
29
+ "circle-configurations == 6.3.0",
30
+ "circle-web3-sdk-util == 6.3.0"
31
31
  ]
32
32
 
33
33
  here = pathlib.Path(__file__).parent.resolve()
@@ -35,12 +35,12 @@ class TestAccelerateTransactionForDeveloperRequest(unittest.TestCase):
35
35
  if include_optional :
36
36
  return AccelerateTransactionForDeveloperRequest(
37
37
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
38
- entity_secret_ciphertext = '[B@448b808a'
38
+ entity_secret_ciphertext = '[B@20ab76ee'
39
39
  )
40
40
  else :
41
41
  return AccelerateTransactionForDeveloperRequest(
42
42
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
43
- entity_secret_ciphertext = '[B@448b808a',
43
+ entity_secret_ciphertext = '[B@20ab76ee',
44
44
  )
45
45
  """
46
46
 
@@ -35,12 +35,12 @@ class TestCancelTransactionForDeveloperRequest(unittest.TestCase):
35
35
  if include_optional :
36
36
  return CancelTransactionForDeveloperRequest(
37
37
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
38
- entity_secret_ciphertext = '[B@448b808a'
38
+ entity_secret_ciphertext = '[B@20ab76ee'
39
39
  )
40
40
  else :
41
41
  return CancelTransactionForDeveloperRequest(
42
42
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
43
- entity_secret_ciphertext = '[B@448b808a',
43
+ entity_secret_ciphertext = '[B@20ab76ee',
44
44
  )
45
45
  """
46
46
 
@@ -40,7 +40,7 @@ class TestCreateContractExecutionTransactionForDeveloperRequest(unittest.TestCas
40
40
  call_data = '0xcdcd77c000000000000000000000000000000000000000000000000000000000000000450000000000000000000000000000000000000000000000000000000000000001',
41
41
  amount = '1.0',
42
42
  contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
43
- entity_secret_ciphertext = '[B@448b808a',
43
+ entity_secret_ciphertext = '[B@20ab76ee',
44
44
  fee_level = 'MEDIUM',
45
45
  gas_limit = '21000',
46
46
  gas_price = '',
@@ -53,7 +53,7 @@ class TestCreateContractExecutionTransactionForDeveloperRequest(unittest.TestCas
53
53
  return CreateContractExecutionTransactionForDeveloperRequest(
54
54
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
55
55
  contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',
56
- entity_secret_ciphertext = '[B@448b808a',
56
+ entity_secret_ciphertext = '[B@20ab76ee',
57
57
  wallet_id = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
58
58
  )
59
59
  """
@@ -37,7 +37,7 @@ class TestCreateTransferTransactionForDeveloperRequest(unittest.TestCase):
37
37
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
38
38
  amounts = ["6.62607015"],
39
39
  destination_address = '0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350',
40
- entity_secret_ciphertext = '[B@448b808a',
40
+ entity_secret_ciphertext = '[B@20ab76ee',
41
41
  fee_level = 'MEDIUM',
42
42
  gas_limit = '21000',
43
43
  gas_price = '',
@@ -56,7 +56,7 @@ class TestCreateTransferTransactionForDeveloperRequest(unittest.TestCase):
56
56
  return CreateTransferTransactionForDeveloperRequest(
57
57
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
58
58
  destination_address = '0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350',
59
- entity_secret_ciphertext = '[B@448b808a',
59
+ entity_secret_ciphertext = '[B@20ab76ee',
60
60
  wallet_id = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
61
61
  )
62
62
  """
@@ -40,7 +40,7 @@ class TestCreateWalletRequest(unittest.TestCase):
40
40
  'MATIC-AMOY'
41
41
  ],
42
42
  count = 2,
43
- entity_secret_ciphertext = '[B@448b808a',
43
+ entity_secret_ciphertext = '[B@20ab76ee',
44
44
  metadata = [
45
45
  circle.web3.developer_controlled_wallets.models.wallet_metadata.WalletMetadata(
46
46
  name = '',
@@ -54,7 +54,7 @@ class TestCreateWalletRequest(unittest.TestCase):
54
54
  blockchains = [
55
55
  'MATIC-AMOY'
56
56
  ],
57
- entity_secret_ciphertext = '[B@448b808a',
57
+ entity_secret_ciphertext = '[B@20ab76ee',
58
58
  wallet_set_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
59
59
  )
60
60
  """
@@ -34,13 +34,13 @@ class TestCreateWalletSetRequest(unittest.TestCase):
34
34
  model = circle.web3.developer_controlled_wallets.models.create_wallet_set_request.CreateWalletSetRequest() # noqa: E501
35
35
  if include_optional :
36
36
  return CreateWalletSetRequest(
37
- entity_secret_ciphertext = '[B@448b808a',
37
+ entity_secret_ciphertext = '[B@20ab76ee',
38
38
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
39
39
  name = ''
40
40
  )
41
41
  else :
42
42
  return CreateWalletSetRequest(
43
- entity_secret_ciphertext = '[B@448b808a',
43
+ entity_secret_ciphertext = '[B@20ab76ee',
44
44
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
45
45
  )
46
46
  """
@@ -36,7 +36,7 @@ class TestCreateWalletUpgradeTransactionForDeveloperRequest(unittest.TestCase):
36
36
  return CreateWalletUpgradeTransactionForDeveloperRequest(
37
37
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
38
38
  new_sca_core = 'circle_6900_singleowner_v2',
39
- entity_secret_ciphertext = '[B@448b808a',
39
+ entity_secret_ciphertext = '[B@20ab76ee',
40
40
  fee_level = 'MEDIUM',
41
41
  gas_limit = '21000',
42
42
  gas_price = '',
@@ -49,7 +49,7 @@ class TestCreateWalletUpgradeTransactionForDeveloperRequest(unittest.TestCase):
49
49
  return CreateWalletUpgradeTransactionForDeveloperRequest(
50
50
  idempotency_key = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
51
51
  new_sca_core = 'circle_6900_singleowner_v2',
52
- entity_secret_ciphertext = '[B@448b808a',
52
+ entity_secret_ciphertext = '[B@20ab76ee',
53
53
  wallet_id = 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11',
54
54
  )
55
55
  """
@@ -36,13 +36,13 @@ class TestSignDelegateActionRequest(unittest.TestCase):
36
36
  return SignDelegateActionRequest(
37
37
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
38
38
  unsigned_delegate_action = 'AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAIAAQROrEbiYfF3zCII9...',
39
- entity_secret_ciphertext = '[B@448b808a'
39
+ entity_secret_ciphertext = '[B@20ab76ee'
40
40
  )
41
41
  else :
42
42
  return SignDelegateActionRequest(
43
43
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
44
44
  unsigned_delegate_action = 'AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAIAAQROrEbiYfF3zCII9...',
45
- entity_secret_ciphertext = '[B@448b808a',
45
+ entity_secret_ciphertext = '[B@20ab76ee',
46
46
  )
47
47
  """
48
48
 
@@ -38,13 +38,13 @@ class TestSignMessageRequest(unittest.TestCase):
38
38
  encoded_by_hex = False,
39
39
  message = 'I agree with this transfer',
40
40
  memo = 'Transfer USDC to Sam',
41
- entity_secret_ciphertext = '[B@448b808a'
41
+ entity_secret_ciphertext = '[B@20ab76ee'
42
42
  )
43
43
  else :
44
44
  return SignMessageRequest(
45
45
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
46
46
  message = 'I agree with this transfer',
47
- entity_secret_ciphertext = '[B@448b808a',
47
+ entity_secret_ciphertext = '[B@20ab76ee',
48
48
  )
49
49
  """
50
50
 
@@ -38,12 +38,12 @@ class TestSignTransactionRequest(unittest.TestCase):
38
38
  raw_transaction = 'AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAIAAQROrEbiYfF3zCII9...',
39
39
  transaction = '{"nonce":1,"to":"0x9e4ebf23f713268b8e72cd162337f20c536357c9","value":"10000000000000000","gas":"21000","maxFeePerGas":"42000000000","maxPriorityFeePerGas":"25000000000","chainId":80002}',
40
40
  memo = 'Transfer USDC to Sam',
41
- entity_secret_ciphertext = '[B@448b808a'
41
+ entity_secret_ciphertext = '[B@20ab76ee'
42
42
  )
43
43
  else :
44
44
  return SignTransactionRequest(
45
45
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
46
- entity_secret_ciphertext = '[B@448b808a',
46
+ entity_secret_ciphertext = '[B@20ab76ee',
47
47
  )
48
48
  """
49
49
 
@@ -37,13 +37,13 @@ class TestSignTypedDataRequest(unittest.TestCase):
37
37
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
38
38
  data = '{ "types": { "Data": [{ "name": "dummy", "type": "string" }],"EIP712Domain":[{ "name": "name", "type": "string" },{ "name": "chainId", "type": "uint256" }]}, "domain": { "name": "Test", "chainId": 1337 }, "primaryType": "Data", "message": { "dummy": "dummy" }}',
39
39
  memo = 'Transfer USDC to Sam',
40
- entity_secret_ciphertext = '[B@448b808a'
40
+ entity_secret_ciphertext = '[B@20ab76ee'
41
41
  )
42
42
  else :
43
43
  return SignTypedDataRequest(
44
44
  wallet_id = 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
45
45
  data = '{ "types": { "Data": [{ "name": "dummy", "type": "string" }],"EIP712Domain":[{ "name": "name", "type": "string" },{ "name": "chainId", "type": "uint256" }]}, "domain": { "name": "Test", "chainId": 1337 }, "primaryType": "Data", "message": { "dummy": "dummy" }}',
46
- entity_secret_ciphertext = '[B@448b808a',
46
+ entity_secret_ciphertext = '[B@20ab76ee',
47
47
  )
48
48
  """
49
49