circle-developer-controlled-wallets 2.0.1__py3-none-any.whl → 2.1.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.
- circle/web3/developer_controlled_wallets/__init__.py +1 -1
- circle/web3/developer_controlled_wallets/api/signing_api.py +2 -2
- circle/web3/developer_controlled_wallets/api_client.py +1 -1
- circle/web3/developer_controlled_wallets/configuration.py +1 -1
- circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py +1 -1
- {circle_developer_controlled_wallets-2.0.1.dist-info → circle_developer_controlled_wallets-2.1.0.dist-info}/METADATA +8 -8
- {circle_developer_controlled_wallets-2.0.1.dist-info → circle_developer_controlled_wallets-2.1.0.dist-info}/RECORD +9 -9
- {circle_developer_controlled_wallets-2.0.1.dist-info → circle_developer_controlled_wallets-2.1.0.dist-info}/WHEEL +0 -0
- {circle_developer_controlled_wallets-2.0.1.dist-info → circle_developer_controlled_wallets-2.1.0.dist-info}/top_level.txt +0 -0
|
@@ -215,7 +215,7 @@ class SigningApi(object):
|
|
|
215
215
|
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
216
|
"""Sign transaction # noqa: E501
|
|
217
217
|
|
|
218
|
-
Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the
|
|
218
|
+
Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the Solana blockchain. # noqa: E501
|
|
219
219
|
This method makes a synchronous HTTP request by default. To make an
|
|
220
220
|
asynchronous HTTP request, please pass async_req=True
|
|
221
221
|
|
|
@@ -245,7 +245,7 @@ class SigningApi(object):
|
|
|
245
245
|
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
246
|
"""Sign transaction # noqa: E501
|
|
247
247
|
|
|
248
|
-
Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the
|
|
248
|
+
Sign a transaction from a specific developer-controlled wallet. NOTE: Currently, this endpoint is only available for the Solana blockchain. # noqa: E501
|
|
249
249
|
This method makes a synchronous HTTP request by default. To make an
|
|
250
250
|
asynchronous HTTP request, please pass async_req=True
|
|
251
251
|
|
|
@@ -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.0
|
|
80
|
+
self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 2.1.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.0
|
|
386
|
+
"SDK Package Version: 2.1.0".\
|
|
387
387
|
format(env=sys.platform, pyversion=sys.version)
|
|
388
388
|
|
|
389
389
|
def get_host_settings(self):
|
|
@@ -21,7 +21,7 @@ class SignTransactionResponseData(BaseModel):
|
|
|
21
21
|
"""
|
|
22
22
|
SignTransactionResponseData
|
|
23
23
|
"""
|
|
24
|
-
signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string
|
|
24
|
+
signature: StrictStr = Field(..., description="Signature is a base58 encoded 64 byte string.")
|
|
25
25
|
signed_transaction: StrictStr = Field(..., alias="signedTransaction", description="Signed transaction is a base64 encoded string for Solana.")
|
|
26
26
|
__properties = ["signature", "signedTransaction"]
|
|
27
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: circle-developer-controlled-wallets
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.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.0
|
|
16
|
-
Requires-Dist: circle-web3-sdk-util ==2.0
|
|
15
|
+
Requires-Dist: circle-configurations ==2.1.0
|
|
16
|
+
Requires-Dist: circle-web3-sdk-util ==2.1.0
|
|
17
17
|
|
|
18
18
|
# circle-developer-controlled-wallets
|
|
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/w3s/
|
|
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.0
|
|
21
|
+
- Package version: 2.1.0
|
|
22
22
|
|
|
23
23
|
## Requirements.
|
|
24
24
|
|
|
@@ -56,7 +56,7 @@ from circle.web3 import developer_controlled_wallets
|
|
|
56
56
|
> [!IMPORTANT]
|
|
57
57
|
Protect your Entity Secret as you would protect your house key. Losing it or sharing it with others can have serious consequences. As the name suggests, the Entity Secret is sensitive information. Store it securely and treat it with the highest level of confidentiality to prevent unauthorized access or use.
|
|
58
58
|
|
|
59
|
-
3. Register the entity secret either by using the SDK or by following Circle's [Developer-Controlled QuickStart](https://
|
|
59
|
+
3. Register the entity secret either by using the SDK or by following Circle's [Developer-Controlled QuickStart](https://developers.circle.com/interactive-quickstarts/dev-controlled-wallets#setup-your-entity-secret). This step ensures that your account is correctly set up to interact with Circle's APIs.
|
|
60
60
|
|
|
61
61
|
```python
|
|
62
62
|
from circle.web3 import utils
|
|
@@ -102,7 +102,7 @@ except developer_controlled_wallets.ApiException as e:
|
|
|
102
102
|
print("Exception when calling WalletSetsApi->get_wallet_sets: %s\n" % e)
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
We recommend reading through the official [documentation](https://developers.circle.com/w3s) and [QuickStart guides](https://
|
|
105
|
+
We recommend reading through the official [documentation](https://developers.circle.com/w3s/docs) and [QuickStart guides](https://developers.circle.com/interactive-quickstarts) mentioned above to ensure a smooth setup and usage experience.
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
## Configuration
|
|
@@ -121,7 +121,7 @@ user_agent | No | Optional custom user agent request header. We will prepend it
|
|
|
121
121
|
|
|
122
122
|
Here are some helpful links, if you encounter any issues or have questions about this SDK:
|
|
123
123
|
|
|
124
|
-
- 📖 [Getting started](https://
|
|
124
|
+
- 📖 [Getting started](https://developers.circle.com/interactive-quickstarts/dev-controlled-wallets): Check out our official Developer-Controlled Wallets QuickStart.
|
|
125
125
|
- 🎮 [Join our Discord Community](https://discord.com/invite/buildoncircle): Engage, learn, and collaborate.
|
|
126
126
|
- 🛎 [Visit our Help-Desk Page](https://support.usdc.circle.com/hc/en-us/p/contactus?_gl=1*1va6vat*_ga*MTAyNTA0NTQ2NC4xNjk5NTYyMjgx*_ga_GJDVPCQNRV*MTcwMDQ5Mzg3Ny4xNC4xLjE3MDA0OTM4ODQuNTMuMC4w): Dive into curated FAQs and guides.
|
|
127
127
|
- 📧 [Direct Email](mailto:customer-support@circle.com): We're always a message away.
|
|
@@ -1,14 +1,14 @@
|
|
|
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=
|
|
4
|
-
circle/web3/developer_controlled_wallets/api_client.py,sha256=
|
|
3
|
+
circle/web3/developer_controlled_wallets/__init__.py,sha256=rqOYaH1FQHNvwg6rC_xuWyHAt6n2ud10WV34zQYkHPk,10112
|
|
4
|
+
circle/web3/developer_controlled_wallets/api_client.py,sha256=u5pp5qCEJQddRhkPz6EhpenKjs4yP8qCiQJxj6Eew5g,31612
|
|
5
5
|
circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
|
|
6
|
-
circle/web3/developer_controlled_wallets/configuration.py,sha256=
|
|
6
|
+
circle/web3/developer_controlled_wallets/configuration.py,sha256=RxGyN-bu6FYTS7kwOIT5JGIRBGbhx6r-XmqqsZSTP4k,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=
|
|
11
|
+
circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=RSnRu7W4wgOwYcnyJSu14mgj4O7W6jM6yVycQhxDrO8,23976
|
|
12
12
|
circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=kswtIlfrC2Eqy4UXwsgJNZdQpu9vnkpLUJLphxrAyAk,8005
|
|
13
13
|
circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=lDA67HAbKlagwZrgv2BxYpAHhtyaKoP11XhZTXc_YTY,81666
|
|
14
14
|
circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=jKpVmHKM5alQ2mdwunIl1hTPF-kYYKfKzHgdrnntYu4,39431
|
|
@@ -61,7 +61,7 @@ circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=SqM5ljTWvoK
|
|
|
61
61
|
circle/web3/developer_controlled_wallets/models/sign_message_request.py,sha256=JM8zOhqqC4EhFW90ECUVUlfvo7anpeMbNgnla9jVDPI,3927
|
|
62
62
|
circle/web3/developer_controlled_wallets/models/sign_transaction_request.py,sha256=1OeBIN3qsLvLX8kc0CvgpdeZ6OV2AQG2s14OGsMAcOI,3608
|
|
63
63
|
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=
|
|
64
|
+
circle/web3/developer_controlled_wallets/models/sign_transaction_response_data.py,sha256=5lYdRk2sQK9E-CQ_b1nM6l4iPoZuaWhzDFE1Jo1gMIA,2949
|
|
65
65
|
circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha256=vMvEUHVOjkexLIriS8rQ6uhpw-IC6uJDYV8u4uPip2Y,3511
|
|
66
66
|
circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=2c7Az0Q3uLkaMYM3MsZkNFbYp6GWCGEpx3HYl9l7l2U,2890
|
|
67
67
|
circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=_xbbfi8I5D1XSSIO5L2PUQKwft8Dk_219bu4o7BIWtY,2682
|
|
@@ -98,7 +98,7 @@ circle/web3/developer_controlled_wallets/models/wallet_state.py,sha256=sM_nM5aSI
|
|
|
98
98
|
circle/web3/developer_controlled_wallets/models/wallets.py,sha256=FtATAK5iH8ZBPEiG-kphwFrxu_zqca16ptkXJPpYFBk,2769
|
|
99
99
|
circle/web3/developer_controlled_wallets/models/wallets_data.py,sha256=WBtomlq7WnzoNQ6ujPCqR_JbNh1sDkYzfdEp7afOdwk,3080
|
|
100
100
|
circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sha256=Qob2-DdcoyAx3pzDq8YJvB7u9RGqWJ5FP9M6M6c_Fzg,5163
|
|
101
|
-
circle_developer_controlled_wallets-2.0.
|
|
102
|
-
circle_developer_controlled_wallets-2.0.
|
|
103
|
-
circle_developer_controlled_wallets-2.0.
|
|
104
|
-
circle_developer_controlled_wallets-2.0.
|
|
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,,
|
|
File without changes
|