circle-developer-controlled-wallets 1.2.1__py3-none-any.whl → 2.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.
- circle/web3/developer_controlled_wallets/__init__.py +1 -1
- 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/create_contract_execution_transaction_for_developer_request.py +1 -1
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +1 -1
- circle/web3/developer_controlled_wallets/models/fee_level.py +1 -1
- circle/web3/developer_controlled_wallets/models/transaction_fee.py +1 -1
- {circle_developer_controlled_wallets-1.2.1.dist-info → circle_developer_controlled_wallets-2.0.0.dist-info}/METADATA +39 -22
- {circle_developer_controlled_wallets-1.2.1.dist-info → circle_developer_controlled_wallets-2.0.0.dist-info}/RECORD +11 -11
- {circle_developer_controlled_wallets-1.2.1.dist-info → circle_developer_controlled_wallets-2.0.0.dist-info}/WHEEL +1 -1
- {circle_developer_controlled_wallets-1.2.1.dist-info → circle_developer_controlled_wallets-2.0.0.dist-info}/top_level.txt +0 -0
|
@@ -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 /
|
|
80
|
+
self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 2.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:
|
|
386
|
+
"SDK Package Version: 2.0.0".\
|
|
387
387
|
format(env=sys.platform, pyversion=sys.version)
|
|
388
388
|
|
|
389
389
|
def get_host_settings(self):
|
|
@@ -31,7 +31,7 @@ class CreateContractExecutionTransactionForDeveloperRequest(BaseModel):
|
|
|
31
31
|
contract_address: StrictStr = Field(..., alias="contractAddress", description="The blockchain address of the contract to be executed.")
|
|
32
32
|
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. ")
|
|
33
33
|
fee_level: Optional[FeeLevel] = Field(None, alias="feeLevel")
|
|
34
|
-
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
|
|
34
|
+
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. GasLimit override (only supported for EOA wallets): Using `gasLimit` together with `feeLevel`, the provided `gasLimit` is required to be greater or equal to `feeLevel` estimation and will override the estimation's gasLimit. ")
|
|
35
35
|
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. ")
|
|
36
36
|
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. ")
|
|
37
37
|
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. ")
|
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py
CHANGED
|
@@ -28,7 +28,7 @@ class CreateTransferTransactionForDeveloperRequest(BaseModel):
|
|
|
28
28
|
destination_address: StrictStr = Field(..., alias="destinationAddress", description="The destination blockchain address for the transaction.")
|
|
29
29
|
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. ")
|
|
30
30
|
fee_level: Optional[FeeLevel] = Field(None, alias="feeLevel")
|
|
31
|
-
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
|
|
31
|
+
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. GasLimit override (only supported for EOA wallets): Using `gasLimit` together with `feeLevel`, the provided `gasLimit` is required to be greater or equal to `feeLevel` estimation and will override the estimation's gasLimit. ")
|
|
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. ")
|
|
@@ -19,7 +19,7 @@ from aenum import Enum, no_arg
|
|
|
19
19
|
|
|
20
20
|
class FeeLevel(str, Enum):
|
|
21
21
|
"""
|
|
22
|
-
A dynamic blockchain fee level setting (`LOW`, `MEDIUM`, or `HIGH`) that will be used to pay gas for the transaction. Calculated based on network traffic, supply of validators, and demand for transaction verification. Cannot be used with `
|
|
22
|
+
A dynamic blockchain fee level setting (`LOW`, `MEDIUM`, or `HIGH`) that will be used to pay gas for the transaction. Calculated based on network traffic, supply of validators, and demand for transaction verification. Cannot be used with `gasPrice`, `priorityFee`, or `maxFee`. Estimates for each fee level can be obtained through the `POST /transactions/transfer/estimateFee` API.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
"""
|
|
@@ -21,7 +21,7 @@ class TransactionFee(BaseModel):
|
|
|
21
21
|
"""
|
|
22
22
|
TransactionFee
|
|
23
23
|
"""
|
|
24
|
-
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. ")
|
|
24
|
+
gas_limit: Optional[StrictStr] = Field(None, alias="gasLimit", description="The maximum units of gas to use for the transaction. Required if `feeLevel` is not provided. Estimates for this limit can be obtained through the `POST /transactions/transfer/estimateFee` API. GasLimit override (only supported for EOA wallets): Using `gasLimit` together with `feeLevel`, the provided `gasLimit` is required to be greater or equal to `feeLevel` estimation and will override the estimation's gasLimit. ")
|
|
25
25
|
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. ")
|
|
26
26
|
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. ")
|
|
27
27
|
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. ")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: circle-developer-controlled-wallets
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Developer-Controlled Wallets
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: OpenAPI Generator community
|
|
@@ -12,14 +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 ==
|
|
16
|
-
Requires-Dist: circle-web3-sdk-util ==
|
|
15
|
+
Requires-Dist: circle-configurations ==2.0.0
|
|
16
|
+
Requires-Dist: circle-web3-sdk-util ==2.0.0
|
|
17
17
|
|
|
18
18
|
# circle-developer-controlled-wallets
|
|
19
|
-
Developer
|
|
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/reference).
|
|
20
20
|
|
|
21
|
-
-
|
|
22
|
-
- Package version: 1.2.1
|
|
21
|
+
- Package version: 2.0.0
|
|
23
22
|
|
|
24
23
|
## Requirements.
|
|
25
24
|
|
|
@@ -40,31 +39,48 @@ from circle.web3 import developer_controlled_wallets
|
|
|
40
39
|
|
|
41
40
|
## Usage
|
|
42
41
|
|
|
43
|
-
1. Generate an API key, if you haven't already, in the [Web3 Services Console](https://console.circle.com/). This API key will be used for authentication and authorization when making requests to Circle's APIs.
|
|
42
|
+
1. Generate an API key, if you haven't already, in the [Web3 Services Console](https://console.circle.com/api-keys). This API key will be used for authentication and authorization when making requests to Circle's APIs.
|
|
44
43
|
|
|
45
|
-
```sh
|
|
46
|
-
export CIRCLE_WEB3_API_KEY="Your API KEY"
|
|
47
|
-
```
|
|
44
|
+
```sh
|
|
45
|
+
export CIRCLE_WEB3_API_KEY="Your API KEY"
|
|
46
|
+
```
|
|
48
47
|
|
|
49
|
-
2.
|
|
48
|
+
2. Generate a new entity secret by using the helper function in the SDK. This will print a new entity secret which will be used in step 3 to register it.
|
|
50
49
|
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
```
|
|
50
|
+
```python
|
|
51
|
+
from circle.web3 import utils
|
|
54
52
|
|
|
55
|
-
|
|
53
|
+
utils.generate_entity_secret()
|
|
54
|
+
```
|
|
56
55
|
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
> [!IMPORTANT]
|
|
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.
|
|
59
58
|
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
3. Register the entity secret either by using the SDK or by following Circle's [Developer-Controlled QuickStart](https://learn.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
|
+
|
|
61
|
+
```python
|
|
62
|
+
from circle.web3 import utils
|
|
63
|
+
result = utils.register_entity_secret_ciphertext(api_key='your_api_key', entity_secret='new_entity_secret')
|
|
64
|
+
print(result)
|
|
65
|
+
```
|
|
66
|
+
> [!IMPORTANT]
|
|
67
|
+
The `register_entity_secret_ciphertext` function downloads a recovery file named `recovery_file_<timestamp>.dat`. This file should be stored securely, similar to the entity secret. Additionally, the function returns the content of the recovery file as a JSON response.
|
|
68
|
+
|
|
69
|
+
4. In your code, use the `init_developer_controlled_wallets_client` function from the utils and initialize the client using your API key and entity secret:
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
from circle.web3 import utils
|
|
62
73
|
|
|
63
|
-
|
|
74
|
+
client = utils.init_developer_controlled_wallets_client(api_key="Your API KEY", entity_secret="Your entity secret")
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
5. Interact with the client:
|
|
64
78
|
|
|
65
79
|
```python
|
|
80
|
+
from circle.web3 import utils
|
|
66
81
|
from circle.web3 import developer_controlled_wallets
|
|
67
82
|
|
|
83
|
+
client = utils.init_developer_controlled_wallets_client(api_key="Your API KEY", entity_secret="Your entity secret")
|
|
68
84
|
api_instance = developer_controlled_wallets.WalletSetsApi(client)
|
|
69
85
|
|
|
70
86
|
# create wallet sets
|
|
@@ -72,7 +88,8 @@ try:
|
|
|
72
88
|
request = developer_controlled_wallets.CreateWalletSetRequest.from_dict({
|
|
73
89
|
"name": "my_wallet_set"
|
|
74
90
|
})
|
|
75
|
-
api_instance.create_wallet_set(request)
|
|
91
|
+
response = api_instance.create_wallet_set(request)
|
|
92
|
+
print(response)
|
|
76
93
|
except developer_controlled_wallets.ApiException as e:
|
|
77
94
|
print("Exception when calling WalletSetsApi->create_wallet_set: %s\n" % e)
|
|
78
95
|
|
|
@@ -80,7 +97,7 @@ except developer_controlled_wallets.ApiException as e:
|
|
|
80
97
|
try:
|
|
81
98
|
response = api_instance.get_wallet_sets()
|
|
82
99
|
for wallet_set in response.data.wallet_sets:
|
|
83
|
-
print(wallet_set.id)
|
|
100
|
+
print(wallet_set.actual_instance.id)
|
|
84
101
|
except developer_controlled_wallets.ApiException as e:
|
|
85
102
|
print("Exception when calling WalletSetsApi->get_wallet_sets: %s\n" % e)
|
|
86
103
|
```
|
|
@@ -1,9 +1,9 @@
|
|
|
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=gfUUP7LCl3FKpY8UkaOWH6KfNYjvOBEw6Mv-kkam5dM,10112
|
|
4
|
+
circle/web3/developer_controlled_wallets/api_client.py,sha256=N1qM2YqwDsvIVPp2Nx4I_jlrx_SYqc2ipssiBLH-91c,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=IfBfCQEHAHUb7K3y3-TjOJDnVGdRzH3YHfPu7SUvy7g,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
|
|
@@ -29,8 +29,8 @@ circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer
|
|
|
29
29
|
circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py,sha256=PQaehF6SPZguQZcTJPwA8Z5xaGEe_JLekM_EkvEc6Ns,3574
|
|
30
30
|
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer.py,sha256=yK4irqmFvTx058rkDi2XJvCWuOoGMZyeMW8pGTgKhMo,3242
|
|
31
31
|
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_data.py,sha256=yhEWPsn6RwLgz-vulLHW1Xh0OsSrvmZSENIHRNQpRAQ,3066
|
|
32
|
-
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=
|
|
33
|
-
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=
|
|
32
|
+
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
|
|
34
34
|
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=YRMpIZhy8ZiBwuQls9Sfqg8CIOWlz8KNF1DAG1PeLdE,3254
|
|
35
35
|
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response_data.py,sha256=dLj_Y4YMpmf1hTSsYSECBjd5mNWXVCsq492mPLH5CvE,3055
|
|
36
36
|
circle/web3/developer_controlled_wallets/models/create_wallet_request.py,sha256=nEGgLhxmeygJDlXDgRoj4RySzzkt8uMA93iqCQFkHOA,5142
|
|
@@ -45,7 +45,7 @@ circle/web3/developer_controlled_wallets/models/estimate_contract_execution_tran
|
|
|
45
45
|
circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py,sha256=843p1adcNxjo1kXxJm9NYLnqRvOzo7QDHCyLqVS-S2g,2951
|
|
46
46
|
circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_data.py,sha256=orTybZ1SmCiivc4LNnu3EdzVOSdNUyxv7TFLsGTSyq4,4607
|
|
47
47
|
circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=ieSOFPnrmToCSEKJKws-D42KkNVb_qJXeSs3-sXaB4I,4818
|
|
48
|
-
circle/web3/developer_controlled_wallets/models/fee_level.py,sha256=
|
|
48
|
+
circle/web3/developer_controlled_wallets/models/fee_level.py,sha256=udtM-56G8JXf7r680EmD404rH6J4IffcfhYIo2pYORE,985
|
|
49
49
|
circle/web3/developer_controlled_wallets/models/nft.py,sha256=HRrXxplK1UeCOQf27JoOxvM5HqEmuMPPNqD8Pd5xnDY,3756
|
|
50
50
|
circle/web3/developer_controlled_wallets/models/nfts.py,sha256=9CxeG7e5cO0X9rTMFnJslQYKysdEkRupvqsTsfdqNqc,2733
|
|
51
51
|
circle/web3/developer_controlled_wallets/models/nfts_data.py,sha256=HBYIYpzjvjI4ZSdLUGxmFUdEdd--paZSZnMiU8WWiKY,2953
|
|
@@ -71,7 +71,7 @@ circle/web3/developer_controlled_wallets/models/token_response.py,sha256=QVsuDj3
|
|
|
71
71
|
circle/web3/developer_controlled_wallets/models/token_response_data.py,sha256=dJjNCPbQJJjHY55pWkGHdx9jTRVaGFYO3Whx8EuiJzQ,2857
|
|
72
72
|
circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=CtoV9hUiEiIMnKdXh0d_KZyyvgFtGLO0tkByEIaBjnY,912
|
|
73
73
|
circle/web3/developer_controlled_wallets/models/transaction.py,sha256=Ik0OgjU3oQi31gBCiX_7npZyZLkZQgTf_-EdboTQdjQ,11118
|
|
74
|
-
circle/web3/developer_controlled_wallets/models/transaction_fee.py,sha256=
|
|
74
|
+
circle/web3/developer_controlled_wallets/models/transaction_fee.py,sha256=xPVPc6zDJ9xlDcWBk8ffckxPhnCb7AfZevJ9u68OJt4,5800
|
|
75
75
|
circle/web3/developer_controlled_wallets/models/transaction_response.py,sha256=UIJf3QEx6Pjiw5NvoRIKs31KuHpqEkYxtDfBbMm4cfg,2914
|
|
76
76
|
circle/web3/developer_controlled_wallets/models/transaction_response_data.py,sha256=PRJIr8-WlSojEHz7Tu9O8B5frWDw1z00ueYKasrb-Eg,2983
|
|
77
77
|
circle/web3/developer_controlled_wallets/models/transaction_screening_decision.py,sha256=_ExFIvRsdvQFPePIJct4XyBdsWCKSe91fh8WWgNL_kw,4062
|
|
@@ -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-
|
|
102
|
-
circle_developer_controlled_wallets-
|
|
103
|
-
circle_developer_controlled_wallets-
|
|
104
|
-
circle_developer_controlled_wallets-
|
|
101
|
+
circle_developer_controlled_wallets-2.0.0.dist-info/METADATA,sha256=LBtbWIHReVylGyfrRo44VK-VMyJS8sVszhU0VOwxyYI,5781
|
|
102
|
+
circle_developer_controlled_wallets-2.0.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
103
|
+
circle_developer_controlled_wallets-2.0.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
|
|
104
|
+
circle_developer_controlled_wallets-2.0.0.dist-info/RECORD,,
|