circle-developer-controlled-wallets 3.0.0__tar.gz → 4.0.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 (204) hide show
  1. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/PKG-INFO +4 -4
  2. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/README.md +1 -1
  3. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/__init__.py +2 -2
  4. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/signing_api.py +6 -2
  5. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/token_lookup_api.py +2 -0
  6. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/transactions_api.py +53 -31
  7. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/wallets_api.py +20 -14
  8. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api_client.py +1 -1
  9. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/configuration.py +1 -1
  10. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/__init__.py +1 -1
  11. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/blockchain.py +1 -0
  12. circle_developer_controlled_wallets-3.0.0/circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request_blockchain.py → circle_developer_controlled_wallets-4.0.0/circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py +5 -5
  13. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +1 -1
  14. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +2 -2
  15. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py +1 -1
  16. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/eoa_wallet.py +2 -2
  17. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +4 -4
  18. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +3 -3
  19. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sca_wallet.py +2 -2
  20. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py +1 -1
  21. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +2 -2
  22. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/signature_response_data.py +1 -1
  23. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/token.py +1 -1
  24. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/token_blockchain.py +2 -1
  25. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction.py +4 -4
  26. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/update_wallet_request.py +1 -1
  27. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py +2 -2
  28. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/validate_address_request.py +1 -1
  29. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet.py +2 -2
  30. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_metadata.py +1 -1
  31. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle_developer_controlled_wallets.egg-info/PKG-INFO +4 -4
  32. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle_developer_controlled_wallets.egg-info/SOURCES.txt +2 -2
  33. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle_developer_controlled_wallets.egg-info/requires.txt +2 -2
  34. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/pyproject.toml +1 -1
  35. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/setup.py +3 -3
  36. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_accelerate_transaction_for_developer_request.py +2 -2
  37. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_cancel_transaction_for_developer.py +2 -2
  38. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_cancel_transaction_for_developer_request.py +2 -2
  39. circle_developer_controlled_wallets-4.0.0/test/test_contract_execution_blockchain.py +32 -0
  40. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_contract_execution_transaction_for_developer.py +2 -2
  41. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_contract_execution_transaction_for_developer_request.py +2 -2
  42. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_transfer_transaction_for_developer_request.py +2 -2
  43. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_transfer_transaction_for_developer_response.py +1 -1
  44. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_transfer_transaction_for_developer_response_data.py +2 -2
  45. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_wallet_request.py +5 -5
  46. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_create_wallet_set_request.py +3 -3
  47. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_eoa_wallet.py +3 -3
  48. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sca_wallet.py +3 -3
  49. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_delegate_action_request.py +2 -2
  50. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_message_request.py +2 -2
  51. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_transaction_request.py +2 -2
  52. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_typed_data_request.py +2 -2
  53. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_signature_response.py +2 -2
  54. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_signature_response_data.py +2 -2
  55. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction.py +5 -5
  56. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_response.py +8 -8
  57. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_response_data.py +4 -4
  58. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transactions.py +4 -4
  59. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transactions_data.py +4 -4
  60. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_update_wallet_request.py +1 -1
  61. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_update_wallet_set_request.py +1 -1
  62. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet.py +3 -3
  63. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_metadata.py +1 -1
  64. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallets_data_wallets_inner.py +3 -3
  65. circle_developer_controlled_wallets-3.0.0/test/test_estimate_contract_execution_transaction_fee_request_blockchain.py +0 -32
  66. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/__init__.py +0 -0
  67. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/__init__.py +0 -0
  68. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/__init__.py +0 -0
  69. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api/wallet_sets_api.py +0 -0
  70. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/api_response.py +0 -0
  71. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/exceptions.py +0 -0
  72. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py +0 -0
  73. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py +0 -0
  74. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py +0 -0
  75. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py +0 -0
  76. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/account_type.py +0 -0
  77. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/bad_request_response.py +0 -0
  78. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/balance.py +0 -0
  79. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/balances.py +0 -0
  80. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/balances_data.py +0 -0
  81. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/base_screening_decision.py +0 -0
  82. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py +0 -0
  83. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py +0 -0
  84. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py +0 -0
  85. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py +0 -0
  86. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py +0 -0
  87. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/create_wallet_request.py +0 -0
  88. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/custody_type.py +0 -0
  89. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/developer_wallet_set.py +0 -0
  90. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py +0 -0
  91. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/error.py +0 -0
  92. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py +0 -0
  93. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py +0 -0
  94. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/fee_level.py +0 -0
  95. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/nft.py +0 -0
  96. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/nfts.py +0 -0
  97. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/nfts_data.py +0 -0
  98. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/not_authorized_response.py +0 -0
  99. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/not_found_response.py +0 -0
  100. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/operation.py +0 -0
  101. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/risk_action.py +0 -0
  102. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/risk_category.py +0 -0
  103. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/risk_score.py +0 -0
  104. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/risk_signal.py +0 -0
  105. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/risk_type.py +0 -0
  106. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py +0 -0
  107. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py +0 -0
  108. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_message_request.py +0 -0
  109. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +0 -0
  110. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response.py +0 -0
  111. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py +0 -0
  112. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/signature_response.py +0 -0
  113. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/token_response.py +0 -0
  114. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/token_response_data.py +0 -0
  115. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/token_standard.py +0 -0
  116. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_fee.py +0 -0
  117. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_response.py +0 -0
  118. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_response_data.py +0 -0
  119. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py +0 -0
  120. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_state.py +5 -5
  121. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transaction_type.py +0 -0
  122. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transactions.py +0 -0
  123. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/transactions_data.py +0 -0
  124. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/validate_address.py +0 -0
  125. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/validate_address_data.py +0 -0
  126. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_response.py +0 -0
  127. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_response_data.py +0 -0
  128. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_set.py +0 -0
  129. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response.py +0 -0
  130. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response_data.py +0 -0
  131. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_sets.py +0 -0
  132. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data.py +0 -0
  133. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data_wallet_sets_inner.py +0 -0
  134. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallet_state.py +0 -0
  135. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallets.py +0 -0
  136. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallets_data.py +0 -0
  137. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py +0 -0
  138. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/py.typed +0 -0
  139. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle/web3/developer_controlled_wallets/rest.py +0 -0
  140. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle_developer_controlled_wallets.egg-info/dependency_links.txt +0 -0
  141. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/circle_developer_controlled_wallets.egg-info/top_level.txt +0 -0
  142. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/setup.cfg +0 -0
  143. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_abi_parameters_inner.py +0 -0
  144. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_accelerate_transaction_for_developer.py +0 -0
  145. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_accelerate_transaction_for_developer_data.py +0 -0
  146. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_account_type.py +0 -0
  147. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_bad_request_response.py +0 -0
  148. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_balance.py +0 -0
  149. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_balances.py +0 -0
  150. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_balances_data.py +0 -0
  151. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_base_screening_decision.py +0 -0
  152. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_blockchain.py +0 -0
  153. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_custody_type.py +0 -0
  154. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_developer_wallet_set.py +0 -0
  155. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_end_user_wallet_set.py +0 -0
  156. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_error.py +0 -0
  157. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_estimate_contract_execution_transaction_fee_request.py +0 -0
  158. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_estimate_transaction_fee.py +0 -0
  159. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_estimate_transaction_fee_data.py +0 -0
  160. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_estimate_transfer_transaction_fee_request.py +0 -0
  161. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_fee_level.py +0 -0
  162. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_nft.py +0 -0
  163. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_nfts.py +0 -0
  164. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_nfts_data.py +0 -0
  165. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_not_authorized_response.py +0 -0
  166. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_not_found_response.py +0 -0
  167. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_operation.py +0 -0
  168. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_risk_action.py +0 -0
  169. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_risk_category.py +0 -0
  170. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_risk_score.py +0 -0
  171. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_risk_signal.py +0 -0
  172. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_risk_type.py +0 -0
  173. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_delegate_action_response.py +0 -0
  174. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_delegate_action_response_data.py +0 -0
  175. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_transaction_response.py +0 -0
  176. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_sign_transaction_response_data.py +0 -0
  177. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_signing_api.py +0 -0
  178. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token.py +0 -0
  179. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token_blockchain.py +0 -0
  180. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token_lookup_api.py +0 -0
  181. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token_response.py +0 -0
  182. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token_response_data.py +0 -0
  183. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_token_standard.py +0 -0
  184. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_fee.py +0 -0
  185. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_screening_decision.py +0 -0
  186. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_state.py +0 -0
  187. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transaction_type.py +0 -0
  188. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_transactions_api.py +0 -0
  189. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_validate_address.py +0 -0
  190. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_validate_address_data.py +0 -0
  191. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_validate_address_request.py +0 -0
  192. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_response.py +0 -0
  193. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_response_data.py +0 -0
  194. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_set.py +0 -0
  195. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_set_response.py +0 -0
  196. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_set_response_data.py +0 -0
  197. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_sets.py +0 -0
  198. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_sets_api.py +0 -0
  199. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_sets_data.py +0 -0
  200. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_sets_data_wallet_sets_inner.py +0 -0
  201. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallet_state.py +0 -0
  202. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallets.py +0 -0
  203. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallets_api.py +0 -0
  204. {circle_developer_controlled_wallets-3.0.0 → circle_developer_controlled_wallets-4.0.0}/test/test_wallets_data.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 3.0.0
3
+ Version: 4.0.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,13 +12,13 @@ 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==3.0.0
16
- Requires-Dist: circle-web3-sdk-util==3.0.0
15
+ Requires-Dist: circle-configurations==4.0.0
16
+ Requires-Dist: circle-web3-sdk-util==4.0.0
17
17
 
18
18
  # circle-developer-controlled-wallets
19
19
  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
20
 
21
- - Package version: 3.0.0
21
+ - Package version: 4.0.0
22
22
 
23
23
  ## Requirements.
24
24
 
@@ -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: 3.0.0
4
+ - Package version: 4.0.0
5
5
 
6
6
  ## Requirements.
7
7
 
@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "3.0.0"
13
+ __version__ = "4.0.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -44,6 +44,7 @@ from circle.web3.developer_controlled_wallets.models.base_screening_decision imp
44
44
  from circle.web3.developer_controlled_wallets.models.blockchain import Blockchain
45
45
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer import CancelTransactionForDeveloper
46
46
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer_request import CancelTransactionForDeveloperRequest
47
+ from circle.web3.developer_controlled_wallets.models.contract_execution_blockchain import ContractExecutionBlockchain
47
48
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
48
49
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
49
50
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
@@ -57,7 +58,6 @@ from circle.web3.developer_controlled_wallets.models.eoa_wallet import EOAWallet
57
58
  from circle.web3.developer_controlled_wallets.models.end_user_wallet_set import EndUserWalletSet
58
59
  from circle.web3.developer_controlled_wallets.models.error import Error
59
60
  from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request import EstimateContractExecutionTransactionFeeRequest
60
- from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request_blockchain import EstimateContractExecutionTransactionFeeRequestBlockchain
61
61
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee import EstimateTransactionFee
62
62
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_data import EstimateTransactionFeeData
63
63
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
@@ -193,6 +193,7 @@ class SigningApi(object):
193
193
  '200': "SignDelegateActionResponse",
194
194
  '400': "BadRequestResponse",
195
195
  '401': "NotAuthorizedResponse",
196
+ '404': "NotFoundResponse",
196
197
  }
197
198
 
198
199
  return self.api_client.call_api(
@@ -343,6 +344,7 @@ class SigningApi(object):
343
344
  '200': "SignatureResponse",
344
345
  '400': "BadRequestResponse",
345
346
  '401': "NotAuthorizedResponse",
347
+ '404': "NotFoundResponse",
346
348
  }
347
349
 
348
350
  return self.api_client.call_api(
@@ -367,7 +369,7 @@ class SigningApi(object):
367
369
  def sign_transaction(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], **kwargs) -> SignTransactionResponse: # noqa: E501
368
370
  """Sign transaction # noqa: E501
369
371
 
370
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `TEST-TESTNET` # noqa: E501
372
+ Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
371
373
  This method makes a synchronous HTTP request by default. To make an
372
374
  asynchronous HTTP request, please pass async_req=True
373
375
 
@@ -397,7 +399,7 @@ class SigningApi(object):
397
399
  def sign_transaction_with_http_info(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], **kwargs) -> ApiResponse: # noqa: E501
398
400
  """Sign transaction # noqa: E501
399
401
 
400
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `TEST-TESTNET` # noqa: E501
402
+ Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
401
403
  This method makes a synchronous HTTP request by default. To make an
402
404
  asynchronous HTTP request, please pass async_req=True
403
405
 
@@ -493,6 +495,7 @@ class SigningApi(object):
493
495
  '200': "SignTransactionResponse",
494
496
  '400': "BadRequestResponse",
495
497
  '401': "NotAuthorizedResponse",
498
+ '404': "NotFoundResponse",
496
499
  }
497
500
 
498
501
  return self.api_client.call_api(
@@ -643,6 +646,7 @@ class SigningApi(object):
643
646
  '200': "SignatureResponse",
644
647
  '400': "BadRequestResponse",
645
648
  '401': "NotAuthorizedResponse",
649
+ '404': "NotFoundResponse",
646
650
  }
647
651
 
648
652
  return self.api_client.call_api(
@@ -178,6 +178,8 @@ class TokenLookupApi(object):
178
178
 
179
179
  _response_types_map = {
180
180
  '200': "TokenResponse",
181
+ '400': "Error",
182
+ '401': "NotAuthorizedResponse",
181
183
  '404': "NotFoundResponse",
182
184
  }
183
185
 
@@ -36,6 +36,8 @@ from circle.web3.developer_controlled_wallets.models.estimate_contract_execution
36
36
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee import EstimateTransactionFee
37
37
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
38
38
  from circle.web3.developer_controlled_wallets.models.transaction_response import TransactionResponse
39
+ from circle.web3.developer_controlled_wallets.models.transaction_state import TransactionState
40
+ from circle.web3.developer_controlled_wallets.models.transaction_type import TransactionType
39
41
  from circle.web3.developer_controlled_wallets.models.transactions import Transactions
40
42
  from circle.web3.developer_controlled_wallets.models.validate_address import ValidateAddress
41
43
  from circle.web3.developer_controlled_wallets.models.validate_address_request import ValidateAddressRequest
@@ -78,17 +80,17 @@ class TransactionsApi(object):
78
80
 
79
81
  @auto_fill
80
82
  @validate_arguments
81
- def create_developer_transaction_accelerate(self, id : Annotated[StrictStr, Field(..., description="Transaction ID")], accelerate_transaction_for_developer_request : Annotated[AccelerateTransactionForDeveloperRequest, Field(..., description="Accelerate transaction for developer request")], **kwargs) -> AccelerateTransactionForDeveloper: # noqa: E501
83
+ def create_developer_transaction_accelerate(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], accelerate_transaction_for_developer_request : Annotated[AccelerateTransactionForDeveloperRequest, Field(..., description="Accelerate transaction for developer request")], **kwargs) -> AccelerateTransactionForDeveloper: # noqa: E501
82
84
  """Accelerate a transaction # noqa: E501
83
85
 
84
- Accelerates a specified on-chain digital asset transfer from a developer-controlled wallet. Additional gas fees may be incurred. # noqa: E501
86
+ Accelerates a specified transaction from a developer-controlled wallet. Additional gas fees may be incurred. # noqa: E501
85
87
  This method makes a synchronous HTTP request by default. To make an
86
88
  asynchronous HTTP request, please pass async_req=True
87
89
 
88
90
  >>> thread = api.create_developer_transaction_accelerate(id, accelerate_transaction_for_developer_request, async_req=True)
89
91
  >>> result = thread.get()
90
92
 
91
- :param id: Transaction ID (required)
93
+ :param id: The universally unique identifier of the resource. (required)
92
94
  :type id: str
93
95
  :param accelerate_transaction_for_developer_request: Accelerate transaction for developer request (required)
94
96
  :type accelerate_transaction_for_developer_request: AccelerateTransactionForDeveloperRequest
@@ -110,17 +112,17 @@ class TransactionsApi(object):
110
112
 
111
113
  @auto_fill
112
114
  @validate_arguments
113
- def create_developer_transaction_accelerate_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Transaction ID")], accelerate_transaction_for_developer_request : Annotated[AccelerateTransactionForDeveloperRequest, Field(..., description="Accelerate transaction for developer request")], **kwargs) -> ApiResponse: # noqa: E501
115
+ def create_developer_transaction_accelerate_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], accelerate_transaction_for_developer_request : Annotated[AccelerateTransactionForDeveloperRequest, Field(..., description="Accelerate transaction for developer request")], **kwargs) -> ApiResponse: # noqa: E501
114
116
  """Accelerate a transaction # noqa: E501
115
117
 
116
- Accelerates a specified on-chain digital asset transfer from a developer-controlled wallet. Additional gas fees may be incurred. # noqa: E501
118
+ Accelerates a specified transaction from a developer-controlled wallet. Additional gas fees may be incurred. # noqa: E501
117
119
  This method makes a synchronous HTTP request by default. To make an
118
120
  asynchronous HTTP request, please pass async_req=True
119
121
 
120
122
  >>> thread = api.create_developer_transaction_accelerate_with_http_info(id, accelerate_transaction_for_developer_request, async_req=True)
121
123
  >>> result = thread.get()
122
124
 
123
- :param id: Transaction ID (required)
125
+ :param id: The universally unique identifier of the resource. (required)
124
126
  :type id: str
125
127
  :param accelerate_transaction_for_developer_request: Accelerate transaction for developer request (required)
126
128
  :type accelerate_transaction_for_developer_request: AccelerateTransactionForDeveloperRequest
@@ -213,6 +215,8 @@ class TransactionsApi(object):
213
215
 
214
216
  _response_types_map = {
215
217
  '200': "AccelerateTransactionForDeveloper",
218
+ '400': "Error",
219
+ '401': "NotAuthorizedResponse",
216
220
  '404': "NotFoundResponse",
217
221
  }
218
222
 
@@ -235,17 +239,17 @@ class TransactionsApi(object):
235
239
 
236
240
  @auto_fill
237
241
  @validate_arguments
238
- def create_developer_transaction_cancel(self, id : Annotated[StrictStr, Field(..., description="Transaction ID")], cancel_transaction_for_developer_request : Annotated[CancelTransactionForDeveloperRequest, Field(..., description="Cancel transaction for developer request")], **kwargs) -> CancelTransactionForDeveloper: # noqa: E501
242
+ def create_developer_transaction_cancel(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], cancel_transaction_for_developer_request : Annotated[CancelTransactionForDeveloperRequest, Field(..., description="Cancel transaction for developer request")], **kwargs) -> CancelTransactionForDeveloper: # noqa: E501
239
243
  """Cancel a transaction # noqa: E501
240
244
 
241
- Cancels a specified on-chain digital asset transfer from a developer-controlled wallet. Gas fees may still be incurred. # noqa: E501
245
+ Cancels a specified transaction from a developer-controlled wallet. Gas fees may still be incurred. This is a best-effort operation, it won't be effective if the original transaction has already been processed by the blockchain. # noqa: E501
242
246
  This method makes a synchronous HTTP request by default. To make an
243
247
  asynchronous HTTP request, please pass async_req=True
244
248
 
245
249
  >>> thread = api.create_developer_transaction_cancel(id, cancel_transaction_for_developer_request, async_req=True)
246
250
  >>> result = thread.get()
247
251
 
248
- :param id: Transaction ID (required)
252
+ :param id: The universally unique identifier of the resource. (required)
249
253
  :type id: str
250
254
  :param cancel_transaction_for_developer_request: Cancel transaction for developer request (required)
251
255
  :type cancel_transaction_for_developer_request: CancelTransactionForDeveloperRequest
@@ -267,17 +271,17 @@ class TransactionsApi(object):
267
271
 
268
272
  @auto_fill
269
273
  @validate_arguments
270
- def create_developer_transaction_cancel_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Transaction ID")], cancel_transaction_for_developer_request : Annotated[CancelTransactionForDeveloperRequest, Field(..., description="Cancel transaction for developer request")], **kwargs) -> ApiResponse: # noqa: E501
274
+ def create_developer_transaction_cancel_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], cancel_transaction_for_developer_request : Annotated[CancelTransactionForDeveloperRequest, Field(..., description="Cancel transaction for developer request")], **kwargs) -> ApiResponse: # noqa: E501
271
275
  """Cancel a transaction # noqa: E501
272
276
 
273
- Cancels a specified on-chain digital asset transfer from a developer-controlled wallet. Gas fees may still be incurred. # noqa: E501
277
+ Cancels a specified transaction from a developer-controlled wallet. Gas fees may still be incurred. This is a best-effort operation, it won't be effective if the original transaction has already been processed by the blockchain. # noqa: E501
274
278
  This method makes a synchronous HTTP request by default. To make an
275
279
  asynchronous HTTP request, please pass async_req=True
276
280
 
277
281
  >>> thread = api.create_developer_transaction_cancel_with_http_info(id, cancel_transaction_for_developer_request, async_req=True)
278
282
  >>> result = thread.get()
279
283
 
280
- :param id: Transaction ID (required)
284
+ :param id: The universally unique identifier of the resource. (required)
281
285
  :type id: str
282
286
  :param cancel_transaction_for_developer_request: Cancel transaction for developer request (required)
283
287
  :type cancel_transaction_for_developer_request: CancelTransactionForDeveloperRequest
@@ -370,6 +374,8 @@ class TransactionsApi(object):
370
374
 
371
375
  _response_types_map = {
372
376
  '200': "CancelTransactionForDeveloper",
377
+ '400': "Error",
378
+ '401': "NotAuthorizedResponse",
373
379
  '404': "NotFoundResponse",
374
380
  }
375
381
 
@@ -520,6 +526,9 @@ class TransactionsApi(object):
520
526
  _response_types_map = {
521
527
  '200': "CreateContractExecutionTransactionForDeveloper",
522
528
  '201': "CreateContractExecutionTransactionForDeveloper",
529
+ '400': "Error",
530
+ '401': "NotAuthorizedResponse",
531
+ '404': "NotFoundResponse",
523
532
  }
524
533
 
525
534
  return self.api_client.call_api(
@@ -669,6 +678,9 @@ class TransactionsApi(object):
669
678
  _response_types_map = {
670
679
  '200': "CreateTransferTransactionForDeveloperResponse",
671
680
  '201': "CreateTransferTransactionForDeveloperResponse",
681
+ '400': "Error",
682
+ '401': "NotAuthorizedResponse",
683
+ '404': "NotFoundResponse",
672
684
  }
673
685
 
674
686
  return self.api_client.call_api(
@@ -817,6 +829,8 @@ class TransactionsApi(object):
817
829
 
818
830
  _response_types_map = {
819
831
  '200': "EstimateTransactionFee",
832
+ '400': "Error",
833
+ '404': "NotFoundResponse",
820
834
  }
821
835
 
822
836
  return self.api_client.call_api(
@@ -965,6 +979,8 @@ class TransactionsApi(object):
965
979
 
966
980
  _response_types_map = {
967
981
  '200': "EstimateTransactionFee",
982
+ '400': "Error",
983
+ '404': "NotFoundResponse",
968
984
  }
969
985
 
970
986
  return self.api_client.call_api(
@@ -1113,6 +1129,8 @@ class TransactionsApi(object):
1113
1129
 
1114
1130
  _response_types_map = {
1115
1131
  '200': "ValidateAddress",
1132
+ '400': "Error",
1133
+ '401': "NotAuthorizedResponse",
1116
1134
  }
1117
1135
 
1118
1136
  return self.api_client.call_api(
@@ -1134,7 +1152,7 @@ class TransactionsApi(object):
1134
1152
 
1135
1153
  @auto_fill
1136
1154
  @validate_arguments
1137
- def get_transaction(self, id : Annotated[StrictStr, Field(..., description="Transaction id")], tx_type : Annotated[Optional[StrictStr], Field(description="Filter by on the transaction type.")] = None, **kwargs) -> TransactionResponse: # noqa: E501
1155
+ def get_transaction(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, **kwargs) -> TransactionResponse: # noqa: E501
1138
1156
  """Get a transaction # noqa: E501
1139
1157
 
1140
1158
  Retrieves info for a single transaction using it's unique identifier. # noqa: E501
@@ -1144,10 +1162,10 @@ class TransactionsApi(object):
1144
1162
  >>> thread = api.get_transaction(id, tx_type, async_req=True)
1145
1163
  >>> result = thread.get()
1146
1164
 
1147
- :param id: Transaction id (required)
1165
+ :param id: The universally unique identifier of the resource. (required)
1148
1166
  :type id: str
1149
1167
  :param tx_type: Filter by on the transaction type.
1150
- :type tx_type: str
1168
+ :type tx_type: TransactionType
1151
1169
  :param async_req: Whether to execute the request asynchronously.
1152
1170
  :type async_req: bool, optional
1153
1171
  :param _request_timeout: timeout setting for this request. If one
@@ -1166,7 +1184,7 @@ class TransactionsApi(object):
1166
1184
 
1167
1185
  @auto_fill
1168
1186
  @validate_arguments
1169
- def get_transaction_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Transaction id")], tx_type : Annotated[Optional[StrictStr], Field(description="Filter by on the transaction type.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1187
+ def get_transaction_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, **kwargs) -> ApiResponse: # noqa: E501
1170
1188
  """Get a transaction # noqa: E501
1171
1189
 
1172
1190
  Retrieves info for a single transaction using it's unique identifier. # noqa: E501
@@ -1176,10 +1194,10 @@ class TransactionsApi(object):
1176
1194
  >>> thread = api.get_transaction_with_http_info(id, tx_type, async_req=True)
1177
1195
  >>> result = thread.get()
1178
1196
 
1179
- :param id: Transaction id (required)
1197
+ :param id: The universally unique identifier of the resource. (required)
1180
1198
  :type id: str
1181
1199
  :param tx_type: Filter by on the transaction type.
1182
- :type tx_type: str
1200
+ :type tx_type: TransactionType
1183
1201
  :param async_req: Whether to execute the request asynchronously.
1184
1202
  :type async_req: bool, optional
1185
1203
  :param _preload_content: if False, the ApiResponse.data will
@@ -1244,7 +1262,7 @@ class TransactionsApi(object):
1244
1262
  # process the query parameters
1245
1263
  _query_params = []
1246
1264
  if _params.get('tx_type') is not None: # noqa: E501
1247
- _query_params.append(('txType', _params['tx_type']))
1265
+ _query_params.append(('txType', _params['tx_type'].value))
1248
1266
 
1249
1267
  # process the header parameters
1250
1268
  _header_params = dict(_params.get('_headers', {}))
@@ -1262,6 +1280,8 @@ class TransactionsApi(object):
1262
1280
 
1263
1281
  _response_types_map = {
1264
1282
  '200': "TransactionResponse",
1283
+ '400': "Error",
1284
+ '401': "NotAuthorizedResponse",
1265
1285
  '404': "NotFoundResponse",
1266
1286
  }
1267
1287
 
@@ -1284,7 +1304,7 @@ class TransactionsApi(object):
1284
1304
 
1285
1305
  @auto_fill
1286
1306
  @validate_arguments
1287
- def list_transactions(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, custody_type : Annotated[Optional[CustodyType], Field(description="Filter by the custody type.")] = None, destination_address : Annotated[Optional[StrictStr], Field(description="Filter by the destination address.")] = None, include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, operation : Annotated[Optional[StrictStr], Field(description="Filter by on the operation of the transaction.")] = None, state : Annotated[Optional[StrictStr], Field(description="Filter by the state of the transaction.")] = None, tx_hash : Annotated[Optional[StrictStr], Field(description="Filter on the transaction hash of the transaction.")] = None, tx_type : Annotated[Optional[StrictStr], Field(description="Filter by on the transaction type.")] = None, wallet_ids : Annotated[Optional[StrictStr], Field(description="Filter by the wallet IDs of the transaction.")] = None, var_from : Annotated[Optional[datetime], Field(description="Queries items created since the specified date-time (inclusive) in ISO 8601 format.")] = None, to : Annotated[Optional[datetime], Field(description="Queries items created before the specified date-time (inclusive) in ISO 8601 format.")] = 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, **kwargs) -> Transactions: # noqa: E501
1307
+ def list_transactions(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, custody_type : Annotated[Optional[CustodyType], Field(description="Filter by the custody type.")] = None, destination_address : Annotated[Optional[StrictStr], Field(description="Filter by the destination address.")] = None, include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, operation : Annotated[Optional[StrictStr], Field(description="Filter by the operation of the transaction.")] = None, state : Annotated[Optional[TransactionState], Field(description="Filter by the state of the transaction.")] = None, tx_hash : Annotated[Optional[StrictStr], Field(description="Filter on the transaction hash of the transaction.")] = None, tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, wallet_ids : Annotated[Optional[StrictStr], Field(description="Filter by the wallet IDs, this parameter is a comma separated list of ids.")] = None, var_from : Annotated[Optional[datetime], Field(description="Queries items created since the specified date-time (inclusive) in ISO 8601 format.")] = None, to : Annotated[Optional[datetime], Field(description="Queries items created before the specified date-time (inclusive) in ISO 8601 format.")] = 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, **kwargs) -> Transactions: # noqa: E501
1288
1308
  """List transactions # noqa: E501
1289
1309
 
1290
1310
  Lists all transactions. Includes details such as status, source/destination, and transaction hash. # noqa: E501
@@ -1302,15 +1322,15 @@ class TransactionsApi(object):
1302
1322
  :type destination_address: str
1303
1323
  :param include_all: Return all recourses with monitored and non-monitored tokens.
1304
1324
  :type include_all: bool
1305
- :param operation: Filter by on the operation of the transaction.
1325
+ :param operation: Filter by the operation of the transaction.
1306
1326
  :type operation: str
1307
1327
  :param state: Filter by the state of the transaction.
1308
- :type state: str
1328
+ :type state: TransactionState
1309
1329
  :param tx_hash: Filter on the transaction hash of the transaction.
1310
1330
  :type tx_hash: str
1311
1331
  :param tx_type: Filter by on the transaction type.
1312
- :type tx_type: str
1313
- :param wallet_ids: Filter by the wallet IDs of the transaction.
1332
+ :type tx_type: TransactionType
1333
+ :param wallet_ids: Filter by the wallet IDs, this parameter is a comma separated list of ids.
1314
1334
  :type wallet_ids: str
1315
1335
  :param var_from: Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1316
1336
  :type var_from: datetime
@@ -1340,7 +1360,7 @@ class TransactionsApi(object):
1340
1360
 
1341
1361
  @auto_fill
1342
1362
  @validate_arguments
1343
- def list_transactions_with_http_info(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, custody_type : Annotated[Optional[CustodyType], Field(description="Filter by the custody type.")] = None, destination_address : Annotated[Optional[StrictStr], Field(description="Filter by the destination address.")] = None, include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, operation : Annotated[Optional[StrictStr], Field(description="Filter by on the operation of the transaction.")] = None, state : Annotated[Optional[StrictStr], Field(description="Filter by the state of the transaction.")] = None, tx_hash : Annotated[Optional[StrictStr], Field(description="Filter on the transaction hash of the transaction.")] = None, tx_type : Annotated[Optional[StrictStr], Field(description="Filter by on the transaction type.")] = None, wallet_ids : Annotated[Optional[StrictStr], Field(description="Filter by the wallet IDs of the transaction.")] = None, var_from : Annotated[Optional[datetime], Field(description="Queries items created since the specified date-time (inclusive) in ISO 8601 format.")] = None, to : Annotated[Optional[datetime], Field(description="Queries items created before the specified date-time (inclusive) in ISO 8601 format.")] = 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, **kwargs) -> ApiResponse: # noqa: E501
1363
+ def list_transactions_with_http_info(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, custody_type : Annotated[Optional[CustodyType], Field(description="Filter by the custody type.")] = None, destination_address : Annotated[Optional[StrictStr], Field(description="Filter by the destination address.")] = None, include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, operation : Annotated[Optional[StrictStr], Field(description="Filter by the operation of the transaction.")] = None, state : Annotated[Optional[TransactionState], Field(description="Filter by the state of the transaction.")] = None, tx_hash : Annotated[Optional[StrictStr], Field(description="Filter on the transaction hash of the transaction.")] = None, tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, wallet_ids : Annotated[Optional[StrictStr], Field(description="Filter by the wallet IDs, this parameter is a comma separated list of ids.")] = None, var_from : Annotated[Optional[datetime], Field(description="Queries items created since the specified date-time (inclusive) in ISO 8601 format.")] = None, to : Annotated[Optional[datetime], Field(description="Queries items created before the specified date-time (inclusive) in ISO 8601 format.")] = 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, **kwargs) -> ApiResponse: # noqa: E501
1344
1364
  """List transactions # noqa: E501
1345
1365
 
1346
1366
  Lists all transactions. Includes details such as status, source/destination, and transaction hash. # noqa: E501
@@ -1358,15 +1378,15 @@ class TransactionsApi(object):
1358
1378
  :type destination_address: str
1359
1379
  :param include_all: Return all recourses with monitored and non-monitored tokens.
1360
1380
  :type include_all: bool
1361
- :param operation: Filter by on the operation of the transaction.
1381
+ :param operation: Filter by the operation of the transaction.
1362
1382
  :type operation: str
1363
1383
  :param state: Filter by the state of the transaction.
1364
- :type state: str
1384
+ :type state: TransactionState
1365
1385
  :param tx_hash: Filter on the transaction hash of the transaction.
1366
1386
  :type tx_hash: str
1367
1387
  :param tx_type: Filter by on the transaction type.
1368
- :type tx_type: str
1369
- :param wallet_ids: Filter by the wallet IDs of the transaction.
1388
+ :type tx_type: TransactionType
1389
+ :param wallet_ids: Filter by the wallet IDs, this parameter is a comma separated list of ids.
1370
1390
  :type wallet_ids: str
1371
1391
  :param var_from: Queries items created since the specified date-time (inclusive) in ISO 8601 format.
1372
1392
  :type var_from: datetime
@@ -1466,13 +1486,13 @@ class TransactionsApi(object):
1466
1486
  _query_params.append(('operation', _params['operation']))
1467
1487
 
1468
1488
  if _params.get('state') is not None: # noqa: E501
1469
- _query_params.append(('state', _params['state']))
1489
+ _query_params.append(('state', _params['state'].value))
1470
1490
 
1471
1491
  if _params.get('tx_hash') is not None: # noqa: E501
1472
1492
  _query_params.append(('txHash', _params['tx_hash']))
1473
1493
 
1474
1494
  if _params.get('tx_type') is not None: # noqa: E501
1475
- _query_params.append(('txType', _params['tx_type']))
1495
+ _query_params.append(('txType', _params['tx_type'].value))
1476
1496
 
1477
1497
  if _params.get('wallet_ids') is not None: # noqa: E501
1478
1498
  _query_params.append(('walletIds', _params['wallet_ids']))
@@ -1514,6 +1534,8 @@ class TransactionsApi(object):
1514
1534
 
1515
1535
  _response_types_map = {
1516
1536
  '200': "Transactions",
1537
+ '400': "Error",
1538
+ '401': "NotAuthorizedResponse",
1517
1539
  }
1518
1540
 
1519
1541
  return self.api_client.call_api(
@@ -26,6 +26,7 @@ from circle.web3.developer_controlled_wallets.models.balances import Balances
26
26
  from circle.web3.developer_controlled_wallets.models.blockchain import Blockchain
27
27
  from circle.web3.developer_controlled_wallets.models.create_wallet_request import CreateWalletRequest
28
28
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
29
+ from circle.web3.developer_controlled_wallets.models.token_standard import TokenStandard
29
30
  from circle.web3.developer_controlled_wallets.models.update_wallet_request import UpdateWalletRequest
30
31
  from circle.web3.developer_controlled_wallets.models.wallet_response import WalletResponse
31
32
  from circle.web3.developer_controlled_wallets.models.wallets import Wallets
@@ -206,6 +207,7 @@ class WalletsApi(object):
206
207
  '201': "Wallets",
207
208
  '400': "BadRequestResponse",
208
209
  '401': "NotAuthorizedResponse",
210
+ '404': "NotFoundResponse",
209
211
  }
210
212
 
211
213
  return self.api_client.call_api(
@@ -590,7 +592,7 @@ class WalletsApi(object):
590
592
 
591
593
  @auto_fill
592
594
  @validate_arguments
593
- 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 addresses.")] = None, standard : Annotated[Optional[StrictStr], 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, **kwargs) -> Balances: # noqa: E501
595
+ 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, **kwargs) -> Balances: # noqa: E501
594
596
  """Get token balance for a wallet # noqa: E501
595
597
 
596
598
  Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
@@ -606,10 +608,10 @@ class WalletsApi(object):
606
608
  :type include_all: bool
607
609
  :param name: Filter by token name.
608
610
  :type name: str
609
- :param token_address: Filter by token addresses.
611
+ :param token_address: Filter by token address.
610
612
  :type token_address: str
611
613
  :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.
612
- :type standard: str
614
+ :type standard: TokenStandard
613
615
  :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.
614
616
  :type page_before: str
615
617
  :param page_after: 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.
@@ -634,7 +636,7 @@ class WalletsApi(object):
634
636
 
635
637
  @auto_fill
636
638
  @validate_arguments
637
- 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 addresses.")] = None, standard : Annotated[Optional[StrictStr], 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, **kwargs) -> ApiResponse: # noqa: E501
639
+ 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, **kwargs) -> ApiResponse: # noqa: E501
638
640
  """Get token balance for a wallet # noqa: E501
639
641
 
640
642
  Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
@@ -650,10 +652,10 @@ class WalletsApi(object):
650
652
  :type include_all: bool
651
653
  :param name: Filter by token name.
652
654
  :type name: str
653
- :param token_address: Filter by token addresses.
655
+ :param token_address: Filter by token address.
654
656
  :type token_address: str
655
657
  :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.
656
- :type standard: str
658
+ :type standard: TokenStandard
657
659
  :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.
658
660
  :type page_before: str
659
661
  :param page_after: 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.
@@ -739,7 +741,7 @@ class WalletsApi(object):
739
741
  _query_params.append(('tokenAddress', _params['token_address']))
740
742
 
741
743
  if _params.get('standard') is not None: # noqa: E501
742
- _query_params.append(('standard', _params['standard']))
744
+ _query_params.append(('standard', _params['standard'].value))
743
745
 
744
746
  if _params.get('page_before') is not None: # noqa: E501
745
747
  _query_params.append(('pageBefore', _params['page_before']))
@@ -766,6 +768,8 @@ class WalletsApi(object):
766
768
 
767
769
  _response_types_map = {
768
770
  '200': "Balances",
771
+ '400': "Error",
772
+ '404': "NotFoundResponse",
769
773
  }
770
774
 
771
775
  return self.api_client.call_api(
@@ -787,7 +791,7 @@ class WalletsApi(object):
787
791
 
788
792
  @auto_fill
789
793
  @validate_arguments
790
- 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 addresses.")] = None, standard : Annotated[Optional[StrictStr], 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, **kwargs) -> Nfts: # noqa: E501
794
+ 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, **kwargs) -> Nfts: # noqa: E501
791
795
  """Get NFTs for a wallet # noqa: E501
792
796
 
793
797
  Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
@@ -803,10 +807,10 @@ class WalletsApi(object):
803
807
  :type include_all: bool
804
808
  :param name: Filter by token name.
805
809
  :type name: str
806
- :param token_address: Filter by token addresses.
810
+ :param token_address: Filter by token address.
807
811
  :type token_address: str
808
812
  :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.
809
- :type standard: str
813
+ :type standard: TokenStandard
810
814
  :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.
811
815
  :type page_before: str
812
816
  :param page_after: 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.
@@ -831,7 +835,7 @@ class WalletsApi(object):
831
835
 
832
836
  @auto_fill
833
837
  @validate_arguments
834
- 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 addresses.")] = None, standard : Annotated[Optional[StrictStr], 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, **kwargs) -> ApiResponse: # noqa: E501
838
+ 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, **kwargs) -> ApiResponse: # noqa: E501
835
839
  """Get NFTs for a wallet # noqa: E501
836
840
 
837
841
  Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
@@ -847,10 +851,10 @@ class WalletsApi(object):
847
851
  :type include_all: bool
848
852
  :param name: Filter by token name.
849
853
  :type name: str
850
- :param token_address: Filter by token addresses.
854
+ :param token_address: Filter by token address.
851
855
  :type token_address: str
852
856
  :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.
853
- :type standard: str
857
+ :type standard: TokenStandard
854
858
  :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.
855
859
  :type page_before: str
856
860
  :param page_after: 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.
@@ -936,7 +940,7 @@ class WalletsApi(object):
936
940
  _query_params.append(('tokenAddress', _params['token_address']))
937
941
 
938
942
  if _params.get('standard') is not None: # noqa: E501
939
- _query_params.append(('standard', _params['standard']))
943
+ _query_params.append(('standard', _params['standard'].value))
940
944
 
941
945
  if _params.get('page_before') is not None: # noqa: E501
942
946
  _query_params.append(('pageBefore', _params['page_before']))
@@ -963,6 +967,8 @@ class WalletsApi(object):
963
967
 
964
968
  _response_types_map = {
965
969
  '200': "Nfts",
970
+ '400': "Error",
971
+ '404': "NotFoundResponse",
966
972
  }
967
973
 
968
974
  return self.api_client.call_api(
@@ -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 / 3.0.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 4.0.0'
81
81
  self.client_side_validation = configuration.client_side_validation
82
82
 
83
83
  def __enter__(self):