circle-developer-controlled-wallets 6.2.0__py3-none-any.whl → 6.3.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/wallets_api.py +8 -8
- 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/account_type.py +1 -1
- circle/web3/developer_controlled_wallets/models/blockchain.py +2 -0
- circle/web3/developer_controlled_wallets/models/eoa_wallet.py +1 -1
- circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py +1 -1
- circle/web3/developer_controlled_wallets/models/sca_wallet.py +1 -1
- circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py +1 -1
- circle/web3/developer_controlled_wallets/models/token_blockchain.py +2 -0
- {circle_developer_controlled_wallets-6.2.0.dist-info → circle_developer_controlled_wallets-6.3.0.dist-info}/METADATA +4 -4
- {circle_developer_controlled_wallets-6.2.0.dist-info → circle_developer_controlled_wallets-6.3.0.dist-info}/RECORD +16 -16
- {circle_developer_controlled_wallets-6.2.0.dist-info → circle_developer_controlled_wallets-6.3.0.dist-info}/WHEEL +0 -0
- {circle_developer_controlled_wallets-6.2.0.dist-info → circle_developer_controlled_wallets-6.3.0.dist-info}/top_level.txt +0 -0
|
@@ -228,7 +228,7 @@ class SigningApi(object):
|
|
|
228
228
|
def sign_message(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> SignatureResponse: # noqa: E501
|
|
229
229
|
"""Sign message # noqa: E501
|
|
230
230
|
|
|
231
|
-
Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for
|
|
231
|
+
Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
|
|
232
232
|
This method makes a synchronous HTTP request by default. To make an
|
|
233
233
|
asynchronous HTTP request, please pass async_req=True
|
|
234
234
|
|
|
@@ -260,7 +260,7 @@ class SigningApi(object):
|
|
|
260
260
|
def sign_message_with_http_info(self, sign_message_request : Annotated[SignMessageRequest, Field(..., description="Schema for the request payload to sign a message.")], x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
261
261
|
"""Sign message # noqa: E501
|
|
262
262
|
|
|
263
|
-
Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for
|
|
263
|
+
Sign a message from a specified developer-controlled wallet. This endpoint supports message signing for Ethereum-based blockchains (using EIP-191), Solana and Aptos (using Ed25519 signatures). Note that Smart Contract Accounts (SCA) are specific to Ethereum and EVM-compatible chains. The difference between Ethereum's EOA and SCA can be found in the [account types guide](https://developers.circle.com/w3s/docs/programmable-wallets-account-types). You can also check the list of Ethereum Dapps that support SCA: https://eip1271.io/. # noqa: E501
|
|
264
264
|
This method makes a synchronous HTTP request by default. To make an
|
|
265
265
|
asynchronous HTTP request, please pass async_req=True
|
|
266
266
|
|
|
@@ -1040,7 +1040,7 @@ class WalletsApi(object):
|
|
|
1040
1040
|
|
|
1041
1041
|
@auto_fill
|
|
1042
1042
|
@validate_arguments
|
|
1043
|
-
def list_wallet_balance(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> Balances: # noqa: E501
|
|
1043
|
+
def list_wallet_balance(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> Balances: # noqa: E501
|
|
1044
1044
|
"""Get token balance for a wallet # noqa: E501
|
|
1045
1045
|
|
|
1046
1046
|
Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
|
|
@@ -1058,7 +1058,7 @@ class WalletsApi(object):
|
|
|
1058
1058
|
:type name: str
|
|
1059
1059
|
:param token_address: Filter by token address.
|
|
1060
1060
|
:type token_address: str
|
|
1061
|
-
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
|
|
1061
|
+
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
|
|
1062
1062
|
:type standard: TokenStandard
|
|
1063
1063
|
:param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
|
|
1064
1064
|
:type page_before: str
|
|
@@ -1086,7 +1086,7 @@ class WalletsApi(object):
|
|
|
1086
1086
|
|
|
1087
1087
|
@auto_fill
|
|
1088
1088
|
@validate_arguments
|
|
1089
|
-
def list_wallet_balance_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
1089
|
+
def list_wallet_balance_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
1090
1090
|
"""Get token balance for a wallet # noqa: E501
|
|
1091
1091
|
|
|
1092
1092
|
Fetches the digital asset balance for a single developer-controlled wallet using its unique identifier. # noqa: E501
|
|
@@ -1104,7 +1104,7 @@ class WalletsApi(object):
|
|
|
1104
1104
|
:type name: str
|
|
1105
1105
|
:param token_address: Filter by token address.
|
|
1106
1106
|
:type token_address: str
|
|
1107
|
-
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
|
|
1107
|
+
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
|
|
1108
1108
|
:type standard: TokenStandard
|
|
1109
1109
|
:param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
|
|
1110
1110
|
:type page_before: str
|
|
@@ -1247,7 +1247,7 @@ class WalletsApi(object):
|
|
|
1247
1247
|
|
|
1248
1248
|
@auto_fill
|
|
1249
1249
|
@validate_arguments
|
|
1250
|
-
def list_wallet_nfts(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> Nfts: # noqa: E501
|
|
1250
|
+
def list_wallet_nfts(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> Nfts: # noqa: E501
|
|
1251
1251
|
"""Get NFTs for a wallet # noqa: E501
|
|
1252
1252
|
|
|
1253
1253
|
Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
|
|
@@ -1265,7 +1265,7 @@ class WalletsApi(object):
|
|
|
1265
1265
|
:type name: str
|
|
1266
1266
|
:param token_address: Filter by token address.
|
|
1267
1267
|
:type token_address: str
|
|
1268
|
-
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
|
|
1268
|
+
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
|
|
1269
1269
|
:type standard: TokenStandard
|
|
1270
1270
|
:param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
|
|
1271
1271
|
:type page_before: str
|
|
@@ -1293,7 +1293,7 @@ class WalletsApi(object):
|
|
|
1293
1293
|
|
|
1294
1294
|
@auto_fill
|
|
1295
1295
|
@validate_arguments
|
|
1296
|
-
def list_wallet_nfts_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
1296
|
+
def list_wallet_nfts_with_http_info(self, id : Annotated[StrictStr, Field(..., description="Wallet ID")], include_all : Annotated[Optional[StrictBool], Field(description="Return all recourses with monitored and non-monitored tokens.")] = None, name : Annotated[Optional[StrictStr], Field(description="Filter by token name.")] = None, token_address : Annotated[Optional[StrictStr], Field(description="Filter by token address.")] = None, standard : Annotated[Optional[TokenStandard], Field(description="Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.")] = None, page_before : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter. ")] = None, page_after : Annotated[Optional[StrictStr], Field(description="A collection ID value used for pagination. It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageBefore. ")] = None, page_size : Annotated[Optional[conint(strict=True, le=50, ge=1)], Field(description="Limits the number of items to be returned. Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If avoided, the collection will determine the page size itself. ")] = None, x_request_id : Annotated[Optional[StrictStr], Field(description="Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
1297
1297
|
"""Get NFTs for a wallet # noqa: E501
|
|
1298
1298
|
|
|
1299
1299
|
Fetches the info for all NFTs stored in a single developer-controlled wallet, using the wallets unique identifier. # noqa: E501
|
|
@@ -1311,7 +1311,7 @@ class WalletsApi(object):
|
|
|
1311
1311
|
:type name: str
|
|
1312
1312
|
:param token_address: Filter by token address.
|
|
1313
1313
|
:type token_address: str
|
|
1314
|
-
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain.
|
|
1314
|
+
:param standard: Filter by the token standard. ERC20/ERC721/ERC1155 are the standards for EVM chains, Fungible/FungibleAsset/NonFungible/NonFungibleEdition/ProgrammableNonFungible/ProgrammableNonFungibleEdition are the standards for the Solana chain, FungibleAsset is the standard for the Aptos chain.
|
|
1315
1315
|
:type standard: TokenStandard
|
|
1316
1316
|
:param page_before: A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize. The items will be returned in the natural order of the collection. The resource will return the first page if neither pageAfter nor pageBefore are specified. SHOULD NOT be used in conjunction with pageAfter.
|
|
1317
1317
|
:type page_before: str
|
|
@@ -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 / 6.
|
|
80
|
+
self.user_agent = (user_agent + ' / ' if user_agent else '') + 'CircleWeb3PythonSDK / DeveloperControlledWallets / 6.3.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: 6.
|
|
386
|
+
"SDK Package Version: 6.3.0".\
|
|
387
387
|
format(env=sys.platform, pyversion=sys.version)
|
|
388
388
|
|
|
389
389
|
def get_host_settings(self):
|
|
@@ -19,7 +19,7 @@ from aenum import Enum, no_arg
|
|
|
19
19
|
|
|
20
20
|
class AccountType(str, Enum):
|
|
21
21
|
"""
|
|
22
|
-
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
|
|
22
|
+
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 and Aptos don't support Smart Contract Account (SCA).
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
"""
|
|
@@ -36,7 +36,7 @@ class EOAWallet(BaseModel):
|
|
|
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
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
|
-
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
|
|
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 and Aptos don't support Smart Contract Account (SCA). ")
|
|
40
40
|
__properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType"]
|
|
41
41
|
|
|
42
42
|
def __init__(self, **kwargs):
|
|
@@ -37,7 +37,7 @@ class EOAWalletWithBalances(BaseModel):
|
|
|
37
37
|
user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
|
|
38
38
|
wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
|
|
39
39
|
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.")
|
|
40
|
-
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
|
|
40
|
+
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 and Aptos don't support Smart Contract Account (SCA). ")
|
|
41
41
|
token_balances: conlist(Balance) = Field(..., alias="tokenBalances", description="Lists native token balances and, if specified, USDC/EURC balances for the wallets.")
|
|
42
42
|
__properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "tokenBalances"]
|
|
43
43
|
|
|
@@ -37,7 +37,7 @@ class SCAWallet(BaseModel):
|
|
|
37
37
|
user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
|
|
38
38
|
wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
|
|
39
39
|
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.")
|
|
40
|
-
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
|
|
40
|
+
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 and Aptos don't support Smart Contract Account (SCA). ")
|
|
41
41
|
sca_core: ScaCore = Field(..., alias="scaCore")
|
|
42
42
|
__properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "scaCore"]
|
|
43
43
|
|
|
@@ -38,7 +38,7 @@ class SCAWalletWithBalances(BaseModel):
|
|
|
38
38
|
user_id: Optional[constr(strict=True, max_length=50, min_length=5)] = Field(None, alias="userId", description="Unique system generated identifier for the user.")
|
|
39
39
|
wallet_set_id: StrictStr = Field(..., alias="walletSetId", description="System-generated unique identifier of the resource.")
|
|
40
40
|
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.")
|
|
41
|
-
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
|
|
41
|
+
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 and Aptos don't support Smart Contract Account (SCA). ")
|
|
42
42
|
sca_core: ScaCore = Field(..., alias="scaCore")
|
|
43
43
|
token_balances: conlist(Balance) = Field(..., alias="tokenBalances", description="Lists native token balances and, if specified, USDC/EURC balances for the wallets.")
|
|
44
44
|
__properties = ["id", "address", "blockchain", "createDate", "updateDate", "custodyType", "name", "refId", "state", "userId", "walletSetId", "initialPublicKey", "accountType", "scaCore", "tokenBalances"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: circle-developer-controlled-wallets
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.3.0
|
|
4
4
|
Summary: Developer-Controlled Wallets
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: OpenAPI Generator community
|
|
@@ -12,8 +12,8 @@ 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==6.
|
|
16
|
-
Requires-Dist: circle-web3-sdk-util==6.
|
|
15
|
+
Requires-Dist: circle-configurations==6.3.0
|
|
16
|
+
Requires-Dist: circle-web3-sdk-util==6.3.0
|
|
17
17
|
Dynamic: author
|
|
18
18
|
Dynamic: author-email
|
|
19
19
|
Dynamic: description
|
|
@@ -25,7 +25,7 @@ Dynamic: summary
|
|
|
25
25
|
# circle-developer-controlled-wallets
|
|
26
26
|
This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in Python. For the API reference, see the [Circle Web3 API docs](https://developers.circle.com/api-reference/w3s/common/ping).
|
|
27
27
|
|
|
28
|
-
- Package version: 6.
|
|
28
|
+
- Package version: 6.3.0
|
|
29
29
|
|
|
30
30
|
## Requirements.
|
|
31
31
|
|
|
@@ -1,30 +1,30 @@
|
|
|
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=QWOm0UKiP56M17X8CJDLE_lyiECyM0EUfUB8RQUhAS0,11473
|
|
4
|
+
circle/web3/developer_controlled_wallets/api_client.py,sha256=ERM8v2hoWuw9vrpJQbUfqjCCXWHANFvDlzAYvUsBRHo,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=8dqhshITtPEKmL19SdoNuvM4ar8XUdy9BFy2_HwFD9s,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=Nst2xp_e06A57QozNqEMcib2JMetlRFEKVvr7PmnK9k,35924
|
|
12
12
|
circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=IdCqsWeHOsj9YEiY_ImxULGV_9ifzlvEn5b5XNO3S-k,8089
|
|
13
13
|
circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=ALMJkxjr-mrmJ6844QtQfrqXMejIZsdtzDRE4sH_NVw,100904
|
|
14
14
|
circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=rYwsgRvKvS-iyOy3B81ub2GYhw9gqm2onm0_sWN4h2E,41015
|
|
15
|
-
circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=
|
|
15
|
+
circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=KCwPlREXE3a05Pb5v2hsgu-e7wqcXvFbdaFdqPTOrJU,105787
|
|
16
16
|
circle/web3/developer_controlled_wallets/models/__init__.py,sha256=3J4-ba6FSEoJVrwTh5o-o1RkjKgOq6UE5tjvmF1YjZw,10269
|
|
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
|
|
20
20
|
circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py,sha256=KN0KmXqM6BaiIfX5XDtfk_mIwkBqD7UykN2l2rnKLq4,3606
|
|
21
|
-
circle/web3/developer_controlled_wallets/models/account_type.py,sha256=
|
|
21
|
+
circle/web3/developer_controlled_wallets/models/account_type.py,sha256=uFQNsVb4iKYo07V0GLWlejSAG2fpBV_Fnlz6qtNn6jY,989
|
|
22
22
|
circle/web3/developer_controlled_wallets/models/bad_request_response.py,sha256=ZaL7FhSV-tA8AFmXPXfcMblCzl8HT8LK5vzPhhM4KIs,2765
|
|
23
23
|
circle/web3/developer_controlled_wallets/models/balance.py,sha256=1gnyDnXkYkQBlhkXIhSiWz_bFQOAqp7FxCOh2nW-uoc,3145
|
|
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=
|
|
27
|
+
circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=JaW8Vlni1FKVd0D8Ok1jla9hyZNc7rSBybvpP9SEcG4,1239
|
|
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
30
|
circle/web3/developer_controlled_wallets/models/contract_execution_blockchain.py,sha256=BkuaS2zPNSGpCo0lU5Jaq8jK1s7RxwJzB-qiaFQM49U,1178
|
|
@@ -41,8 +41,8 @@ circle/web3/developer_controlled_wallets/models/custody_type.py,sha256=-jwmNI1fR
|
|
|
41
41
|
circle/web3/developer_controlled_wallets/models/derive_wallet_request.py,sha256=ZwUSLI-78MKUnHIEzc9_W4DgGnEyO8jIrN0fvYaVfyw,2937
|
|
42
42
|
circle/web3/developer_controlled_wallets/models/developer_wallet_set.py,sha256=P1ON_uNz_fTfSNtEZ9hxKu6J7uTFINoyTmrASDDjMe0,3447
|
|
43
43
|
circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py,sha256=_-vg7A8IQUWm0OeAASrpwXaeN6F6FaqcgNC7kq_GJK4,3642
|
|
44
|
-
circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=
|
|
45
|
-
circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py,sha256=
|
|
44
|
+
circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=PcmaMYAmi-4c3K-UK60LgXdlMV1nMkqWNLRRGJ6tlmQ,5651
|
|
45
|
+
circle/web3/developer_controlled_wallets/models/eoa_wallet_with_balances.py,sha256=XgDu4dp-21NlEAIN9As81KiVgZPltGT725DksBOQa0w,6504
|
|
46
46
|
circle/web3/developer_controlled_wallets/models/error.py,sha256=D43thFidD6O6DYDPGu7VThkOegMATdG3anTTx2UzeNQ,2661
|
|
47
47
|
circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=NrInYJIUkU99emlfrqf2jRw6tQY9ReT6OoUFNTY9Xb8,6086
|
|
48
48
|
circle/web3/developer_controlled_wallets/models/estimate_transaction_fee.py,sha256=843p1adcNxjo1kXxJm9NYLnqRvOzo7QDHCyLqVS-S2g,2951
|
|
@@ -63,8 +63,8 @@ circle/web3/developer_controlled_wallets/models/risk_score.py,sha256=6fYv3L2IFz4
|
|
|
63
63
|
circle/web3/developer_controlled_wallets/models/risk_signal.py,sha256=xjcdgecIlFpGX0UihoijlWm8aLNeArAcOr7bHAXCTic,3853
|
|
64
64
|
circle/web3/developer_controlled_wallets/models/risk_type.py,sha256=QWM4vdDO6z-9GH3lbROk-FCuaX-cMBnhf5WtVGufbUs,654
|
|
65
65
|
circle/web3/developer_controlled_wallets/models/sca_core.py,sha256=5cGTH-3MjMPIOniaZJqnTwvktU6wIOsdqUSBOPtXUrQ,957
|
|
66
|
-
circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=
|
|
67
|
-
circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py,sha256=
|
|
66
|
+
circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=NE0Oos3DzUMkUpD5q5qq6l7EAulhPhfGgUDcKUt_ScM,5835
|
|
67
|
+
circle/web3/developer_controlled_wallets/models/sca_wallet_with_balances.py,sha256=6srO1HEwc8Zsx5orchYyzlHXz8h97g1s5iczpfxt0OI,6688
|
|
68
68
|
circle/web3/developer_controlled_wallets/models/sign_delegate_action_request.py,sha256=ExlKj_6BQgbRqaUE6O4oFE-P4wpfzIyvNUElNAKqUy8,3470
|
|
69
69
|
circle/web3/developer_controlled_wallets/models/sign_delegate_action_response.py,sha256=G9AKrgLcf411k8-zV349geMrdo6j7t_MxiCIrOyHazE,3000
|
|
70
70
|
circle/web3/developer_controlled_wallets/models/sign_delegate_action_response_data.py,sha256=yMP_0T0BBLule9m5z_RCCKyUMZn_jFOkTAQ7jHWphs4,3104
|
|
@@ -76,7 +76,7 @@ circle/web3/developer_controlled_wallets/models/sign_typed_data_request.py,sha25
|
|
|
76
76
|
circle/web3/developer_controlled_wallets/models/signature_response.py,sha256=2c7Az0Q3uLkaMYM3MsZkNFbYp6GWCGEpx3HYl9l7l2U,2890
|
|
77
77
|
circle/web3/developer_controlled_wallets/models/signature_response_data.py,sha256=EHT_UKAPRr9kIs1mvjCQKBjlR-tlMSprpaPaMPu__u0,2781
|
|
78
78
|
circle/web3/developer_controlled_wallets/models/token.py,sha256=ni7oNTYPD9y_FStWn3KLKzqT0Chn0rPNDh31Lbm_rE0,4368
|
|
79
|
-
circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=
|
|
79
|
+
circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=pK9M1EBAbfeMWYyL94msKrDys0CNFpf0lfmgxxvIdyk,1205
|
|
80
80
|
circle/web3/developer_controlled_wallets/models/token_response.py,sha256=QVsuDj3KSBIOIQo4bQmE14O5LHo38aNxDO4moaOSlxk,2866
|
|
81
81
|
circle/web3/developer_controlled_wallets/models/token_response_data.py,sha256=dJjNCPbQJJjHY55pWkGHdx9jTRVaGFYO3Whx8EuiJzQ,2857
|
|
82
82
|
circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=CtoV9hUiEiIMnKdXh0d_KZyyvgFtGLO0tkByEIaBjnY,912
|
|
@@ -111,7 +111,7 @@ circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sh
|
|
|
111
111
|
circle/web3/developer_controlled_wallets/models/wallets_with_balances.py,sha256=FsVV9EFdzXYoYrLN0iEjWQSi5MrfCS-2OjdVPGDtHlY,2915
|
|
112
112
|
circle/web3/developer_controlled_wallets/models/wallets_with_balances_data.py,sha256=refo6iYAoQOKU3X3t9mQ5Yf-vWV-6UzkuaexgNwhSjE,3226
|
|
113
113
|
circle/web3/developer_controlled_wallets/models/wallets_with_balances_data_wallets_inner.py,sha256=Bss1dqGl6TLi17jLgQtdb8l5MKbOBUPruyY982SCU5U,5671
|
|
114
|
-
circle_developer_controlled_wallets-6.
|
|
115
|
-
circle_developer_controlled_wallets-6.
|
|
116
|
-
circle_developer_controlled_wallets-6.
|
|
117
|
-
circle_developer_controlled_wallets-6.
|
|
114
|
+
circle_developer_controlled_wallets-6.3.0.dist-info/METADATA,sha256=p135te3rAzYbqA1xpZDGZMUJ7sVOqq4WSofzHOUXxeY,5992
|
|
115
|
+
circle_developer_controlled_wallets-6.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
116
|
+
circle_developer_controlled_wallets-6.3.0.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
|
|
117
|
+
circle_developer_controlled_wallets-6.3.0.dist-info/RECORD,,
|
|
File without changes
|