circle-developer-controlled-wallets 2.1.0__py3-none-any.whl → 3.0.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (25) hide show
  1. circle/web3/developer_controlled_wallets/__init__.py +4 -2
  2. circle/web3/developer_controlled_wallets/api/signing_api.py +154 -2
  3. circle/web3/developer_controlled_wallets/api/token_lookup_api.py +5 -4
  4. circle/web3/developer_controlled_wallets/api/transactions_api.py +5 -0
  5. circle/web3/developer_controlled_wallets/api/wallet_sets_api.py +8 -8
  6. circle/web3/developer_controlled_wallets/api/wallets_api.py +9 -8
  7. circle/web3/developer_controlled_wallets/api_client.py +1 -1
  8. circle/web3/developer_controlled_wallets/configuration.py +1 -1
  9. circle/web3/developer_controlled_wallets/models/__init__.py +3 -1
  10. circle/web3/developer_controlled_wallets/models/blockchain.py +4 -0
  11. circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py +3 -3
  12. circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +1 -1
  13. circle/web3/developer_controlled_wallets/models/eoa_wallet.py +3 -1
  14. circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +1 -1
  15. circle/web3/developer_controlled_wallets/models/sca_wallet.py +3 -1
  16. circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py +87 -0
  17. circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py +87 -0
  18. circle/web3/developer_controlled_wallets/models/{create_contract_execution_transaction_for_developer_data.py → sign_delegate_action_response_data.py} +13 -14
  19. circle/web3/developer_controlled_wallets/models/sign_transaction_request.py +4 -2
  20. circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +6 -4
  21. circle/web3/developer_controlled_wallets/models/wallet.py +4 -2
  22. {circle_developer_controlled_wallets-2.1.0.dist-info → circle_developer_controlled_wallets-3.0.0.dist-info}/METADATA +4 -4
  23. {circle_developer_controlled_wallets-2.1.0.dist-info → circle_developer_controlled_wallets-3.0.0.dist-info}/RECORD +25 -23
  24. {circle_developer_controlled_wallets-2.1.0.dist-info → circle_developer_controlled_wallets-3.0.0.dist-info}/WHEEL +1 -1
  25. {circle_developer_controlled_wallets-2.1.0.dist-info → circle_developer_controlled_wallets-3.0.0.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,7 @@
10
10
  """ # noqa: E501
11
11
 
12
12
 
13
- __version__ = "2.1.0"
13
+ __version__ = "3.0.0"
14
14
 
15
15
  # import apis into sdk package
16
16
  from circle.web3.developer_controlled_wallets.api.signing_api import SigningApi
@@ -45,7 +45,6 @@ from circle.web3.developer_controlled_wallets.models.blockchain import Blockchai
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
47
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
48
- from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_data import CreateContractExecutionTransactionForDeveloperData
49
48
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
50
49
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
51
50
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response import CreateTransferTransactionForDeveloperResponse
@@ -75,6 +74,9 @@ from circle.web3.developer_controlled_wallets.models.risk_score import RiskScore
75
74
  from circle.web3.developer_controlled_wallets.models.risk_signal import RiskSignal
76
75
  from circle.web3.developer_controlled_wallets.models.risk_type import RiskType
77
76
  from circle.web3.developer_controlled_wallets.models.sca_wallet import SCAWallet
77
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_request import SignDelegateActionRequest
78
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response import SignDelegateActionResponse
79
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response_data import SignDelegateActionResponseData
78
80
  from circle.web3.developer_controlled_wallets.models.sign_message_request import SignMessageRequest
79
81
  from circle.web3.developer_controlled_wallets.models.sign_transaction_request import SignTransactionRequest
80
82
  from circle.web3.developer_controlled_wallets.models.sign_transaction_response import SignTransactionResponse
@@ -18,6 +18,8 @@ from typing_extensions import Annotated
18
18
 
19
19
  from pydantic import Field
20
20
 
21
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_request import SignDelegateActionRequest
22
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response import SignDelegateActionResponse
21
23
  from circle.web3.developer_controlled_wallets.models.sign_message_request import SignMessageRequest
22
24
  from circle.web3.developer_controlled_wallets.models.sign_transaction_request import SignTransactionRequest
23
25
  from circle.web3.developer_controlled_wallets.models.sign_transaction_response import SignTransactionResponse
@@ -60,6 +62,156 @@ class SigningApi(object):
60
62
  api_client = ApiClient.get_default()
61
63
  self.api_client = api_client
62
64
 
65
+ @auto_fill
66
+ @validate_arguments
67
+ def sign_delegate_action(self, sign_delegate_action_request : Annotated[SignDelegateActionRequest, Field(..., description="Schema for the request payload to sign a delegate action.")], **kwargs) -> SignDelegateActionResponse: # noqa: E501
68
+ """Sign delegate action # noqa: E501
69
+
70
+ Sign a delegate action from a specific developer-controlled wallet. NOTE: This endpoint is only available for NEAR and NEAR-TESTNET. # noqa: E501
71
+ This method makes a synchronous HTTP request by default. To make an
72
+ asynchronous HTTP request, please pass async_req=True
73
+
74
+ >>> thread = api.sign_delegate_action(sign_delegate_action_request, async_req=True)
75
+ >>> result = thread.get()
76
+
77
+ :param sign_delegate_action_request: Schema for the request payload to sign a delegate action. (required)
78
+ :type sign_delegate_action_request: SignDelegateActionRequest
79
+ :param async_req: Whether to execute the request asynchronously.
80
+ :type async_req: bool, optional
81
+ :param _request_timeout: timeout setting for this request. If one
82
+ number provided, it will be total request
83
+ timeout. It can also be a pair (tuple) of
84
+ (connection, read) timeouts.
85
+ :return: Returns the result object.
86
+ If the method is called asynchronously,
87
+ returns the request thread.
88
+ :rtype: SignDelegateActionResponse
89
+ """
90
+ kwargs['_return_http_data_only'] = True
91
+ if '_preload_content' in kwargs:
92
+ raise ValueError("Error! Please call the sign_delegate_action_with_http_info method with `_preload_content` instead and obtain raw data from ApiResponse.raw_data")
93
+ return self.sign_delegate_action_with_http_info(sign_delegate_action_request, **kwargs) # noqa: E501
94
+
95
+ @auto_fill
96
+ @validate_arguments
97
+ def sign_delegate_action_with_http_info(self, sign_delegate_action_request : Annotated[SignDelegateActionRequest, Field(..., description="Schema for the request payload to sign a delegate action.")], **kwargs) -> ApiResponse: # noqa: E501
98
+ """Sign delegate action # noqa: E501
99
+
100
+ Sign a delegate action from a specific developer-controlled wallet. NOTE: This endpoint is only available for NEAR and NEAR-TESTNET. # noqa: E501
101
+ This method makes a synchronous HTTP request by default. To make an
102
+ asynchronous HTTP request, please pass async_req=True
103
+
104
+ >>> thread = api.sign_delegate_action_with_http_info(sign_delegate_action_request, async_req=True)
105
+ >>> result = thread.get()
106
+
107
+ :param sign_delegate_action_request: Schema for the request payload to sign a delegate action. (required)
108
+ :type sign_delegate_action_request: SignDelegateActionRequest
109
+ :param async_req: Whether to execute the request asynchronously.
110
+ :type async_req: bool, optional
111
+ :param _preload_content: if False, the ApiResponse.data will
112
+ be set to none and raw_data will store the
113
+ HTTP response body without reading/decoding.
114
+ Default is True.
115
+ :type _preload_content: bool, optional
116
+ :param _return_http_data_only: response data instead of ApiResponse
117
+ object with status code, headers, etc
118
+ :type _return_http_data_only: bool, optional
119
+ :param _request_timeout: timeout setting for this request. If one
120
+ number provided, it will be total request
121
+ timeout. It can also be a pair (tuple) of
122
+ (connection, read) timeouts.
123
+ :param _request_auth: set to override the auth_settings for an a single
124
+ request; this effectively ignores the authentication
125
+ in the spec for a single request.
126
+ :type _request_auth: dict, optional
127
+ :type _content_type: string, optional: force content-type for the request
128
+ :return: Returns the result object.
129
+ If the method is called asynchronously,
130
+ returns the request thread.
131
+ :rtype: tuple(SignDelegateActionResponse, status_code(int), headers(HTTPHeaderDict))
132
+ """
133
+
134
+ _params = locals()
135
+
136
+ _all_params = [
137
+ 'sign_delegate_action_request'
138
+ ]
139
+ _all_params.extend(
140
+ [
141
+ 'async_req',
142
+ '_return_http_data_only',
143
+ '_preload_content',
144
+ '_request_timeout',
145
+ '_request_auth',
146
+ '_content_type',
147
+ '_headers'
148
+ ]
149
+ )
150
+
151
+ # validate the arguments
152
+ for _key, _val in _params['kwargs'].items():
153
+ if _key not in _all_params:
154
+ raise ApiTypeError(
155
+ "Got an unexpected keyword argument '%s'"
156
+ " to method sign_delegate_action" % _key
157
+ )
158
+ _params[_key] = _val
159
+ del _params['kwargs']
160
+
161
+ _collection_formats = {}
162
+
163
+ # process the path parameters
164
+ _path_params = {}
165
+
166
+ # process the query parameters
167
+ _query_params = []
168
+ # process the header parameters
169
+ _header_params = dict(_params.get('_headers', {}))
170
+ # process the form parameters
171
+ _form_params = []
172
+ _files = {}
173
+ # process the body parameter
174
+ _body_params = None
175
+ if _params['sign_delegate_action_request'] is not None:
176
+ _body_params = _params['sign_delegate_action_request']
177
+
178
+ # set the HTTP header `Accept`
179
+ _header_params['Accept'] = self.api_client.select_header_accept(
180
+ ['application/json']) # noqa: E501
181
+
182
+ # set the HTTP header `Content-Type`
183
+ _content_types_list = _params.get('_content_type',
184
+ self.api_client.select_header_content_type(
185
+ ['application/json']))
186
+ if _content_types_list:
187
+ _header_params['Content-Type'] = _content_types_list
188
+
189
+ # authentication setting
190
+ _auth_settings = ['BearerAuth'] # noqa: E501
191
+
192
+ _response_types_map = {
193
+ '200': "SignDelegateActionResponse",
194
+ '400': "BadRequestResponse",
195
+ '401': "NotAuthorizedResponse",
196
+ }
197
+
198
+ return self.api_client.call_api(
199
+ '/v1/w3s/developer/sign/delegateAction', 'POST',
200
+ _path_params,
201
+ _query_params,
202
+ _header_params,
203
+ body=_body_params,
204
+ post_params=_form_params,
205
+ files=_files,
206
+ response_types_map=_response_types_map,
207
+ auth_settings=_auth_settings,
208
+ async_req=_params.get('async_req'),
209
+ _return_http_data_only=_params.get('_return_http_data_only'), # noqa: E501
210
+ _preload_content=_params.get('_preload_content', True),
211
+ _request_timeout=_params.get('_request_timeout'),
212
+ collection_formats=_collection_formats,
213
+ _request_auth=_params.get('_request_auth'))
214
+
63
215
  @auto_fill
64
216
  @validate_arguments
65
217
  def sign_message(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], **kwargs) -> SignatureResponse: # noqa: E501
@@ -215,7 +367,7 @@ class SigningApi(object):
215
367
  def sign_transaction(self, sign_transaction_request : Annotated[SignTransactionRequest, Field(..., description="Schema for the request payload to sign a transaction.")], **kwargs) -> SignTransactionResponse: # noqa: E501
216
368
  """Sign transaction # noqa: E501
217
369
 
218
- Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the Solana blockchain. # noqa: E501
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
219
371
  This method makes a synchronous HTTP request by default. To make an
220
372
  asynchronous HTTP request, please pass async_req=True
221
373
 
@@ -245,7 +397,7 @@ class SigningApi(object):
245
397
  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
246
398
  """Sign transaction # noqa: E501
247
399
 
248
- Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the Solana blockchain. # noqa: E501
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
249
401
  This method makes a synchronous HTTP request by default. To make an
250
402
  asynchronous HTTP request, please pass async_req=True
251
403
 
@@ -58,7 +58,7 @@ class TokenLookupApi(object):
58
58
 
59
59
  @auto_fill
60
60
  @validate_arguments
61
- def get_token_id(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], **kwargs) -> TokenResponse: # noqa: E501
61
+ def get_token_id(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], **kwargs) -> TokenResponse: # noqa: E501
62
62
  """Get token details # noqa: E501
63
63
 
64
64
  Fetches details of a specific token given its unique identifier. Every token in your network of wallets has a UUID associated with it, regardless of whether it's already recognized or was added as a monitored token. # noqa: E501
@@ -68,7 +68,7 @@ class TokenLookupApi(object):
68
68
  >>> thread = api.get_token_id(id, async_req=True)
69
69
  >>> result = thread.get()
70
70
 
71
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
71
+ :param id: The universally unique identifier of the resource. (required)
72
72
  :type id: str
73
73
  :param async_req: Whether to execute the request asynchronously.
74
74
  :type async_req: bool, optional
@@ -88,7 +88,7 @@ class TokenLookupApi(object):
88
88
 
89
89
  @auto_fill
90
90
  @validate_arguments
91
- def get_token_id_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], **kwargs) -> ApiResponse: # noqa: E501
91
+ def get_token_id_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], **kwargs) -> ApiResponse: # noqa: E501
92
92
  """Get token details # noqa: E501
93
93
 
94
94
  Fetches details of a specific token given its unique identifier. Every token in your network of wallets has a UUID associated with it, regardless of whether it's already recognized or was added as a monitored token. # noqa: E501
@@ -98,7 +98,7 @@ class TokenLookupApi(object):
98
98
  >>> thread = api.get_token_id_with_http_info(id, async_req=True)
99
99
  >>> result = thread.get()
100
100
 
101
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
101
+ :param id: The universally unique identifier of the resource. (required)
102
102
  :type id: str
103
103
  :param async_req: Whether to execute the request asynchronously.
104
104
  :type async_req: bool, optional
@@ -178,6 +178,7 @@ class TokenLookupApi(object):
178
178
 
179
179
  _response_types_map = {
180
180
  '200': "TokenResponse",
181
+ '404': "NotFoundResponse",
181
182
  }
182
183
 
183
184
  return self.api_client.call_api(
@@ -213,6 +213,7 @@ class TransactionsApi(object):
213
213
 
214
214
  _response_types_map = {
215
215
  '200': "AccelerateTransactionForDeveloper",
216
+ '404': "NotFoundResponse",
216
217
  }
217
218
 
218
219
  return self.api_client.call_api(
@@ -369,6 +370,7 @@ class TransactionsApi(object):
369
370
 
370
371
  _response_types_map = {
371
372
  '200': "CancelTransactionForDeveloper",
373
+ '404': "NotFoundResponse",
372
374
  }
373
375
 
374
376
  return self.api_client.call_api(
@@ -517,6 +519,7 @@ class TransactionsApi(object):
517
519
 
518
520
  _response_types_map = {
519
521
  '200': "CreateContractExecutionTransactionForDeveloper",
522
+ '201': "CreateContractExecutionTransactionForDeveloper",
520
523
  }
521
524
 
522
525
  return self.api_client.call_api(
@@ -665,6 +668,7 @@ class TransactionsApi(object):
665
668
 
666
669
  _response_types_map = {
667
670
  '200': "CreateTransferTransactionForDeveloperResponse",
671
+ '201': "CreateTransferTransactionForDeveloperResponse",
668
672
  }
669
673
 
670
674
  return self.api_client.call_api(
@@ -1258,6 +1262,7 @@ class TransactionsApi(object):
1258
1262
 
1259
1263
  _response_types_map = {
1260
1264
  '200': "TransactionResponse",
1265
+ '404': "NotFoundResponse",
1261
1266
  }
1262
1267
 
1263
1268
  return self.api_client.call_api(
@@ -224,7 +224,7 @@ class WalletSetsApi(object):
224
224
 
225
225
  @auto_fill
226
226
  @validate_arguments
227
- def get_wallet_set(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletSetResponse: # noqa: E501
227
+ def get_wallet_set(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletSetResponse: # noqa: E501
228
228
  """Get a wallet set # noqa: E501
229
229
 
230
230
  Retrieve an existing wallet set. # noqa: E501
@@ -234,7 +234,7 @@ class WalletSetsApi(object):
234
234
  >>> thread = api.get_wallet_set(id, x_request_id, async_req=True)
235
235
  >>> result = thread.get()
236
236
 
237
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
237
+ :param id: The universally unique identifier of the resource. (required)
238
238
  :type id: str
239
239
  :param x_request_id: Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
240
240
  :type x_request_id: str
@@ -256,7 +256,7 @@ class WalletSetsApi(object):
256
256
 
257
257
  @auto_fill
258
258
  @validate_arguments
259
- def get_wallet_set_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], 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
259
+ def get_wallet_set_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], 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
260
  """Get a wallet set # noqa: E501
261
261
 
262
262
  Retrieve an existing wallet set. # noqa: E501
@@ -266,7 +266,7 @@ class WalletSetsApi(object):
266
266
  >>> thread = api.get_wallet_set_with_http_info(id, x_request_id, async_req=True)
267
267
  >>> result = thread.get()
268
268
 
269
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
269
+ :param id: The universally unique identifier of the resource. (required)
270
270
  :type id: str
271
271
  :param x_request_id: Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
272
272
  :type x_request_id: str
@@ -563,7 +563,7 @@ class WalletSetsApi(object):
563
563
 
564
564
  @auto_fill
565
565
  @validate_arguments
566
- def update_wallet_set(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], update_wallet_set_request : Annotated[UpdateWalletSetRequest, Field(..., description="Schema for the request payload to update an existing wallet set.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletSetResponse: # noqa: E501
566
+ def update_wallet_set(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], update_wallet_set_request : Annotated[UpdateWalletSetRequest, Field(..., description="Schema for the request payload to update an existing wallet set.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletSetResponse: # noqa: E501
567
567
  """Update a wallet set # noqa: E501
568
568
 
569
569
  Update the name of the wallet set # noqa: E501
@@ -573,7 +573,7 @@ class WalletSetsApi(object):
573
573
  >>> thread = api.update_wallet_set(id, update_wallet_set_request, x_request_id, async_req=True)
574
574
  >>> result = thread.get()
575
575
 
576
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
576
+ :param id: The universally unique identifier of the resource. (required)
577
577
  :type id: str
578
578
  :param update_wallet_set_request: Schema for the request payload to update an existing wallet set. (required)
579
579
  :type update_wallet_set_request: UpdateWalletSetRequest
@@ -597,7 +597,7 @@ class WalletSetsApi(object):
597
597
 
598
598
  @auto_fill
599
599
  @validate_arguments
600
- def update_wallet_set_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], update_wallet_set_request : Annotated[UpdateWalletSetRequest, Field(..., description="Schema for the request payload to update an existing wallet set.")], 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
600
+ def update_wallet_set_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], update_wallet_set_request : Annotated[UpdateWalletSetRequest, Field(..., description="Schema for the request payload to update an existing wallet set.")], 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
601
601
  """Update a wallet set # noqa: E501
602
602
 
603
603
  Update the name of the wallet set # noqa: E501
@@ -607,7 +607,7 @@ class WalletSetsApi(object):
607
607
  >>> thread = api.update_wallet_set_with_http_info(id, update_wallet_set_request, x_request_id, async_req=True)
608
608
  >>> result = thread.get()
609
609
 
610
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
610
+ :param id: The universally unique identifier of the resource. (required)
611
611
  :type id: str
612
612
  :param update_wallet_set_request: Schema for the request payload to update an existing wallet set. (required)
613
613
  :type update_wallet_set_request: UpdateWalletSetRequest
@@ -203,6 +203,7 @@ class WalletsApi(object):
203
203
 
204
204
  _response_types_map = {
205
205
  '200': "Wallets",
206
+ '201': "Wallets",
206
207
  '400': "BadRequestResponse",
207
208
  '401': "NotAuthorizedResponse",
208
209
  }
@@ -226,7 +227,7 @@ class WalletsApi(object):
226
227
 
227
228
  @auto_fill
228
229
  @validate_arguments
229
- def get_wallet(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletResponse: # noqa: E501
230
+ def get_wallet(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletResponse: # noqa: E501
230
231
  """Retrieve a wallet # noqa: E501
231
232
 
232
233
  Retrieve an existing wallet # noqa: E501
@@ -236,7 +237,7 @@ class WalletsApi(object):
236
237
  >>> thread = api.get_wallet(id, x_request_id, async_req=True)
237
238
  >>> result = thread.get()
238
239
 
239
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
240
+ :param id: The universally unique identifier of the resource. (required)
240
241
  :type id: str
241
242
  :param x_request_id: Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
242
243
  :type x_request_id: str
@@ -258,7 +259,7 @@ class WalletsApi(object):
258
259
 
259
260
  @auto_fill
260
261
  @validate_arguments
261
- def get_wallet_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], 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
262
+ def get_wallet_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], 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
262
263
  """Retrieve a wallet # noqa: E501
263
264
 
264
265
  Retrieve an existing wallet # noqa: E501
@@ -268,7 +269,7 @@ class WalletsApi(object):
268
269
  >>> thread = api.get_wallet_with_http_info(id, x_request_id, async_req=True)
269
270
  >>> result = thread.get()
270
271
 
271
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
272
+ :param id: The universally unique identifier of the resource. (required)
272
273
  :type id: str
273
274
  :param x_request_id: Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.
274
275
  :type x_request_id: str
@@ -983,7 +984,7 @@ class WalletsApi(object):
983
984
 
984
985
  @auto_fill
985
986
  @validate_arguments
986
- def update_wallet(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], update_wallet_request : Annotated[UpdateWalletRequest, Field(..., description="Schema for the request payload to update an existing wallet.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletResponse: # noqa: E501
987
+ def update_wallet(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], update_wallet_request : Annotated[UpdateWalletRequest, Field(..., description="Schema for the request payload to update an existing wallet.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> WalletResponse: # noqa: E501
987
988
  """Update a wallet # noqa: E501
988
989
 
989
990
  Updates info metadata of a wallet. # noqa: E501
@@ -993,7 +994,7 @@ class WalletsApi(object):
993
994
  >>> thread = api.update_wallet(id, update_wallet_request, x_request_id, async_req=True)
994
995
  >>> result = thread.get()
995
996
 
996
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
997
+ :param id: The universally unique identifier of the resource. (required)
997
998
  :type id: str
998
999
  :param update_wallet_request: Schema for the request payload to update an existing wallet. (required)
999
1000
  :type update_wallet_request: UpdateWalletRequest
@@ -1017,7 +1018,7 @@ class WalletsApi(object):
1017
1018
 
1018
1019
  @auto_fill
1019
1020
  @validate_arguments
1020
- def update_wallet_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier (UUID v4) of the resource.")], update_wallet_request : Annotated[UpdateWalletRequest, Field(..., description="Schema for the request payload to update an existing wallet.")], 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
1021
+ def update_wallet_with_http_info(self, id : Annotated[StrictStr, Field(..., description="The universally unique identifier of the resource.")], update_wallet_request : Annotated[UpdateWalletRequest, Field(..., description="Schema for the request payload to update an existing wallet.")], 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
1021
1022
  """Update a wallet # noqa: E501
1022
1023
 
1023
1024
  Updates info metadata of a wallet. # noqa: E501
@@ -1027,7 +1028,7 @@ class WalletsApi(object):
1027
1028
  >>> thread = api.update_wallet_with_http_info(id, update_wallet_request, x_request_id, async_req=True)
1028
1029
  >>> result = thread.get()
1029
1030
 
1030
- :param id: The universally unique identifier (UUID v4) of the resource. (required)
1031
+ :param id: The universally unique identifier of the resource. (required)
1031
1032
  :type id: str
1032
1033
  :param update_wallet_request: Schema for the request payload to update an existing wallet. (required)
1033
1034
  :type update_wallet_request: UpdateWalletRequest
@@ -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 / 2.1.0'
80
+ self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 3.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: 2.1.0".\
386
+ "SDK Package Version: 3.0.0".\
387
387
  format(env=sys.platform, pyversion=sys.version)
388
388
 
389
389
  def get_host_settings(self):
@@ -24,7 +24,6 @@ from circle.web3.developer_controlled_wallets.models.blockchain import Blockchai
24
24
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer import CancelTransactionForDeveloper
25
25
  from circle.web3.developer_controlled_wallets.models.cancel_transaction_for_developer_request import CancelTransactionForDeveloperRequest
26
26
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer import CreateContractExecutionTransactionForDeveloper
27
- from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_data import CreateContractExecutionTransactionForDeveloperData
28
27
  from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_request import CreateContractExecutionTransactionForDeveloperRequest
29
28
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_request import CreateTransferTransactionForDeveloperRequest
30
29
  from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response import CreateTransferTransactionForDeveloperResponse
@@ -54,6 +53,9 @@ from circle.web3.developer_controlled_wallets.models.risk_score import RiskScore
54
53
  from circle.web3.developer_controlled_wallets.models.risk_signal import RiskSignal
55
54
  from circle.web3.developer_controlled_wallets.models.risk_type import RiskType
56
55
  from circle.web3.developer_controlled_wallets.models.sca_wallet import SCAWallet
56
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_request import SignDelegateActionRequest
57
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response import SignDelegateActionResponse
58
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response_data import SignDelegateActionResponseData
57
59
  from circle.web3.developer_controlled_wallets.models.sign_message_request import SignMessageRequest
58
60
  from circle.web3.developer_controlled_wallets.models.sign_transaction_request import SignTransactionRequest
59
61
  from circle.web3.developer_controlled_wallets.models.sign_transaction_response import SignTransactionResponse
@@ -35,6 +35,10 @@ class Blockchain(str, Enum):
35
35
  SOL_MINUS_DEVNET = 'SOL-DEVNET'
36
36
  ARB = 'ARB'
37
37
  ARB_MINUS_SEPOLIA = 'ARB-SEPOLIA'
38
+ NEAR = 'NEAR'
39
+ NEAR_MINUS_TESTNET = 'NEAR-TESTNET'
40
+ EVM = 'EVM'
41
+ EVM_MINUS_TESTNET = 'EVM-TESTNET'
38
42
 
39
43
  @classmethod
40
44
  def from_json(cls, json_str: str) -> Blockchain:
@@ -16,13 +16,13 @@ import json
16
16
 
17
17
 
18
18
  from pydantic import BaseModel, Field
19
- from circle.web3.developer_controlled_wallets.models.create_contract_execution_transaction_for_developer_data import CreateContractExecutionTransactionForDeveloperData
19
+ from circle.web3.developer_controlled_wallets.models.create_transfer_transaction_for_developer_response_data import CreateTransferTransactionForDeveloperResponseData
20
20
 
21
21
  class CreateContractExecutionTransactionForDeveloper(BaseModel):
22
22
  """
23
23
  CreateContractExecutionTransactionForDeveloper
24
24
  """
25
- data: CreateContractExecutionTransactionForDeveloperData = Field(...)
25
+ data: CreateTransferTransactionForDeveloperResponseData = Field(...)
26
26
  __properties = ["data"]
27
27
 
28
28
  def __init__(self, **kwargs):
@@ -80,7 +80,7 @@ class CreateContractExecutionTransactionForDeveloper(BaseModel):
80
80
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
81
81
 
82
82
  _obj = CreateContractExecutionTransactionForDeveloper.parse_obj({
83
- "data": CreateContractExecutionTransactionForDeveloperData.from_dict(obj.get("data")) if obj.get("data") is not None else None
83
+ "data": CreateTransferTransactionForDeveloperResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
84
84
  })
85
85
  return _obj
86
86
 
@@ -32,7 +32,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
32
32
  gas_price: Optional[StrictStr] = Field(None, alias="gasPrice", description="For blockchains without EIP-1559 support, the maximum price of gas, in gwei, to use per each unit of gas (see `gasLimit`). Requires `gasLimit`. Cannot be used with `feeLevel`, `priorityFee`, or `maxFee`. Estimates for this fee can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
33
33
  max_fee: Optional[StrictStr] = Field(None, alias="maxFee", description="For blockchains with EIP-1559 support, the maximum price per unit of gas (see `gasLimit`), in gwei. Requires `priorityFee`, and `gasLimit` to be present. Cannot be used with `feeLevel` or `gasPrice`. Estimates for this fee can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
34
34
  priority_fee: Optional[StrictStr] = Field(None, alias="priorityFee", description="For blockchains with EIP-1559 support, the “tip”, in gwei, to add to the base fee as an incentive for validators. Please note that the `maxFee` and `gasLimit` parameters are required alongside the `priorityFee`. The `feeLevel` and `gasPrice` parameters cannot be used with the `priorityFee`. Estimations for this fee can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
35
- nft_token_ids: Optional[conlist(StrictStr)] = Field(None, alias="nftTokenIds", description="NftTokenIDs specify the nft ID list to be transferred/batchTransferred for NFT withdrawal. Note. Only erc1155 supports safeBatchTransferFrom.")
35
+ nft_token_ids: Optional[conlist(StrictStr)] = Field(None, alias="nftTokenIds", description="List of NFT token IDs corresponding with the NFTs to transfer. Batch transfers are supported only for ERC-1155 tokens. The length of NFT token IDs must match the length of amounts.")
36
36
  ref_id: Optional[StrictStr] = Field(None, alias="refId", description="Optional reference or description used to identify the transaction.")
37
37
  token_id: Optional[StrictStr] = Field(None, alias="tokenId", description="System generated identifier of the token. Excluded with `tokenAddress` and `tokenBlockchain`.")
38
38
  token_address: Optional[StrictStr] = Field(None, alias="tokenAddress", description="Blockchain address of the transferred token. Empty for native tokens. Excluded with `tokenId`.")
@@ -35,8 +35,9 @@ class EOAWallet(BaseModel):
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
37
37
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
38
+ initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
38
39
  account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
39
- __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "accountType"]
40
+ __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType"]
40
41
 
41
42
  def __init__(self, **kwargs):
42
43
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -108,6 +109,7 @@ class EOAWallet(BaseModel):
108
109
  "state": obj.get("state"),
109
110
  "user_id": obj.get("userId"),
110
111
  "wallet_set_id": obj.get("walletSetId"),
112
+ "initial_public_key": obj.get("initialPublicKey"),
111
113
  "account_type": obj.get("accountType")
112
114
  })
113
115
  return _obj
@@ -30,7 +30,7 @@ class EstimateContractExecutionTransactionFeeRequest(BaseModel):
30
30
  blockchain: Optional[EstimateContractExecutionTransactionFeeRequestBlockchain] = None
31
31
  contract_address: StrictStr = Field(..., alias="contractAddress", description="The blockchain address of the contract to be executed.")
32
32
  source_address: Optional[StrictStr] = Field(None, alias="sourceAddress", description="The source address of the transaction.")
33
- wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="System-generated unique identifier of the resource.")
33
+ wallet_id: Optional[StrictStr] = Field(None, alias="walletId", description="Unique system generated identifier of the wallet. Required when source Address and blockchain is not provided. Mutually exclusive. For contract deploys this wallet ID will be used as the source.")
34
34
  __properties = ["abiFunctionSignature", "abiParameters", "callData", "amount", "blockchain", "contractAddress", "sourceAddress", "walletId"]
35
35
 
36
36
  def __init__(self, **kwargs):
@@ -35,9 +35,10 @@ class SCAWallet(BaseModel):
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
37
37
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
38
+ initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
38
39
  account_type: StrictStr = Field(..., alias="accountType", description="An account can be a Smart Contract Account (SCA) or an Externally Owned Account (EOA). To learn more, see the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). If an account type is not specified during the creation of a wallet, it defaults to `EOA` (Externally Owned Account). Note that Solana doesn't support Smart Contract Account (SCA). ")
39
40
  sca_core: StrictStr = Field(..., alias="scaCore", description="SCAs can have different versions that have different functionality. SCACore will display the version of the SCA being created. Please refer to developer docs for a list of the versions supported.")
40
- __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "accountType", "scaCore"]
41
+ __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "scaCore"]
41
42
 
42
43
  def __init__(self, **kwargs):
43
44
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -109,6 +110,7 @@ class SCAWallet(BaseModel):
109
110
  "state": obj.get("state"),
110
111
  "user_id": obj.get("userId"),
111
112
  "wallet_set_id": obj.get("walletSetId"),
113
+ "initial_public_key": obj.get("initialPublicKey"),
112
114
  "account_type": obj.get("accountType"),
113
115
  "sca_core": obj.get("scaCore")
114
116
  })
@@ -0,0 +1,87 @@
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
+
17
+ from typing import Union
18
+ from pydantic import BaseModel, Field, StrictBytes, StrictStr
19
+
20
+ class SignDelegateActionRequest(BaseModel):
21
+ """
22
+ SignDelegateActionRequest
23
+ """
24
+ wallet_id: StrictStr = Field(..., alias="walletId", description="System-generated unique identifier of the resource.")
25
+ unsigned_delegate_action: StrictStr = Field(..., alias="unsignedDelegateAction", description="Unsigned delegate action string that needs to be signed. Must be base64 encoded.")
26
+ entity_secret_ciphertext: Union[StrictBytes, StrictStr] = Field(..., alias="entitySecretCiphertext", description="A base64 string expression of the entity secret ciphertext. The entity secret should be encrypted by the entity public key. Circle mandates that the entity secret ciphertext is unique for each API request. ")
27
+ __properties = ["walletId", "unsignedDelegateAction", "entitySecretCiphertext"]
28
+
29
+ def __init__(self, **kwargs):
30
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
31
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
32
+
33
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
34
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
35
+ super().__init__(**kwargs)
36
+
37
+
38
+ class Config:
39
+ """Pydantic configuration"""
40
+ allow_population_by_field_name = True
41
+ validate_assignment = True
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.dict(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> SignDelegateActionRequest:
53
+ """Create an instance of SignDelegateActionRequest from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self):
57
+ """Returns the dictionary representation of the model using alias"""
58
+ _dict = self.dict(by_alias=True,
59
+ exclude={
60
+ },
61
+ exclude_none=True)
62
+ return _dict
63
+
64
+ @classmethod
65
+ def from_dict(cls, obj: dict) -> SignDelegateActionRequest:
66
+ """Create an instance of SignDelegateActionRequest from a dict"""
67
+ if obj is None:
68
+ return None
69
+
70
+ if not isinstance(obj, dict):
71
+ return SignDelegateActionRequest.parse_obj(obj)
72
+
73
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
74
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
75
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
76
+
77
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
78
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
79
+
80
+ _obj = SignDelegateActionRequest.parse_obj({
81
+ "wallet_id": obj.get("walletId"),
82
+ "unsigned_delegate_action": obj.get("unsignedDelegateAction"),
83
+ "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
84
+ })
85
+ return _obj
86
+
87
+
@@ -0,0 +1,87 @@
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
+
17
+
18
+ from pydantic import BaseModel, Field
19
+ from circle.web3.developer_controlled_wallets.models.sign_delegate_action_response_data import SignDelegateActionResponseData
20
+
21
+ class SignDelegateActionResponse(BaseModel):
22
+ """
23
+ SignDelegateActionResponse
24
+ """
25
+ data: SignDelegateActionResponseData = Field(...)
26
+ __properties = ["data"]
27
+
28
+ def __init__(self, **kwargs):
29
+ if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
30
+ kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
31
+
32
+ if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
33
+ kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
34
+ super().__init__(**kwargs)
35
+
36
+
37
+ class Config:
38
+ """Pydantic configuration"""
39
+ allow_population_by_field_name = True
40
+ validate_assignment = True
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.dict(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> SignDelegateActionResponse:
52
+ """Create an instance of SignDelegateActionResponse from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self):
56
+ """Returns the dictionary representation of the model using alias"""
57
+ _dict = self.dict(by_alias=True,
58
+ exclude={
59
+ },
60
+ exclude_none=True)
61
+ # override the default output from pydantic by calling `to_dict()` of data
62
+ if self.data:
63
+ _dict['data'] = self.data.to_dict()
64
+ return _dict
65
+
66
+ @classmethod
67
+ def from_dict(cls, obj: dict) -> SignDelegateActionResponse:
68
+ """Create an instance of SignDelegateActionResponse from a dict"""
69
+ if obj is None:
70
+ return None
71
+
72
+ if not isinstance(obj, dict):
73
+ return SignDelegateActionResponse.parse_obj(obj)
74
+
75
+ # fill idempotency_key and ciphertext with placeholder for auto_fill
76
+ if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
77
+ obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
78
+
79
+ if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
80
+ obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
81
+
82
+ _obj = SignDelegateActionResponse.parse_obj({
83
+ "data": SignDelegateActionResponseData.from_dict(obj.get("data")) if obj.get("data") is not None else None
84
+ })
85
+ return _obj
86
+
87
+
@@ -16,15 +16,14 @@ import json
16
16
 
17
17
 
18
18
  from pydantic import BaseModel, Field, StrictStr
19
- from circle.web3.developer_controlled_wallets.models.transaction_state import TransactionState
20
19
 
21
- class CreateContractExecutionTransactionForDeveloperData(BaseModel):
20
+ class SignDelegateActionResponseData(BaseModel):
22
21
  """
23
- CreateContractExecutionTransactionForDeveloperData
22
+ SignDelegateActionResponseData
24
23
  """
25
- id: StrictStr = Field(..., description="Unique system generated identifier of the transaction.")
26
- state: TransactionState = Field(...)
27
- __properties = ["id", "state"]
24
+ signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string.")
25
+ signed_delegate_action: StrictStr = Field(..., alias="signedDelegateAction", description="Signed delegate action is a base64 encoded string for NEAR.")
26
+ __properties = ["signature", "signedDelegateAction"]
28
27
 
29
28
  def __init__(self, **kwargs):
30
29
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -49,8 +48,8 @@ class CreateContractExecutionTransactionForDeveloperData(BaseModel):
49
48
  return json.dumps(self.to_dict())
50
49
 
51
50
  @classmethod
52
- def from_json(cls, json_str: str) -> CreateContractExecutionTransactionForDeveloperData:
53
- """Create an instance of CreateContractExecutionTransactionForDeveloperData from a JSON string"""
51
+ def from_json(cls, json_str: str) -> SignDelegateActionResponseData:
52
+ """Create an instance of SignDelegateActionResponseData from a JSON string"""
54
53
  return cls.from_dict(json.loads(json_str))
55
54
 
56
55
  def to_dict(self):
@@ -62,13 +61,13 @@ class CreateContractExecutionTransactionForDeveloperData(BaseModel):
62
61
  return _dict
63
62
 
64
63
  @classmethod
65
- def from_dict(cls, obj: dict) -> CreateContractExecutionTransactionForDeveloperData:
66
- """Create an instance of CreateContractExecutionTransactionForDeveloperData from a dict"""
64
+ def from_dict(cls, obj: dict) -> SignDelegateActionResponseData:
65
+ """Create an instance of SignDelegateActionResponseData from a dict"""
67
66
  if obj is None:
68
67
  return None
69
68
 
70
69
  if not isinstance(obj, dict):
71
- return CreateContractExecutionTransactionForDeveloperData.parse_obj(obj)
70
+ return SignDelegateActionResponseData.parse_obj(obj)
72
71
 
73
72
  # fill idempotency_key and ciphertext with placeholder for auto_fill
74
73
  if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
@@ -77,9 +76,9 @@ class CreateContractExecutionTransactionForDeveloperData(BaseModel):
77
76
  if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
78
77
  obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
79
78
 
80
- _obj = CreateContractExecutionTransactionForDeveloperData.parse_obj({
81
- "id": obj.get("id"),
82
- "state": obj.get("state")
79
+ _obj = SignDelegateActionResponseData.parse_obj({
80
+ "signature": obj.get("signature"),
81
+ "signed_delegate_action": obj.get("signedDelegateAction")
83
82
  })
84
83
  return _obj
85
84
 
@@ -22,10 +22,11 @@ class SignTransactionRequest(BaseModel):
22
22
  SignTransactionRequest
23
23
  """
24
24
  wallet_id: StrictStr = Field(..., alias="walletId", description="System-generated unique identifier of the resource.")
25
- raw_transaction: StrictStr = Field(..., alias="rawTransaction", description="Raw transaction string that needs to be signed. Must be base64 encoded.")
25
+ raw_transaction: Optional[StrictStr] = Field(None, alias="rawTransaction", description="Raw transaction string that needs to be signed. Excluded with `transaction`. Required without `transaction`. Required to be base64 encoded for NEAR, Solana chains. Required to be hex encoded for EVM chains. ")
26
+ transaction: Optional[StrictStr] = Field(None, description="Transaction object in JSON that needs to be signed. Excluded with `rawTransaction`. Required without `rawTransaction`. NOTE: This field is only supported by `EVM` chains. ")
26
27
  memo: Optional[StrictStr] = Field(None, description="The human readable explanation for this sign action. Useful for presenting with extra information.")
27
28
  entity_secret_ciphertext: Union[StrictBytes, StrictStr] = Field(..., alias="entitySecretCiphertext", description="A base64 string expression of the entity secret ciphertext. The entity secret should be encrypted by the entity public key. Circle mandates that the entity secret ciphertext is unique for each API request. ")
28
- __properties = ["walletId", "rawTransaction", "memo", "entitySecretCiphertext"]
29
+ __properties = ["walletId", "rawTransaction", "transaction", "memo", "entitySecretCiphertext"]
29
30
 
30
31
  def __init__(self, **kwargs):
31
32
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -81,6 +82,7 @@ class SignTransactionRequest(BaseModel):
81
82
  _obj = SignTransactionRequest.parse_obj({
82
83
  "wallet_id": obj.get("walletId"),
83
84
  "raw_transaction": obj.get("rawTransaction"),
85
+ "transaction": obj.get("transaction"),
84
86
  "memo": obj.get("memo"),
85
87
  "entity_secret_ciphertext": obj.get("entitySecretCiphertext")
86
88
  })
@@ -14,7 +14,7 @@ import re # noqa: F401
14
14
  import json
15
15
 
16
16
 
17
-
17
+ from typing import Optional
18
18
  from pydantic import BaseModel, Field, StrictStr
19
19
 
20
20
  class SignTransactionResponseData(BaseModel):
@@ -22,8 +22,9 @@ class SignTransactionResponseData(BaseModel):
22
22
  SignTransactionResponseData
23
23
  """
24
24
  signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string.")
25
- signed_transaction: StrictStr = Field(..., alias="signedTransaction", description="Signed transaction is a base64 encoded string for Solana.")
26
- __properties = ["signature", "signedTransaction"]
25
+ signed_transaction: StrictStr = Field(..., alias="signedTransaction", description="Signed transaction is a base64 encoded string.")
26
+ tx_hash: Optional[StrictStr] = Field(None, alias="txHash", description="Blockchain generated identifier of the transaction.")
27
+ __properties = ["signature", "signedTransaction", "txHash"]
27
28
 
28
29
  def __init__(self, **kwargs):
29
30
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -78,7 +79,8 @@ class SignTransactionResponseData(BaseModel):
78
79
 
79
80
  _obj = SignTransactionResponseData.parse_obj({
80
81
  "signature": obj.get("signature"),
81
- "signed_transaction": obj.get("signedTransaction")
82
+ "signed_transaction": obj.get("signedTransaction"),
83
+ "tx_hash": obj.get("txHash")
82
84
  })
83
85
  return _obj
84
86
 
@@ -35,7 +35,8 @@ class Wallet(BaseModel):
35
35
  state: WalletState = Field(...)
36
36
  user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
37
37
  wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
38
- __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId"]
38
+ initial_public_key: Optional[StrictStr] = Field(None, alias="initialPublicKey", description="For NEAR blockchains only, the originally assigned public key of a wallet at the time of its creation.")
39
+ __properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey"]
39
40
 
40
41
  def __init__(self, **kwargs):
41
42
  if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
@@ -99,7 +100,8 @@ class Wallet(BaseModel):
99
100
  "ref_id": obj.get("refId"),
100
101
  "state": obj.get("state"),
101
102
  "user_id": obj.get("userId"),
102
- "wallet_set_id": obj.get("walletSetId")
103
+ "wallet_set_id": obj.get("walletSetId"),
104
+ "initial_public_key": obj.get("initialPublicKey")
103
105
  })
104
106
  return _obj
105
107
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: circle-developer-controlled-wallets
3
- Version: 2.1.0
3
+ Version: 3.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 ==2.1.0
16
- Requires-Dist: circle-web3-sdk-util ==2.1.0
15
+ Requires-Dist: circle-configurations ==3.0.0
16
+ Requires-Dist: circle-web3-sdk-util ==3.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: 2.1.0
21
+ - Package version: 3.0.0
22
22
 
23
23
  ## Requirements.
24
24
 
@@ -1,19 +1,19 @@
1
1
  circle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  circle/web3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- circle/web3/developer_controlled_wallets/__init__.py,sha256=rqOYaH1FQHNvwg6rC_xuWyHAt6n2ud10WV34zQYkHPk,10112
4
- circle/web3/developer_controlled_wallets/api_client.py,sha256=u5pp5qCEJQddRhkPz6EhpenKjs4yP8qCiQJxj6Eew5g,31612
3
+ circle/web3/developer_controlled_wallets/__init__.py,sha256=wYd_1lTpv_4at0Fsew8koJZ4P4dqlI5GWdmA9REq_p8,10302
4
+ circle/web3/developer_controlled_wallets/api_client.py,sha256=7_U8RPEXYxFe5kOX_RMDoOr3V1qoeHy3xnfIw49zEdo,31612
5
5
  circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
6
- circle/web3/developer_controlled_wallets/configuration.py,sha256=RxGyN-bu6FYTS7kwOIT5JGIRBGbhx6r-XmqqsZSTP4k,15101
6
+ circle/web3/developer_controlled_wallets/configuration.py,sha256=t7amiifo1LTippSiFDpkset6yKpsPr8OG6s5ag2GCjE,15101
7
7
  circle/web3/developer_controlled_wallets/exceptions.py,sha256=_2uyalsxooiwXa05bg46v7jt1aSrhzOD9etoqSyZEac,5218
8
8
  circle/web3/developer_controlled_wallets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  circle/web3/developer_controlled_wallets/rest.py,sha256=L2w4OU_OfcJNZ3nwckgwq21B3gIOXkpFjsOP4QliIeY,12814
10
10
  circle/web3/developer_controlled_wallets/api/__init__.py,sha256=OdeJef0RSUikrtSOaxsOkocXjHQYocnuXjq7TnT6W_Y,474
11
- circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=RSnRu7W4wgOwYcnyJSu14mgj4O7W6jM6yVycQhxDrO8,23976
12
- circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=kswtIlfrC2Eqy4UXwsgJNZdQpu9vnkpLUJLphxrAyAk,8005
13
- circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=lDA67HAbKlagwZrgv2BxYpAHhtyaKoP11XhZTXc_YTY,81666
14
- circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=jKpVmHKM5alQ2mdwunIl1hTPF-kYYKfKzHgdrnntYu4,39431
15
- circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=fYj2o6QVjG_kfmSVLSEujzRgJ62xTLpt7Lxmijz_eCk,71094
16
- circle/web3/developer_controlled_wallets/models/__init__.py,sha256=XB2r60BB62rqdSnjFmWqCWJRwmzQooUdm0TcLShr7wk,8908
11
+ circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=6U0HhHSmk5qs_cjt4yzZ5qlmLUk-joRCaN0d9UTl9T0,31506
12
+ circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=uLa6OsID3BkYkcul-XYFzwjMbTMYyKdNChohP68JuBI,8004
13
+ circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=Fwfhf-B07f1gqBSlm4gkyhVMxD8Bs_sLlGzpDBNqbpQ,81920
14
+ circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=0VHhXuMAYlfOjZN3K2UNCfGc7f-eN1WaT7N0sTlAZvI,39351
15
+ circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=4CUW4LmvLOQAewvnkwpN7I9sjYLkgTJXEHHZfErICDU,71044
16
+ circle/web3/developer_controlled_wallets/models/__init__.py,sha256=8YyrDEcN-wWGzKqZz7TTB1OqJ3-hcxfGNRHW9jBsHP8,9098
17
17
  circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py,sha256=YX5BNB39myCXozO8yBzN-PnPC_81HovQEL8_i_irhpU,6093
18
18
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer.py,sha256=p_gW451uzynxR2KX_-s7dfby13hpkk5tdOD0i7BO7tI,3108
19
19
  circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_data.py,sha256=45oeo8Y5X00kEl7cwUB0y0ccTezJpGsTWhs5LtEUDvg,2813
@@ -24,13 +24,12 @@ 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=ajuOZIiCKEV9-FWn0mTVK_rOM82-Zw33-okZYShoC5A,903
27
+ circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=vA_eHyGbyQrDT5vxAJbypVXnSrWcK12QmFRCpuFCUqE,1015
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/create_contract_execution_transaction_for_developer.py,sha256=yK4irqmFvTx058rkDi2XJvCWuOoGMZyeMW8pGTgKhMo,3242
31
- circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_data.py,sha256=yhEWPsn6RwLgz-vulLHW1Xh0OsSrvmZSENIHRNQpRAQ,3066
30
+ circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py,sha256=IddNCdmw9EFf5pl4tF8WeBxvNxnKUKVj9jZCazMcAbg,3238
32
31
  circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=q4weq1Q-YKdgUzoAc-ByVwmb13NxDrfLWD5XBAOpbow,8818
33
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=ERrJ7PXERkLEwBPjTNCnwmxrbg7OVKt3aQvVShlMINg,7937
32
+ circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=xcfw2-jItrb58O_wTAKlfDhhUndfdcnXblEzTi0mmIk,7976
34
33
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=YRMpIZhy8ZiBwuQls9Sfqg8CIOWlz8KNF1DAG1PeLdE,3254
35
34
  circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py,sha256=dLj_Y4YMpmf1hTSsYSECBjd5mNWXVCsq492mPLH5CvE,3055
36
35
  circle/web3/developer_controlled_wallets/models/create_wallet_request.py,sha256=nEGgLhxmeygJDlXDgRoj4RySzzkt8uMA93iqCQFkHOA,5142
@@ -38,9 +37,9 @@ circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py,sha
38
37
  circle/web3/developer_controlled_wallets/models/custody_type.py,sha256=-jwmNI1fRdu99uU6d8ewv6zXp7Of769WhIL0Qy1i_KI,704
39
38
  circle/web3/developer_controlled_wallets/models/developer_wallet_set.py,sha256=P1ON_uNz_fTfSNtEZ9hxKu6J7uTFINoyTmrASDDjMe0,3447
40
39
  circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py,sha256=_-vg7A8IQUWm0OeAASrpwXaeN6F6FaqcgNC7kq_GJK4,3642
41
- circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=DCKx9rWWW-fbejVx4sgx9Xz2QcPGx4usW3aAEQjiO3c,5269
40
+ circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=0p41jrU0olMrQjvUODF_VsADat1EoHmlHXTwohwXZ2o,5554
42
41
  circle/web3/developer_controlled_wallets/models/error.py,sha256=D43thFidD6O6DYDPGu7VThkOegMATdG3anTTx2UzeNQ,2661
43
- circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=ph3sU6WhY_RsnNnDxSn2UwWh6QQPplbyENsIyYpVme8,5850
42
+ circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=t4pIwD60330N81Uq1dqDNFt0-_X2krrgniAL4hbyLNI,5993
44
43
  circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request_blockchain.py,sha256=3zqmEoU200dkSOZIfdOhsNvXoVqN7nUmsk_Kv_TlR7k,1035
45
44
  circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py,sha256=843p1adcNxjo1kXxJm9NYLnqRvOzo7QDHCyLqVS-S2g,2951
46
45
  circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py,sha256=orTybZ1SmCiivc4LNnu3EdzVOSdNUyxv7TFLsGTSyq4,4607
@@ -57,11 +56,14 @@ circle/web3/developer_controlled_wallets/models/risk_category.py,sha256=33grvah3
57
56
  circle/web3/developer_controlled_wallets/models/risk_score.py,sha256=6fYv3L2IFz4c3YgYqAx16A8BZ_e9wc_H_WPxCligN3U,706
58
57
  circle/web3/developer_controlled_wallets/models/risk_signal.py,sha256=xjcdgecIlFpGX0UihoijlWm8aLNeArAcOr7bHAXCTic,3853
59
58
  circle/web3/developer_controlled_wallets/models/risk_type.py,sha256=QWM4vdDO6z-9GH3lbROk-FCuaX-cMBnhf5WtVGufbUs,654
60
- circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=SqM5ljTWvoK0T8QrkjV5Um5eNWw5cp0oCAdpdKdZWtI,5589
59
+ circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=pwJYdb9fHxHvB71Z2h_mH23uq9nP2VpxlGZCL81ufv4,5874
60
+ circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py,sha256=ExlKj_6BQgbRqaUE6O4oFE-P4wpfzIyvNUElNAKqUy8,3470
61
+ circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py,sha256=G9AKrgLcf411k8-zV349geMrdo6j7t_MxiCIrOyHazE,3000
62
+ circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py,sha256=CKuoauXZj7wq-X5MLfr9YX2mFUh4Nahw3BcVs7uN3wY,2992
61
63
  circle/web3/developer_controlled_wallets/models/sign_message_request.py,sha256=JM8zOhqqC4EhFW90ECUVUlfvo7anpeMbNgnla9jVDPI,3927
62
- circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=1OeBIN3qsLvLX8kc0CvgpdeZ6OV2AQG2s14OGsMAcOI,3608
64
+ circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=j66otM8GBdtN5epoqhji6jm_2aYECLr4GYsOvSqDxRE,4060
63
65
  circle/web3/developer_controlled_wallets/models/sign_transaction_response.py,sha256=3i97UhivfHJoKym91FR2joK50oiM4zxrNvJSxLlVCJY,2963
64
- circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=5lYdRk2sQK9E-CQ_b1nM6l4iPoZuaWhzDFE1Jo1gMIA,2949
66
+ circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=PRaumN7FufN-Cp4JWVm-7Ndov-nrSMdjNC_08FFT0EQ,3147
65
67
  circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha256=vMvEUHVOjkexLIriS8rQ6uhpw-IC6uJDYV8u4uPip2Y,3511
66
68
  circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=2c7Az0Q3uLkaMYM3MsZkNFbYp6GWCGEpx3HYl9l7l2U,2890
67
69
  circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=_xbbfi8I5D1XSSIO5L2PUQKwft8Dk_219bu4o7BIWtY,2682
@@ -84,7 +86,7 @@ circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py,sha
84
86
  circle/web3/developer_controlled_wallets/models/validate_address.py,sha256=BxdgY9SV1HOIs3FkiEftuJLSpQGkZOciCg-bNhadxEI,2866
85
87
  circle/web3/developer_controlled_wallets/models/validate_address_data.py,sha256=M7GvTNr6lAJfWMXIR8jO6r-1oKiZLmKwONri6maRdGM,2605
86
88
  circle/web3/developer_controlled_wallets/models/validate_address_request.py,sha256=1URC5TIBEscZNHEynijX67mmLQuceXUZqVFjN9K0jbA,2863
87
- circle/web3/developer_controlled_wallets/models/wallet.py,sha256=T2AHNo-DwCiPh_0KQJAHDjcoM4jd6z11dS2Q-m0GUTk,4465
89
+ circle/web3/developer_controlled_wallets/models/wallet.py,sha256=c-jseN4tfcFK93TnVnKHdf2DAYcIEfSCQ1CC3uNfTMA,4750
88
90
  circle/web3/developer_controlled_wallets/models/wallet_metadata.py,sha256=Px7sIcHQF9rYNoAtsDkq2fAjMs3qD-rUh3gUqaazXC0,2821
89
91
  circle/web3/developer_controlled_wallets/models/wallet_response.py,sha256=6fuhbwpeGQ8LBaKTAPg9D-dXxrD-YmwlNeAxlZV2fdQ,2854
90
92
  circle/web3/developer_controlled_wallets/models/wallet_response_data.py,sha256=vmeq-EoCnSj1sFYYFbkEuYgxNUXQaClZjm72QQAj1Rk,2925
@@ -98,7 +100,7 @@ circle/web3/developer_controlled_wallets/models/wallet_state.py,sha256=sM_nM5aSI
98
100
  circle/web3/developer_controlled_wallets/models/wallets.py,sha256=FtATAK5iH8ZBPEiG-kphwFrxu_zqca16ptkXJPpYFBk,2769
99
101
  circle/web3/developer_controlled_wallets/models/wallets_data.py,sha256=WBtomlq7WnzoNQ6ujPCqR_JbNh1sDkYzfdEp7afOdwk,3080
100
102
  circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sha256=Qob2-DdcoyAx3pzDq8YJvB7u9RGqWJ5FP9M6M6c_Fzg,5163
101
- circle_developer_controlled_wallets-2.1.0.dist-info/METADATA,sha256=3ntgYOPtOPx6Bxi5K5H_bqHWbY_RfOGNIoULTXkPrWQ,5846
102
- circle_developer_controlled_wallets-2.1.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
103
- circle_developer_controlled_wallets-2.1.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
104
- circle_developer_controlled_wallets-2.1.0.dist-info/RECORD,,
103
+ circle_developer_controlled_wallets-3.0.0.dist-info/METADATA,sha256=kjYjmfoWBYmW9Sriqb5RIE0P54jMgMP5PY8qgunSUOU,5846
104
+ circle_developer_controlled_wallets-3.0.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
105
+ circle_developer_controlled_wallets-3.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
106
+ circle_developer_controlled_wallets-3.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.2.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5