Skip to main content

Python native bindings for the Open Wallet Standard

Project description

open-wallet-standard

Local, policy-gated signing and wallet management for every chain.

PyPI License: MIT

Why OWS

  • Local key custody. Private keys stay encrypted at rest and are decrypted only inside the OWS signing path after the relevant checks pass. Current implementations harden in-process memory handling and wipe key material after use.
  • Every chain, one interface. EVM, Solana, XRPL, Sui, Bitcoin, Cosmos, Tron, TON, Spark, Filecoin — all first-class. CAIP-2/CAIP-10 addressing abstracts away chain-specific details.
  • Policy before signing. A pre-signing policy engine gates agent (API key) operations before decryption — chain allowlists, expiry, and optional custom executables.
  • Built for agents. Native SDK and CLI today. A wallet created by one tool works in every other.

Install

pip install open-wallet-standard

The package is fully self-contained — it embeds the Rust core via native FFI. No additional dependencies required.

Quick Start

from ows import create_wallet, sign_message

wallet = create_wallet("agent-treasury")
# => accounts for EVM, Solana, Bitcoin, Cosmos, Tron, TON, Filecoin, Sui, and XRPL

sig = sign_message("agent-treasury", "evm", "hello")
print(sig["signature"])

API Reference

Function Description
create_wallet(name, passphrase?, words?, vault_path?) Create a new wallet with addresses for the current auto-derived chain set
import_wallet_mnemonic(name, mnemonic, passphrase?, index?, vault_path?) Import a wallet from a BIP-39 mnemonic
import_wallet_private_key(name, private_key_hex, chain?, passphrase?, vault_path?, secp256k1_key?, ed25519_key?) Import a wallet from a private key
list_wallets(vault_path?) List all wallets in the vault
get_wallet(name_or_id, vault_path?) Get details of a specific wallet
delete_wallet(name_or_id, vault_path?) Delete a wallet
export_wallet(name_or_id, passphrase?, vault_path?) Export a wallet's mnemonic or keys
rename_wallet(name_or_id, new_name, vault_path?) Rename a wallet
sign_message(wallet, chain, message, passphrase?, encoding?, index?, vault_path?) Sign a message with chain-specific formatting
sign_hash(wallet, chain, hash_hex, passphrase?, index?, vault_path?) Sign a raw 32-byte hash on a secp256k1-backed chain
sign_authorization(wallet, chain, address, nonce, passphrase?, index?, vault_path?) Sign an EIP-7702 authorization tuple
sign_typed_data(wallet, chain, typed_data_json, passphrase?, index?, vault_path?) Sign EIP-712 typed data (EVM only)
sign_transaction(wallet, chain, tx_hex, passphrase?, index?, vault_path?) Sign a raw transaction
sign_and_send(wallet, chain, tx_hex, passphrase?, index?, rpc_url?, vault_path?) Sign and broadcast a transaction
generate_mnemonic(words?) Generate a BIP-39 mnemonic phrase
derive_address(mnemonic, chain, index?) Derive an address from a mnemonic
create_policy(policy_json, vault_path?) Register a policy from a JSON string
list_policies(vault_path?) List all registered policies
get_policy(id, vault_path?) Get a single policy by ID
delete_policy(id, vault_path?) Delete a policy by ID
create_api_key(name, wallet_ids, policy_ids, passphrase, expires_at?, vault_path?) Create an API key for agent access
list_api_keys(vault_path?) List all API keys (tokens never returned)
revoke_api_key(id, vault_path?) Revoke an API key

Supported Chains

Chain Curve Address Format Derivation Path
EVM (Ethereum, Polygon, etc.) secp256k1 EIP-55 checksummed m/44'/60'/0'/0/0
Solana Ed25519 base58 m/44'/501'/0'/0'
Bitcoin secp256k1 BIP-84 bech32 m/84'/0'/0'/0/0
Cosmos secp256k1 bech32 m/44'/118'/0'/0/0
Tron secp256k1 base58check m/44'/195'/0'/0/0
TON Ed25519 raw/bounceable m/44'/607'/0'
Sui Ed25519 0x + BLAKE2b-256 hex m/44'/784'/0'/0'/0'
XRPL secp256k1 Base58Check (r...) m/44'/144'/0'/0/0
Spark (Bitcoin L2) secp256k1 spark: prefixed m/84'/0'/0'/0/0
Filecoin secp256k1 f1 base32 m/44'/461'/0'/0/0

Architecture

Agent / CLI / App
       │
       │  OWS Interface (SDK / CLI)
       ▼
┌─────────────────────┐
│    Access Layer      │     1. Caller invokes sign()
│  ┌────────────────┐  │     2. Policy engine evaluates for API tokens
│  │ Policy Engine   │  │     3. Key decrypted in hardened memory
│  │ (pre-signing)   │  │     4. Transaction signed
│  └───────┬────────┘  │     5. Key wiped from memory
│  ┌───────▼────────┐  │     6. Signature returned
│  │  Signing Core   │  │
│  │   (in-process)  │  │     The OWS API never returns
│  └───────┬────────┘  │     raw private keys.
│  ┌───────▼────────┐  │
│  │  Wallet Vault   │  │
│  │ ~/.ows/wallets/ │  │
│  └────────────────┘  │
└─────────────────────┘

Documentation

The full spec and docs are available at openwallet.sh and in the GitHub repo.

License

MIT

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.3.2-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-1.3.2-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.3.2-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-1.3.2-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.3.2-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-1.3.2-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.3.2-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-1.3.2-cp310-cp310-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.3.2-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-1.3.2-cp39-cp39-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fe0092161c2e99a22487d8214215a508d19bfa09bdef54b5e980c9c2dee760b
MD5 f556e61e95df20ed1225d1d77953db41
BLAKE2b-256 95145fc148b912db34140ac5bf620c900c741c12c6039733e3ddaec7270848c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b09d181e2dde25833c804d9255779d7bc4c2b9ec39a50725d12475f1d9ce44c
MD5 673fad61359495d6fb569621e6e46376
BLAKE2b-256 3b97fdd234031cf6538af675df45bf8d808020222c9166adad35425469f69003

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87ace0232f27affce387fb540daa14c3447add3031f39845f982cb0b4e11f769
MD5 bad07673b25d1d96bf8eebf1dff8a670
BLAKE2b-256 aa0fb7650e023d254d6a09b86620f82f1d5f1ee459c75550dad39b7e9cb2bf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb368fe083722b65fed5154642fd27f5a9e7ccddca26b170785fadffe9b24587
MD5 29e229690fae7667875a265c0bc8e130
BLAKE2b-256 8a151aef28e145b7e20104c9f36bceee6541ec3635cbe7a5682ba0804613831d

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 833b290e6a2c25fa213ed5c77da3dbd6e9196306d6e3d318d84a3f192265cef8
MD5 25454ea89af6e14783d45a2b5f9aeb60
BLAKE2b-256 4c78549cf0f3fe23e0e38024e87ddc5f8060e5858e06d74b1055880770bbb7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 823ae5607aa639627079339714267c86287b9d82289a48b143563507c53ebb0a
MD5 86b915ab62bccaa8e4a8c764a6179459
BLAKE2b-256 e45601f55b585008f1f32c25b09a5e5d955ef60c8b9f6baa25a2dfb19b75071f

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12e97806c1c08107c4a97986d32b5fa3e2e80f4162f8733cc8dc6647db48ff0d
MD5 ec353bf592523fdc479f979370afbde2
BLAKE2b-256 23320933c9a06359ab89bf9b1ecca48672dca65ea30d0c4c8278a60d1f1bdf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2bed3c9b4fe128926479c0a2746f02a43b3a6e88fbf06ea24a77cfee3a6bdbe
MD5 513f76cfceffef3025799e22df4bb91b
BLAKE2b-256 23f2c77595c3066f5ab05733646f21db705f7252d4abc55f08a65ed4b3ef4a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3254004393272aac84df82139f50b1a9a9cdb3f6b70e03ef11a58e20b9c95966
MD5 170e17dd24744eb814b9faef878f10f0
BLAKE2b-256 d784493562ff1e5fd5c69bec2d9fbde37a873202154c842ce47dda2f60de0002

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0810f8efc527a37967ee67e328500b2ad0408fd170a4649e86957d60c710d12c
MD5 615a6fd5e0a1b2a4dabe9986d162e36c
BLAKE2b-256 daed4a8265ceb693636174fcbf578693a3015ea576ad87be86a391c1d1664e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae95dfb89f22241bd2838f2b34e297ea8c8b0ae95475de8d002bf6dabb040751
MD5 e08534333ffb7b99f4a56ff894cbf365
BLAKE2b-256 c152f7207e0e0d6432131c07c7abf15a769d277f3cb8d96069b38b3ce83bdd40

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d89e0bd099b555b8465ef4b99389e3c062bb780b69eacbcb3b84acf9f796ef53
MD5 d74bbc1480ab327a3f472945f1c9bbfa
BLAKE2b-256 bd198a364946dee660aa5026e5134a4c6857b0022c66c2715d4a7af85cf72c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccc815fbc8933dd1a92a09fd825ea20368c354ab58493f87924e6a15d548f5e1
MD5 051c2663093c78bb95920f4e110b34af
BLAKE2b-256 860fc92670db61bf583904b5518ed41392381857cdb2d25e35233cb528e0a22c

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d14bd799799687be442fc9ab13d6fbf85253dae9559511644a363a9096081bd9
MD5 b4eef3b13f9dc254836cddfc2de8e5fd
BLAKE2b-256 fbcca7afef4a72519cb9b09f9da0fa8477bd373fdfb8ce3e8b6ae3624aa5c8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 797b990d302ec4eba0e9959eb436f229e53fd72065b1e3d2bc1c477084ef4146
MD5 557501c24581c961c6965d7ef77d3771
BLAKE2b-256 136cd7b3e8d76f4f6da0c729e1d8e289838dd298f684102e047819739c6c1418

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c91cd90afd3c97e33a9d5038ce326f00835fa74b1f46e820b1b07d8fd2c38fa4
MD5 1fd90ee706bed4edb363854055f6f75d
BLAKE2b-256 8c3fc494baecaf3833326c7d40f9133b14d0d7ade23b7eb542fd63fa06763583

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5e50daf4b2bbe14072b320700d724bfd355d5ba91ae720d21c70a1743a04e66
MD5 23cf2092cd098e079f7f289869e486b3
BLAKE2b-256 b6731a12307d750ae497efb671734bb74b7611e9f77bc49be2c232d5dd424777

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e20f0c15fe400fa177d4b74ec9b0716b99dcd803838548dc941b60df5bf50874
MD5 4f0776999dbec9b9117bb75fa67e51a9
BLAKE2b-256 891e6ea720de3c73b7040e3290d6ecce957fe1fb30cad35c65340846c6367722

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcee304f9759ecbc6dec71a608ec968f9dd125eea4cdccf9930f0cd3dd2a7746
MD5 1ec06cef5ece1dae9e56057dc33150b7
BLAKE2b-256 2f4ffa0c75747d39e39821e43be3f3ff2683c06daf9dd334286137435659b33f

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file open_wallet_standard-1.3.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfa1fe3b342763f3d7d7f609ed27f44d680b2682d1102bce8f5caaeeb6eaa846
MD5 62b0d5b1efc8bd806854f2130b06b32c
BLAKE2b-256 beb4345671033e86885d1033abbc277de6e9a288f87374069850734d325ce584

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.3.2-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-wallet-standard/core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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