circle-developer-controlled-wallets 4.0.0__py3-none-any.whl → 5.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of circle-developer-controlled-wallets might be problematic. Click here for more details.

@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "4.0.0"
13
+ __version__ = "5.0.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -401,7 +401,7 @@ class TransactionsApi(object):
401
401
  def create_developer_transaction_contract_execution(self, create_contract_execution_transaction_for_developer_request : Annotated[CreateContractExecutionTransactionForDeveloperRequest, Field(..., description="Create transaction for developer request")], **kwargs) -> CreateContractExecutionTransactionForDeveloper: # noqa: E501
402
402
  """Create a contract execution transaction # noqa: E501
403
403
 
404
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. # noqa: E501
404
+ 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
405
405
  This method makes a synchronous HTTP request by default. To make an
406
406
  asynchronous HTTP request, please pass async_req=True
407
407
 
@@ -431,7 +431,7 @@ class TransactionsApi(object):
431
431
  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")], **kwargs) -> ApiResponse: # noqa: E501
432
432
  """Create a contract execution transaction # noqa: E501
433
433
 
434
- Creates a transaction which executes a smart contract. ABI parameters must be passed in the request. # noqa: E501
434
+ 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
435
435
  This method makes a synchronous HTTP request by default. To make an
436
436
  asynchronous HTTP request, please pass async_req=True
437
437
 
@@ -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 / 4.0.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 5.0.0'
81
81
  self.client_side_validation = configuration.client_side_validation
82
82
 
83
83
  def __enter__(self):
@@ -383,7 +383,7 @@ class Configuration(object):
383
383
  "OS: {env}\n"\
384
384
  "Python Version: {pyversion}\n"\
385
385
  "Version of the API: 1.0\n"\
386
- "SDK Package Version: 4.0.0".\
386
+ "SDK Package Version: 5.0.0".\
387
387
  format(env=sys.platform, pyversion=sys.version)
388
388
 
389
389
  def get_host_settings(self):
@@ -39,6 +39,7 @@ class Blockchain(str, Enum):
39
39
  NEAR_MINUS_TESTNET = 'NEAR-TESTNET'
40
40
  EVM = 'EVM'
41
41
  EVM_MINUS_TESTNET = 'EVM-TESTNET'
42
+ UNI = 'UNI'
42
43
  UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
43
44
 
44
45
  @classmethod
@@ -33,6 +33,8 @@ class ContractExecutionBlockchain(str, Enum):
33
33
  MATIC_MINUS_AMOY = 'MATIC-AMOY'
34
34
  ARB = 'ARB'
35
35
  ARB_MINUS_SEPOLIA = 'ARB-SEPOLIA'
36
+ UNI = 'UNI'
37
+ UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
36
38
 
37
39
  @classmethod
38
40
  def from_json(cls, json_str: str) -> ContractExecutionBlockchain:
@@ -35,6 +35,7 @@ class TokenBlockchain(str, Enum):
35
35
  SOL_MINUS_DEVNET = 'SOL-DEVNET'
36
36
  ARB = 'ARB'
37
37
  ARB_MINUS_SEPOLIA = 'ARB-SEPOLIA'
38
+ UNI = 'UNI'
38
39
  UNI_MINUS_SEPOLIA = 'UNI-SEPOLIA'
39
40
 
40
41
  @classmethod
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 4.0.0
3
+ Version: 5.0.0
4
4
  Summary: Developer-Controlled Wallets
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -12,13 +12,20 @@ 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==4.0.0
16
- Requires-Dist: circle-web3-sdk-util==4.0.0
15
+ Requires-Dist: circle-configurations==5.0.0
16
+ Requires-Dist: circle-web3-sdk-util==5.0.0
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: keywords
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
17
24
 
18
25
  # circle-developer-controlled-wallets
19
26
  This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in Python. For the API reference, see the [Circle Web3 API docs](https://developers.circle.com/api-reference/w3s/common/ping).
20
27
 
21
- - Package version: 4.0.0
28
+ - Package version: 5.0.0
22
29
 
23
30
  ## Requirements.
24
31
 
@@ -1,16 +1,16 @@
1
1
  circle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  circle/web3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- circle/web3/developer_controlled_wallets/__init__.py,sha256=F4q343roIj8aWuRyYKLNmhbnJjZOzeeWvnrH0cra1fw,10240
4
- circle/web3/developer_controlled_wallets/api_client.py,sha256=4ZD6YWxf-mB3a3IKaEacXnqYIK1AJjb2NQxWo-G9LtY,31612
3
+ circle/web3/developer_controlled_wallets/__init__.py,sha256=j_sbgZ0NNDKpyL0fR00C6cZmFVVkSLG30VkmgrabOtM,10240
4
+ circle/web3/developer_controlled_wallets/api_client.py,sha256=5vfCX8e4s_TqvILUb7DdddAXb9KyltsH4c2OZdx5qu0,31612
5
5
  circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
6
- circle/web3/developer_controlled_wallets/configuration.py,sha256=_A4Ly-oKBsNx3wIHcJ0DO3WBXDhY44XODJPRad3OVxg,15101
6
+ circle/web3/developer_controlled_wallets/configuration.py,sha256=adWd90HEZD_uEpqchsw-2c_wLB09Sh81NXXMgV7k0wc,15101
7
7
  circle/web3/developer_controlled_wallets/exceptions.py,sha256=_2uyalsxooiwXa05bg46v7jt1aSrhzOD9etoqSyZEac,5218
8
8
  circle/web3/developer_controlled_wallets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  circle/web3/developer_controlled_wallets/rest.py,sha256=L2w4OU_OfcJNZ3nwckgwq21B3gIOXkpFjsOP4QliIeY,12814
10
10
  circle/web3/developer_controlled_wallets/api/__init__.py,sha256=OdeJef0RSUikrtSOaxsOkocXjHQYocnuXjq7TnT6W_Y,474
11
11
  circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=2O5_VX_vHZvKEjBz3QN2Z9KQLgIFvxb1Vk1B4yMRNfo,31894
12
12
  circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=1U25ywu5FEpMwzKxCDIjIyDXpJaHy3HQ4qux2tcIcdA,8076
13
- circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=9Cyi2j2xuQxOvO9hqkQ8VxU2BDGmueYAMO0RE0_dKxk,83676
13
+ circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=ZnsuSgLS3ohi-5NPLKMzReBn64m96geje8hwla8caVg,83834
14
14
  circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=0VHhXuMAYlfOjZN3K2UNCfGc7f-eN1WaT7N0sTlAZvI,39351
15
15
  circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=8Knrkm7wHVdtk0j4NWuH_CeWFnbFPfMUlsgNOFDATJ4,71358
16
16
  circle/web3/developer_controlled_wallets/models/__init__.py,sha256=hcO-s5SuWremOHUey1HDOhcG7zleLripngtElgFpwvw,9036
@@ -24,10 +24,10 @@ circle/web3/developer_controlled_wallets/models/balance.py,sha256=b_q6mHnmL0-gvD
24
24
  circle/web3/developer_controlled_wallets/models/balances.py,sha256=9mBDyfJXXSq5Bx94dhGDO4_47k7RT-gL5AW0Vp_AK8Y,2781
25
25
  circle/web3/developer_controlled_wallets/models/balances_data.py,sha256=q7Pc-1uiN2_vS9Ze3koSyy96U7NqdY7cHcfWJq3F7jM,3195
26
26
  circle/web3/developer_controlled_wallets/models/base_screening_decision.py,sha256=2GXzmMm2Tcsm_mURpcQqYEeyg7DUnC8g_k3EfIYHuX4,3297
27
- circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=8gDwEoZB7S6VUZaX_4QlSj6xi8Z6YxTiPQhglesMoYo,1053
27
+ circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=BQonMuVxCEo42SUSVYtLCY4Nt2BcPkORArLfxIdIbm0,1069
28
28
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer.py,sha256=rgxhKpv_iyveNryqLjv6Oy2DEcNkG4YtX3DExG3DL9c,3102
29
29
  circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py,sha256=PQaehF6SPZguQZcTJPwA8Z5xaGEe_JLekM_EkvEc6Ns,3574
30
- circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=VBdUyV1rbddKHcM28VmvpNwQ6hNnYo7ei_xkRRayMHk,1016
30
+ circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=lNit8jfCR5wvPQwV6jY1uFGGgPyFajj7gp_ApJYbC5Y,1070
31
31
  circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py,sha256=IddNCdmw9EFf5pl4tF8WeBxvNxnKUKVj9jZCazMcAbg,3238
32
32
  circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=tev0QLk6-0ZnhvTBv6siRlrjf-R4M90KJpXzerwOxPg,8863
33
33
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=0vTZyXNgne4k6n_if2NB3tlxXvTlA8WBKPkZKrgTEhk,8084
@@ -68,7 +68,7 @@ circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha25
68
68
  circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=2c7Az0Q3uLkaMYM3MsZkNFbYp6GWCGEpx3HYl9l7l2U,2890
69
69
  circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=EHT_UKAPRr9kIs1mvjCQKBjlR-tlMSprpaPaMPu__u0,2781
70
70
  circle/web3/developer_controlled_wallets/models/token.py,sha256=ni7oNTYPD9y_FStWn3KLKzqT0Chn0rPNDh31Lbm_rE0,4368
71
- circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=0yEEWijHwoofAylz8loN3Cm24-W6ojC-JYBUNE_wYpo,1019
71
+ circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=QJ893HRTwHa4mtqqyKvQDYq5OfKIsgp7LeSs_ouLGGE,1035
72
72
  circle/web3/developer_controlled_wallets/models/token_response.py,sha256=QVsuDj3KSBIOIQo4bQmE14O5LHo38aNxDO4moaOSlxk,2866
73
73
  circle/web3/developer_controlled_wallets/models/token_response_data.py,sha256=dJjNCPbQJJjHY55pWkGHdx9jTRVaGFYO3Whx8EuiJzQ,2857
74
74
  circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=CtoV9hUiEiIMnKdXh0d_KZyyvgFtGLO0tkByEIaBjnY,912
@@ -100,7 +100,7 @@ circle/web3/developer_controlled_wallets/models/wallet_state.py,sha256=sM_nM5aSI
100
100
  circle/web3/developer_controlled_wallets/models/wallets.py,sha256=FtATAK5iH8ZBPEiG-kphwFrxu_zqca16ptkXJPpYFBk,2769
101
101
  circle/web3/developer_controlled_wallets/models/wallets_data.py,sha256=WBtomlq7WnzoNQ6ujPCqR_JbNh1sDkYzfdEp7afOdwk,3080
102
102
  circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sha256=Qob2-DdcoyAx3pzDq8YJvB7u9RGqWJ5FP9M6M6c_Fzg,5163
103
- circle_developer_controlled_wallets-4.0.0.dist-info/METADATA,sha256=P5o5wXQrcTzPhO8SNez0PW-GLjx8nN7F4I1tOru8nA0,5841
104
- circle_developer_controlled_wallets-4.0.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
105
- circle_developer_controlled_wallets-4.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
106
- circle_developer_controlled_wallets-4.0.0.dist-info/RECORD,,
103
+ circle_developer_controlled_wallets-5.0.0.dist-info/METADATA,sha256=8Uw5kDgBG-dj3zV6GUexFt_b9C553j0Pa2_0arOUuBc,5992
104
+ circle_developer_controlled_wallets-5.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
105
+ circle_developer_controlled_wallets-5.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
106
+ circle_developer_controlled_wallets-5.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5