circle-developer-controlled-wallets 8.0.0__tar.gz → 8.1.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 (128) hide show
  1. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/PKG-INFO +3 -3
  2. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/README.md +1 -1
  3. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/__init__.py +4 -1
  4. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/signing_api.py +12 -12
  5. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/transactions_api.py +169 -8
  6. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api_client.py +1 -1
  7. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/configuration.py +6 -2
  8. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/__init__.py +3 -0
  9. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/blockchain.py +1 -0
  10. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py +1 -0
  11. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +1 -3
  12. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +1 -3
  13. circle_developer_controlled_wallets-8.1.0/circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response.py +95 -0
  14. circle_developer_controlled_wallets-8.1.0/circle/web3/developer_controlled_wallets/models/get_lowest_nonce_transaction_response_data.py +101 -0
  15. circle_developer_controlled_wallets-8.1.0/circle/web3/developer_controlled_wallets/models/lowest_nonce_transaction_fee_info.py +97 -0
  16. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_message_request.py +0 -2
  17. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +0 -2
  18. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py +0 -2
  19. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/token_blockchain.py +1 -0
  20. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_fee.py +1 -1
  21. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transfer_blockchain.py +1 -0
  22. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle_developer_controlled_wallets.egg-info/PKG-INFO +3 -3
  23. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle_developer_controlled_wallets.egg-info/SOURCES.txt +3 -0
  24. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle_developer_controlled_wallets.egg-info/requires.txt +1 -1
  25. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/pyproject.toml +1 -1
  26. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/setup.py +2 -2
  27. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/__init__.py +0 -0
  28. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/__init__.py +0 -0
  29. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/__init__.py +0 -0
  30. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/token_lookup_api.py +0 -0
  31. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/wallet_sets_api.py +0 -0
  32. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api/wallets_api.py +0 -0
  33. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/api_response.py +0 -0
  34. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/exceptions.py +0 -0
  35. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py +0 -0
  36. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py +0 -0
  37. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py +0 -0
  38. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py +0 -0
  39. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/account_type.py +0 -0
  40. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/bad_request_response.py +0 -0
  41. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/balance.py +0 -0
  42. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/balances.py +0 -0
  43. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/balances_data.py +0 -0
  44. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/base_screening_decision.py +0 -0
  45. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py +0 -0
  46. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py +0 -0
  47. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py +0 -0
  48. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request_blockchain.py +0 -0
  49. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py +0 -0
  50. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py +0 -0
  51. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_wallet_request.py +0 -0
  52. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py +0 -0
  53. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer.py +0 -0
  54. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/create_wallet_upgrade_transaction_for_developer_request.py +0 -0
  55. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/custody_type.py +0 -0
  56. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/derive_wallet_request.py +0 -0
  57. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/developer_wallet_set.py +0 -0
  58. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py +0 -0
  59. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/eoa_wallet.py +0 -0
  60. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py +0 -0
  61. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/error.py +0 -0
  62. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +0 -0
  63. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py +0 -0
  64. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py +0 -0
  65. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +0 -0
  66. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/evm_blockchain.py +0 -0
  67. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/fee_level.py +0 -0
  68. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/new_sca_core.py +0 -0
  69. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/nft.py +0 -0
  70. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/nfts.py +0 -0
  71. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/nfts_data.py +0 -0
  72. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/not_authorized_response.py +0 -0
  73. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/not_found_response.py +0 -0
  74. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/operation.py +0 -0
  75. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/risk_action.py +0 -0
  76. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/risk_category.py +0 -0
  77. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/risk_score.py +0 -0
  78. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/risk_signal.py +0 -0
  79. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/risk_type.py +0 -0
  80. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sca_core.py +0 -0
  81. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sca_wallet.py +0 -0
  82. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py +0 -0
  83. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py +0 -0
  84. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py +0 -0
  85. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py +0 -0
  86. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response.py +0 -0
  87. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +0 -0
  88. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/signature_response.py +0 -0
  89. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/signature_response_data.py +0 -0
  90. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/token.py +0 -0
  91. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/token_response.py +0 -0
  92. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/token_response_data.py +0 -0
  93. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/token_standard.py +0 -0
  94. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction.py +0 -0
  95. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_response.py +0 -0
  96. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_response_data.py +0 -0
  97. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py +0 -0
  98. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_state.py +0 -0
  99. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transaction_type.py +0 -0
  100. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transactions.py +0 -0
  101. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/transactions_data.py +0 -0
  102. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/update_wallet_request.py +0 -0
  103. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py +0 -0
  104. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/validate_address.py +0 -0
  105. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/validate_address_data.py +0 -0
  106. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/validate_address_request.py +0 -0
  107. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet.py +0 -0
  108. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_metadata.py +0 -0
  109. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_response.py +0 -0
  110. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_response_data.py +0 -0
  111. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_set.py +0 -0
  112. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response.py +0 -0
  113. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_set_response_data.py +0 -0
  114. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_sets.py +0 -0
  115. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data.py +0 -0
  116. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_sets_data_wallet_sets_inner.py +0 -0
  117. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallet_state.py +0 -0
  118. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets.py +0 -0
  119. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets_data.py +0 -0
  120. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py +0 -0
  121. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances.py +0 -0
  122. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances_data.py +0 -0
  123. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/models/wallets_with_balances_data_wallets_inner.py +0 -0
  124. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/py.typed +0 -0
  125. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle/web3/developer_controlled_wallets/rest.py +0 -0
  126. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle_developer_controlled_wallets.egg-info/dependency_links.txt +0 -0
  127. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/circle_developer_controlled_wallets.egg-info/top_level.txt +0 -0
  128. {circle_developer_controlled_wallets-8.0.0 → circle_developer_controlled_wallets-8.1.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 8.0.0
3
+ Version: 8.1.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,7 +12,7 @@ Requires-Dist: python-dateutil
12
12
  Requires-Dist: pydantic<2,>=1.10.5
13
13
  Requires-Dist: aenum
14
14
  Requires-Dist: pycryptodome>=3.20.0
15
- Requires-Dist: circle-configurations==8.0.0
15
+ Requires-Dist: circle-configurations==8.1.0
16
16
  Dynamic: author
17
17
  Dynamic: author-email
18
18
  Dynamic: description
@@ -24,7 +24,7 @@ Dynamic: summary
24
24
  # circle-developer-controlled-wallets
25
25
  This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in Python. For the API reference, see the [Circle Web3 API docs](https://developers.circle.com/api-reference/w3s/common/ping).
26
26
 
27
- - Package version: 8.0.0
27
+ - Package version: 8.1.0
28
28
 
29
29
  ## Requirements.
30
30
 
@@ -1,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: 8.0.0
4
+ - Package version: 8.1.0
5
5
 
6
6
  ## Requirements.
7
7
 
@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "8.0.0"
13
+ __version__ = "8.1.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -68,6 +68,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
68
68
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
69
69
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
70
70
  from circle.web3.developer_controlled_wallets.models.fee_level import FeeLevel
71
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
72
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
73
+ from circle.web3.developer_controlled_wallets.models.lowest_nonce_transaction_fee_info import LowestNonceTransactionFeeInfo
71
74
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
72
75
  from circle.web3.developer_controlled_wallets.models.nft import Nft
73
76
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -225,10 +225,10 @@ class SigningApi(object):
225
225
 
226
226
  @auto_fill
227
227
  @validate_arguments
228
- def sign_message(self, sign_message_request : Annotated[Optional[SignMessageRequest], Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
228
+ def sign_message(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
229
229
  """Sign message # noqa: E501
230
230
 
231
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
231
+ Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/.\" You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
232
232
  This method makes a synchronous HTTP request by default. To make an
233
233
  asynchronous HTTP request, please pass async_req=True
234
234
 
@@ -257,10 +257,10 @@ class SigningApi(object):
257
257
 
258
258
  @auto_fill
259
259
  @validate_arguments
260
- def sign_message_with_http_info(self, sign_message_request : Annotated[Optional[SignMessageRequest], Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
260
+ def sign_message_with_http_info(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
261
261
  """Sign message # noqa: E501
262
262
 
263
- Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
263
+ Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/.\" You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
264
264
  This method makes a synchronous HTTP request by default. To make an
265
265
  asynchronous HTTP request, please pass async_req=True
266
266
 
@@ -384,10 +384,10 @@ class SigningApi(object):
384
384
 
385
385
  @auto_fill
386
386
  @validate_arguments
387
- def sign_transaction(self, sign_transaction_request : Annotated[Optional[SignTransactionRequest], Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignTransactionResponse: # noqa: E501
387
+ def sign_transaction(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignTransactionResponse: # noqa: E501
388
388
  """Sign transaction # noqa: E501
389
389
 
390
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
390
+ Sign a transaction from a specific developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
391
391
  This method makes a synchronous HTTP request by default. To make an
392
392
  asynchronous HTTP request, please pass async_req=True
393
393
 
@@ -416,10 +416,10 @@ class SigningApi(object):
416
416
 
417
417
  @auto_fill
418
418
  @validate_arguments
419
- def sign_transaction_with_http_info(self, sign_transaction_request : Annotated[Optional[SignTransactionRequest], Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
419
+ def sign_transaction_with_http_info(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
420
420
  """Sign transaction # noqa: E501
421
421
 
422
- Sign a transaction from a specific developer-controlled wallet. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
422
+ Sign a transaction from a specific developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. NOTE: This endpoint is only available for the following chains: `SOL`, `SOL-DEVNET`, `NEAR`, `NEAR-TESTNET`, `EVM`, `EVM-TESTNET`. Each chain defines its own standard, please refer to [Signing APIs doc](https://learn.circle.com/w3s/signing-apis). # noqa: E501
423
423
  This method makes a synchronous HTTP request by default. To make an
424
424
  asynchronous HTTP request, please pass async_req=True
425
425
 
@@ -543,10 +543,10 @@ class SigningApi(object):
543
543
 
544
544
  @auto_fill
545
545
  @validate_arguments
546
- def sign_typed_data(self, sign_typed_data_request : Annotated[Optional[SignTypedDataRequest], Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
546
+ def sign_typed_data(self, sign_typed_data_request : Annotated[SignTypedDataRequest, Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
547
547
  """Sign typed data # noqa: E501
548
548
 
549
- Sign the EIP-712 typed structured data from a specified developer-controlled wallet. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all Dapps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
549
+ | Sign the EIP-712 typed structured data from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all apps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum apps that support SCA: https://eip1271.io/. # noqa: E501
550
550
  This method makes a synchronous HTTP request by default. To make an
551
551
  asynchronous HTTP request, please pass async_req=True
552
552
 
@@ -575,10 +575,10 @@ class SigningApi(object):
575
575
 
576
576
  @auto_fill
577
577
  @validate_arguments
578
- def sign_typed_data_with_http_info(self, sign_typed_data_request : Annotated[Optional[SignTypedDataRequest], Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
578
+ def sign_typed_data_with_http_info(self, sign_typed_data_request : Annotated[SignTypedDataRequest, Field(..., description="Schema for the request payload to sign typed data.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
579
579
  """Sign typed data # noqa: E501
580
580
 
581
- Sign the EIP-712 typed structured data from a specified developer-controlled wallet. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all Dapps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
581
+ | Sign the EIP-712 typed structured data from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. This endpoint only supports Ethereum and EVM-compatible blockchains. Please note that not all apps currently support Smart Contract Accounts (SCA); the difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum apps that support SCA: https://eip1271.io/. # noqa: E501
582
582
  This method makes a synchronous HTTP request by default. To make an
583
583
  asynchronous HTTP request, please pass async_req=True
584
584
 
@@ -37,6 +37,7 @@ from circle.web3.developer_controlled_wallets.models.custody_type import Custody
37
37
  from circle.web3.developer_controlled_wallets.models.estimate_contract_execution_transaction_fee_request import EstimateContractExecutionTransactionFeeRequest
38
38
  from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee import EstimateTransactionFee
39
39
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
40
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
40
41
  from circle.web3.developer_controlled_wallets.models.transaction_response import TransactionResponse
41
42
  from circle.web3.developer_controlled_wallets.models.transaction_state import TransactionState
42
43
  from circle.web3.developer_controlled_wallets.models.transaction_type import TransactionType
@@ -416,10 +417,10 @@ class TransactionsApi(object):
416
417
 
417
418
  @auto_fill
418
419
  @validate_arguments
419
- def create_developer_transaction_contract_execution(self, create_contract_execution_transaction_for_developer_request : Annotated[Optional[CreateContractExecutionTransactionForDeveloperRequest], Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateContractExecutionTransactionForDeveloper: # noqa: E501
420
+ def create_developer_transaction_contract_execution(self, create_contract_execution_transaction_for_developer_request : Annotated[CreateContractExecutionTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateContractExecutionTransactionForDeveloper: # noqa: E501
420
421
  """Create a contract execution transaction # noqa: E501
421
422
 
422
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. # noqa: E501
423
+ Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
423
424
  This method makes a synchronous HTTP request by default. To make an
424
425
  asynchronous HTTP request, please pass async_req=True
425
426
 
@@ -448,10 +449,10 @@ class TransactionsApi(object):
448
449
 
449
450
  @auto_fill
450
451
  @validate_arguments
451
- def create_developer_transaction_contract_execution_with_http_info(self, create_contract_execution_transaction_for_developer_request : Annotated[Optional[CreateContractExecutionTransactionForDeveloperRequest], Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
452
+ def create_developer_transaction_contract_execution_with_http_info(self, create_contract_execution_transaction_for_developer_request : Annotated[CreateContractExecutionTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
452
453
  """Create a contract execution transaction # noqa: E501
453
454
 
454
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. # noqa: E501
455
+ Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. Related transactions may be submitted as a batch transaction in a single call. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
455
456
  This method makes a synchronous HTTP request by default. To make an
456
457
  asynchronous HTTP request, please pass async_req=True
457
458
 
@@ -576,10 +577,10 @@ class TransactionsApi(object):
576
577
 
577
578
  @auto_fill
578
579
  @validate_arguments
579
- def create_developer_transaction_transfer(self, create_transfer_transaction_for_developer_request : Annotated[Optional[CreateTransferTransactionForDeveloperRequest], Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateTransferTransactionForDeveloperResponse: # noqa: E501
580
+ def create_developer_transaction_transfer(self, create_transfer_transaction_for_developer_request : Annotated[CreateTransferTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> CreateTransferTransactionForDeveloperResponse: # noqa: E501
580
581
  """Create a transfer transaction # noqa: E501
581
582
 
582
- Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. # noqa: E501
583
+ Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
583
584
  This method makes a synchronous HTTP request by default. To make an
584
585
  asynchronous HTTP request, please pass async_req=True
585
586
 
@@ -608,10 +609,10 @@ class TransactionsApi(object):
608
609
 
609
610
  @auto_fill
610
611
  @validate_arguments
611
- def create_developer_transaction_transfer_with_http_info(self, create_transfer_transaction_for_developer_request : Annotated[Optional[CreateTransferTransactionForDeveloperRequest], Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
612
+ def create_developer_transaction_transfer_with_http_info(self, create_transfer_transaction_for_developer_request : Annotated[CreateTransferTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
612
613
  """Create a transfer transaction # noqa: E501
613
614
 
614
- Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. # noqa: E501
615
+ Initiates an on-chain digital asset transfer from a specified developer-controlled wallet. You must provide either a `walletId` or a `walletAddress` and `blockchain` pair in the request body. # noqa: E501
615
616
  This method makes a synchronous HTTP request by default. To make an
616
617
  asynchronous HTTP request, please pass async_req=True
617
618
 
@@ -1360,6 +1361,166 @@ class TransactionsApi(object):
1360
1361
  collection_formats=_collection_formats,
1361
1362
  _request_auth=_params.get('_request_auth'))
1362
1363
 
1364
+ @auto_fill
1365
+ @validate_arguments
1366
+ def get_lowest_nonce_transaction(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, address : Annotated[Optional[StrictStr], Field(description="Filter by the blockchain address of the wallet.")] = None, wallet_id : Annotated[Optional[StrictStr], Field(description="Filter by the wallet ID")] = None, **kwargs) -> GetLowestNonceTransactionResponse: # noqa: E501
1367
+ """Get the lowest nonce pending transaction for a wallet # noqa: E501
1368
+
1369
+ For a nonce-supported blockchain, get the lowest nonce transaction that's in QUEUED or SENT or STUCK state for the provided wallet. # noqa: E501
1370
+ This method makes a synchronous HTTP request by default. To make an
1371
+ asynchronous HTTP request, please pass async_req=True
1372
+
1373
+ >>> thread = api.get_lowest_nonce_transaction(blockchain, address, wallet_id, async_req=True)
1374
+ >>> result = thread.get()
1375
+
1376
+ :param blockchain: Filter by blockchain.
1377
+ :type blockchain: Blockchain
1378
+ :param address: Filter by the blockchain address of the wallet.
1379
+ :type address: str
1380
+ :param wallet_id: Filter by the wallet ID
1381
+ :type wallet_id: str
1382
+ :param async_req: Whether to execute the request asynchronously.
1383
+ :type async_req: bool, optional
1384
+ :param _request_timeout: timeout setting for this request. If one
1385
+ number provided, it will be total request
1386
+ timeout. It can also be a pair (tuple) of
1387
+ (connection, read) timeouts.
1388
+ :return: Returns the result object.
1389
+ If the method is called asynchronously,
1390
+ returns the request thread.
1391
+ :rtype: GetLowestNonceTransactionResponse
1392
+ """
1393
+ kwargs['_return_http_data_only'] = True
1394
+ if '_preload_content' in kwargs:
1395
+ raise ValueError("Error! Please call the get_lowest_nonce_transaction_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data")
1396
+ return self.get_lowest_nonce_transaction_with_http_info(blockchain, address, wallet_id, **kwargs) # noqa: E501
1397
+
1398
+ @auto_fill
1399
+ @validate_arguments
1400
+ def get_lowest_nonce_transaction_with_http_info(self, blockchain : Annotated[Optional[Blockchain], Field(description="Filter by blockchain.")] = None, address : Annotated[Optional[StrictStr], Field(description="Filter by the blockchain address of the wallet.")] = None, wallet_id : Annotated[Optional[StrictStr], Field(description="Filter by the wallet ID")] = None, **kwargs) -> ApiResponse: # noqa: E501
1401
+ """Get the lowest nonce pending transaction for a wallet # noqa: E501
1402
+
1403
+ For a nonce-supported blockchain, get the lowest nonce transaction that's in QUEUED or SENT or STUCK state for the provided wallet. # noqa: E501
1404
+ This method makes a synchronous HTTP request by default. To make an
1405
+ asynchronous HTTP request, please pass async_req=True
1406
+
1407
+ >>> thread = api.get_lowest_nonce_transaction_with_http_info(blockchain, address, wallet_id, async_req=True)
1408
+ >>> result = thread.get()
1409
+
1410
+ :param blockchain: Filter by blockchain.
1411
+ :type blockchain: Blockchain
1412
+ :param address: Filter by the blockchain address of the wallet.
1413
+ :type address: str
1414
+ :param wallet_id: Filter by the wallet ID
1415
+ :type wallet_id: str
1416
+ :param async_req: Whether to execute the request asynchronously.
1417
+ :type async_req: bool, optional
1418
+ :param _preload_content: if False, the ApiResponse.data will
1419
+ be set to none and raw_data will store the
1420
+ HTTP response body without reading/decoding.
1421
+ Default is True.
1422
+ :type _preload_content: bool, optional
1423
+ :param _return_http_data_only: response data instead of ApiResponse
1424
+ object with status code, headers, etc
1425
+ :type _return_http_data_only: bool, optional
1426
+ :param _request_timeout: timeout setting for this request. If one
1427
+ number provided, it will be total request
1428
+ timeout. It can also be a pair (tuple) of
1429
+ (connection, read) timeouts.
1430
+ :param _request_auth: set to override the auth_settings for an a single
1431
+ request; this effectively ignores the authentication
1432
+ in the spec for a single request.
1433
+ :type _request_auth: dict, optional
1434
+ :type _content_type: string, optional: force content-type for the request
1435
+ :return: Returns the result object.
1436
+ If the method is called asynchronously,
1437
+ returns the request thread.
1438
+ :rtype: tuple(GetLowestNonceTransactionResponse, status_code(int), headers(HTTPHeaderDict))
1439
+ """
1440
+
1441
+ _params = locals()
1442
+
1443
+ _all_params = [
1444
+ 'blockchain',
1445
+ 'address',
1446
+ 'wallet_id'
1447
+ ]
1448
+ _all_params.extend(
1449
+ [
1450
+ 'async_req',
1451
+ '_return_http_data_only',
1452
+ '_preload_content',
1453
+ '_request_timeout',
1454
+ '_request_auth',
1455
+ '_content_type',
1456
+ '_headers'
1457
+ ]
1458
+ )
1459
+
1460
+ # validate the arguments
1461
+ for _key, _val in _params['kwargs'].items():
1462
+ if _key not in _all_params:
1463
+ raise ApiTypeError(
1464
+ "Got an unexpected keyword argument '%s'"
1465
+ " to method get_lowest_nonce_transaction" % _key
1466
+ )
1467
+ _params[_key] = _val
1468
+ del _params['kwargs']
1469
+
1470
+ _collection_formats = {}
1471
+
1472
+ # process the path parameters
1473
+ _path_params = {}
1474
+
1475
+ # process the query parameters
1476
+ _query_params = []
1477
+ if _params.get('blockchain') is not None: # noqa: E501
1478
+ _query_params.append(('blockchain', _params['blockchain'].value))
1479
+
1480
+ if _params.get('address') is not None: # noqa: E501
1481
+ _query_params.append(('address', _params['address']))
1482
+
1483
+ if _params.get('wallet_id') is not None: # noqa: E501
1484
+ _query_params.append(('walletId', _params['wallet_id']))
1485
+
1486
+ # process the header parameters
1487
+ _header_params = dict(_params.get('_headers', {}))
1488
+ # process the form parameters
1489
+ _form_params = []
1490
+ _files = {}
1491
+ # process the body parameter
1492
+ _body_params = None
1493
+ # set the HTTP header `Accept`
1494
+ _header_params['Accept'] = self.api_client.select_header_accept(
1495
+ ['application/json']) # noqa: E501
1496
+
1497
+ # authentication setting
1498
+ _auth_settings = ['BearerAuth'] # noqa: E501
1499
+
1500
+ _response_types_map = {
1501
+ '200': "GetLowestNonceTransactionResponse",
1502
+ '204': None,
1503
+ '400': "Error",
1504
+ '401': "NotAuthorizedResponse",
1505
+ }
1506
+
1507
+ return self.api_client.call_api(
1508
+ '/v1/w3s/transactions/lowestNonceTransaction', 'GET',
1509
+ _path_params,
1510
+ _query_params,
1511
+ _header_params,
1512
+ body=_body_params,
1513
+ post_params=_form_params,
1514
+ files=_files,
1515
+ response_types_map=_response_types_map,
1516
+ auth_settings=_auth_settings,
1517
+ async_req=_params.get('async_req'),
1518
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
1519
+ _preload_content=_params.get('_preload_content', True),
1520
+ _request_timeout=_params.get('_request_timeout'),
1521
+ collection_formats=_collection_formats,
1522
+ _request_auth=_params.get('_request_auth'))
1523
+
1363
1524
  @auto_fill
1364
1525
  @validate_arguments
1365
1526
  def get_transaction(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], tx_type : Annotated[Optional[TransactionType], Field(description="Filter by on the transaction type.")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> TransactionResponse: # noqa: E501
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 8.0.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 8.1.0'
81
81
  self.client_side_validation = configuration.client_side_validation
82
82
 
83
83
  def __enter__(self):
@@ -68,7 +68,7 @@ class Configuration(object):
68
68
  ):
69
69
  """Constructor
70
70
  """
71
- self._base_path = "https://api.circle.com" if host is None else host
71
+ self._base_path = "https://api-sandbox.circle.com" if host is None else host
72
72
  """Default Base url
73
73
  """
74
74
  self.server_index = 0 if server_index is None and host is None else server_index
@@ -383,7 +383,7 @@ class Configuration(object):
383
383
  "OS: {env}\n"\
384
384
  "Python Version: {pyversion}\n"\
385
385
  "Version of the API: 1.0\n"\
386
- "SDK Package Version: 8.0.0".\
386
+ "SDK Package Version: 8.1.0".\
387
387
  format(env=sys.platform, pyversion=sys.version)
388
388
 
389
389
  def get_host_settings(self):
@@ -392,6 +392,10 @@ class Configuration(object):
392
392
  :return: An array of host settings
393
393
  """
394
394
  return [
395
+ {
396
+ 'url': "https://api-sandbox.circle.com",
397
+ 'description': "No description provided",
398
+ },
395
399
  {
396
400
  'url': "https://api.circle.com",
397
401
  'description': "No description provided",
@@ -47,6 +47,9 @@ from circle.web3.developer_controlled_wallets.models.estimate_transaction_fee_da
47
47
  from circle.web3.developer_controlled_wallets.models.estimate_transfer_transaction_fee_request import EstimateTransferTransactionFeeRequest
48
48
  from circle.web3.developer_controlled_wallets.models.evm_blockchain import EvmBlockchain
49
49
  from circle.web3.developer_controlled_wallets.models.fee_level import FeeLevel
50
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response import GetLowestNonceTransactionResponse
51
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
52
+ from circle.web3.developer_controlled_wallets.models.lowest_nonce_transaction_fee_info import LowestNonceTransactionFeeInfo
50
53
  from circle.web3.developer_controlled_wallets.models.new_sca_core import NewScaCore
51
54
  from circle.web3.developer_controlled_wallets.models.nft import Nft
52
55
  from circle.web3.developer_controlled_wallets.models.nfts import Nfts
@@ -47,6 +47,7 @@ class Blockchain(str, Enum):
47
47
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
48
48
  APTOS = 'APTOS'
49
49
  APTOS_MINUS_TESTNET = 'APTOS-TESTNET'
50
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
50
51
 
51
52
  @classmethod
52
53
  def from_json(cls, json_str: str) -> Blockchain:
@@ -39,6 +39,7 @@ class ContractExecutionBlockchain(str, Enum):
39
39
  BASE_MINUS_SEPOLIA = 'BASE-SEPOLIA'
40
40
  OP = 'OP'
41
41
  OP_MINUS_SEPOLIA = 'OP-SEPOLIA'
42
+ ARC_MINUS_TESTNET = 'ARC-TESTNET'
42
43
 
43
44
  @classmethod
44
45
  def from_json(cls, json_str: str) -> ContractExecutionBlockchain:
@@ -82,7 +82,6 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
82
82
  exclude={
83
83
  },
84
84
  exclude_none=True)
85
- # Handle anyOf models where allVars is empty - use vars instead
86
85
  # override the default output from pydantic by calling `to_dict()` of each item in abi_parameters (list)
87
86
  _items = []
88
87
  if self.abi_parameters:
@@ -109,10 +108,9 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
109
108
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
110
109
 
111
110
  _obj = CreateContractExecutionTransactionForDeveloperRequest.parse_obj({
112
-
113
111
  "idempotency_key": obj.get("idempotencyKey"),
114
112
  "abi_function_signature": obj.get("abiFunctionSignature"),
115
- "abi_parameters": obj.get("abiParameters"),
113
+ "abi_parameters": [AbiParametersInner.from_dict(_item) for _item in obj.get("abiParameters")] if obj.get("abiParameters") is not None else None,
116
114
  "call_data": obj.get("callData"),
117
115
  "amount": obj.get("amount"),
118
116
  "contract_address": obj.get("contractAddress"),
@@ -81,7 +81,6 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
81
81
  exclude={
82
82
  },
83
83
  exclude_none=True)
84
- # Handle anyOf models where allVars is empty - use vars instead
85
84
  # override the default output from pydantic by calling `to_dict()` of blockchain
86
85
  if self.blockchain:
87
86
  _dict['blockchain'] = self.blockchain.to_dict()
@@ -104,7 +103,6 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
104
103
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
105
104
 
106
105
  _obj = CreateTransferTransactionForDeveloperRequest.parse_obj({
107
-
108
106
  "idempotency_key": obj.get("idempotencyKey"),
109
107
  "amounts": obj.get("amounts"),
110
108
  "destination_address": obj.get("destinationAddress"),
@@ -118,7 +116,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
118
116
  "ref_id": obj.get("refId"),
119
117
  "token_id": obj.get("tokenId"),
120
118
  "token_address": obj.get("tokenAddress"),
121
- "blockchain": obj.get("blockchain"),
119
+ "blockchain": CreateTransferTransactionForDeveloperRequestBlockchain.from_dict(obj.get("blockchain")) if obj.get("blockchain") is not None else None,
122
120
  "wallet_id": obj.get("walletId"),
123
121
  "wallet_address": obj.get("walletAddress")
124
122
 
@@ -0,0 +1,95 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ The version of the OpenAPI document: 1.0
5
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
6
+
7
+ Do not edit the class manually.
8
+ """ # noqa: E501
9
+
10
+
11
+ from __future__ import annotations
12
+ import pprint
13
+ import re # noqa: F401
14
+ import json
15
+
16
+ # CUSTOMIZED: Added pydantic_encoder import (not in default OpenAPI Generator template)
17
+ # pydantic_encoder is needed to address serialization issues with datetime and other non-primitive fields,
18
+ # which are not handled by the default JSON encoder.
19
+ from pydantic.json import pydantic_encoder
20
+
21
+
22
+
23
+ from pydantic import BaseModel, Field
24
+ from circle.web3.developer_controlled_wallets.models.get_lowest_nonce_transaction_response_data import GetLowestNonceTransactionResponseData
25
+
26
+ class GetLowestNonceTransactionResponse(BaseModel):
27
+ """
28
+ GetLowestNonceTransactionResponse
29
+ """
30
+ data: GetLowestNonceTransactionResponseData = Field(...)
31
+ __properties = ["data"]
32
+
33
+ def __init__(self, **kwargs):
34
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
35
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
36
+
37
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
38
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
39
+ super().__init__(**kwargs)
40
+
41
+
42
+ class Config:
43
+ """Pydantic configuration"""
44
+ allow_population_by_field_name = True
45
+ validate_assignment = True
46
+
47
+ def to_str(self) -> str:
48
+ """Returns the string representation of the model using alias"""
49
+ return pprint.pformat(self.dict(by_alias=True))
50
+
51
+ def to_json(self) -> str:
52
+ """Return JSON string of the model (handles datetime/UUID/Decimal/Enum, etc.)"""
53
+ # CUSTOMIZED: Added default=pydantic_encoder to handle complex types (datetime, UUID, Enum, etc.)
54
+ # This differs from the default OpenAPI Generator template which doesn't handle these types properly
55
+ return json.dumps(self.to_dict(), default=pydantic_encoder)
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> GetLowestNonceTransactionResponse:
59
+ """Create an instance of GetLowestNonceTransactionResponse from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self):
63
+ """Returns the dictionary representation of the model using alias"""
64
+ _dict = self.dict(by_alias=True,
65
+ exclude={
66
+ },
67
+ exclude_none=True)
68
+ # override the default output from pydantic by calling `to_dict()` of data
69
+ if self.data:
70
+ _dict['data'] = self.data.to_dict()
71
+ return _dict
72
+
73
+ @classmethod
74
+ def from_dict(cls, obj: dict) -> GetLowestNonceTransactionResponse:
75
+ """Create an instance of GetLowestNonceTransactionResponse from a dict"""
76
+ if obj is None:
77
+ return None
78
+
79
+ if not isinstance(obj, dict):
80
+ return GetLowestNonceTransactionResponse.parse_obj(obj)
81
+
82
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
83
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
84
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
85
+
86
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
87
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
88
+
89
+ _obj = GetLowestNonceTransactionResponse.parse_obj({
90
+ "data": GetLowestNonceTransactionResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
91
+
92
+ })
93
+ return _obj
94
+
95
+