Skip to main content

Developer-Controlled Wallets

Project description

circle-developer-controlled-wallets

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.

  • Package version: 8.0.0

Requirements.

Python 3.7+

Installation

pip install

pip install circle-developer-controlled-wallets

Then import the package:

from circle.web3 import developer_controlled_wallets

Usage

  1. Generate an API key, if you haven't already, in the Web3 Services Console. This API key will be used for authentication and authorization when making requests to Circle's APIs.

    export CIRCLE_WEB3_API_KEY="Your API KEY"
    
  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.

    from circle.web3 import utils
    
    utils.generate_entity_secret()
    

    [!IMPORTANT]
    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.

  3. Register the entity secret either by using the SDK or by following Circle's Developer-Controlled QuickStart. This step ensures that your account is correctly set up to interact with Circle's APIs.

        from circle.web3 import utils
        result =  utils.register_entity_secret_ciphertext(api_key='your_api_key', entity_secret='new_entity_secret')
        print(result)
    

    [!IMPORTANT] 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.

  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:

    from circle.web3 import utils
    
    client = utils.init_developer_controlled_wallets_client(api_key="Your API KEY", entity_secret="Your entity secret")
    
  5. Interact with the client:

from circle.web3 import utils
from circle.web3 import developer_controlled_wallets

client = utils.init_developer_controlled_wallets_client(api_key="Your API KEY", entity_secret="Your entity secret")
api_instance = developer_controlled_wallets.WalletSetsApi(client)

# create wallet sets
try:
    request = developer_controlled_wallets.CreateWalletSetRequest.from_dict({
        "name": "my_wallet_set"
    })
    response = api_instance.create_wallet_set(request)
    print(response)
except developer_controlled_wallets.ApiException as e:
    print("Exception when calling WalletSetsApi->create_wallet_set: %s\n" % e)

# list wallet sets
try:
    response = api_instance.get_wallet_sets()
    for wallet_set in response.data.wallet_sets:
        print(wallet_set.actual_instance.id)
except developer_controlled_wallets.ApiException as e:
    print("Exception when calling WalletSetsApi->get_wallet_sets: %s\n" % e)

We recommend reading through the official documentation and QuickStart guides mentioned above to ensure a smooth setup and usage experience.

Configuration

The client accept following configuration parameters:

Option Required Description
api_key Yes Api Key that is used to authenticate against Circle APIs. Must be provided by ether env variable or function parameter
entity_secret Yes Your configured entity secret. Must be provided by ether env variable or function parameter.
host No Optional base URL to override the default: https://api.circle.com/v1/w3s.
user_agent No Optional custom user agent request header. We will prepend it to default user agent header if provided.

Need help or have questions?

Here are some helpful links, if you encounter any issues or have questions about this SDK:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

circle_developer_controlled_wallets-8.0.0.tar.gz (71.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file circle_developer_controlled_wallets-8.0.0.tar.gz.

File metadata

File hashes

Hashes for circle_developer_controlled_wallets-8.0.0.tar.gz
Algorithm Hash digest
SHA256 0bad6e70add3461659b1704f5242e3616c29ab01d896dd59e21ae464520f3e63
MD5 eae53e9942ad3f7cbed201f83c8efb72
BLAKE2b-256 e5ca5e2c931db2b0d71c0f9a6da486090b1f3edddcb976baa7f34431cb5cd09b

See more details on using hashes here.

File details

Details for the file circle_developer_controlled_wallets-8.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for circle_developer_controlled_wallets-8.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 963b2c2803e13ed8c457f794610724dcb5b48c64fbd68ccf3ed759e7c80a16d4
MD5 22796c24aca0a5b68ce89519b8ec33b2
BLAKE2b-256 865f51c7687b20e47b397cb2b9b7e59208fa24b1c4c296735ac98c169db35ea5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page