The Python SDK Utility for Circle Web3 Services
Project description
Circle Web3 APIs Python SDK
The Circle Web3 Python SDK provides convenient access to the Circle Web3 APIs for applications written in Python. For the API reference, see the Circle Web3 API Docs. Also see this project's PyPI Package Page [TODO].
Requirements
Python 3.7+.
Java 11 and Node 10+ (optional for contributing and development).
Installation
The recommended way of installation is using the Python Package Index (PyPI):
pip install circle-developer-controlled-wallets
pip install circle-smart-contract-platform
pip install circle-user-controlled-wallets
Development
Clone this repo and install development dependencies using
# For codegen tools and git hook checks
yarn install
Initialize the submodules:
git submodule init
Build the OpenAPI specifications:
cd w3s-openapi-internal
make build
cd ..
Run the codegen command to generate the source code for this SDK from
the w3s-openapi-internal
OpenAPI specifications
# Executes .openapi-generator/gen-sdk.sh
yarn gen-sdk
Usage
Initialize circle web3 API clients. To secure your entity secret and circle API key. Set the API key and entity secret as environment variables. Learn more about entity secret management here
export CIRCLE_ENTITY_SECRET="Your entity secret"
export CIRCLE_WEB3_API_KEY="Your API KEY"
from circle.web3 import utils
dcw_client = utils.init_developer_controlled_wallets_client(api_key="Your API KEY", entity_secret="Your entity secret")
scp_client = utils.init_smart_contract_platform_client(api_key="Your API KEY", entity_secret="Your entity secret")
ucw_client = utils.init_user_controlled_wallets_client(api_key="Your API KEY")
Using client to make a transaction.
from circle.web3 import user_controlled_wallets
# Create a API instance
ucw_client = utils.init_user_controlled_wallets_client(api_key="<your-api-key>")
api_instance = user_controlled_wallets.PINAuthenticationApi(ucw_client)
try:
api_request = user_controlled_wallets.UserTokenRequest.from_dict({"userId": "test-user"})
api_response = api_instance.get_user_token(api_request)
print(api_response.data.user_token)
except user_controlled_wallets.ApiException as e:
print("Exception when calling PINAuthenticationApi->get_user_token: %s\n" % e)
Contributions
Please follow the Conventional Commits format for all commits when creating a contributing pull request for this repo.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file circle_web3_sdk_util-3.0.0.tar.gz
.
File metadata
- Download URL: circle_web3_sdk_util-3.0.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75814550bcca42b0f5cbd4e8f7eb3f0476835568e378205b650628148b659580 |
|
MD5 | d700d7f09b177b7fbc1560331d35e1db |
|
BLAKE2b-256 | 488fc011154613e7d2d0bc6e9a92cd53be0e8bd10fc1f8d8aee434dc3bfafe97 |
File details
Details for the file circle_web3_sdk_util-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: circle_web3_sdk_util-3.0.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ed0c16b9754de6780a5f19494c40ee5cfa6d01000d693cd29c2915841a68865 |
|
MD5 | b788e8d7a2c338606f7aaf215549faaa |
|
BLAKE2b-256 | 7520c9b94c680e315ccd93e3c3b1a7227444dbc800648d849a8a9a3c390cf765 |