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, Nano, NEAR — 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, Spark, Filecoin, Sui, XRPL, Nano, and NEAR

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
NEAR Ed25519 implicit hex (64 chars) m/44'/397'/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.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-1.4.0-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

open_wallet_standard-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-1.4.0-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

open_wallet_standard-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-1.4.0-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

open_wallet_standard-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-1.4.0-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

open_wallet_standard-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

open_wallet_standard-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

open_wallet_standard-1.4.0-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-1.4.0-cp39-cp39-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16cc627fdd5e13deabe9c0f536b318891bfca4c80aa659bf5864413a5874e973
MD5 6998c400fd4fc006686a30e3abe56d21
BLAKE2b-256 d7d95845642cee6be13a2475700692529b961ca5a3dec4dff3eb54deccea6103

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de0837764e25919989cca7fe51b34087d29881e40d4fa34761458e008a69b409
MD5 0ba4b6cb8b9021e711f6dfa49f1e5b43
BLAKE2b-256 0b7f797ddd53567cac3703d964745064a94c419c6dc2294150656d262cefdc0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4474f45766106d264a5cc9117c202fb8e10b5ea843c229e345cec75023e167b
MD5 f423a90123edacf37f0e1f3ba9152fc5
BLAKE2b-256 a8c64bc9652ab9fd52c2947aeb8d719b4fe3a4c75ad66c6a9be98fae6c65744f

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cb499bcf7a9a56b0d19645b57ed66341fe26dd6f32f86a1e0ebbb02ffa7338c
MD5 bb9fc22e2cf70173c4b602901cf299b5
BLAKE2b-256 1308536033945e08529a3bfb9186fe52ea523ec14f27bf5497a1acb5af5ad402

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c39ed2b3613f65b0a619f57dd1cf6a64d6f4febabcb09698ac233603b9148c69
MD5 105b297de7f0ffdfd4450e2aeb9cc879
BLAKE2b-256 5e7d416e1e8227ea4526e4c0ffeff7a71dac2192cea05508067e59c9a07f1bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d754e79fe05c6ea12b323f3aca5e7d0a208ada83439052288382f8cc83d09a44
MD5 5f70bcca47ddfdaca27a00ec95c9c2e3
BLAKE2b-256 35194baac79336a54a75b5891f04481098c2de828fee3d903dea1d2b6f7309f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3c6a86c855ac604e8fed7c2ecc0ae6063e1ba3f089a7190c94b01130fa719d8
MD5 e1bde0299233068797333daa2b49395e
BLAKE2b-256 62b78a8110cdac2291189fafaf6baa61714ca01ac203618c29d2c227738deda5

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70916b07998c8d2086ce563197c00bf72396026015c308b44bd54b993114d93e
MD5 e0ff9bdf990690c4f3460a0d688e9f95
BLAKE2b-256 4e24c92917c89182bb4deb253b4400c98a340ef196378a9a56fae4e5837cd94d

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7246b047b743a489e1c54fd1de2529ada34bd91d2426e692d10d0d3b891df35
MD5 d00236ea00deb6825904ca31c16e6dd7
BLAKE2b-256 64a8c83a55040df70bf21c52ec7fb30b0d79b4b67156741b67ef222668c75e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b445de0a5add11913c26fc4c445711801b8edd615f998c9dbca447b77a85a0e1
MD5 38ec22cb005c88f2c7c126233a11b0d8
BLAKE2b-256 8aacd8351dc74dde15753be49b7987e6b71619a937b29f96b0bc04c3fd6b63b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cccfa11563f0177d53d1adbc5d037ab69040d1a9845f9c9c05b769afd8a0df9a
MD5 b36cedbca5a38826049080de6b7ce9a4
BLAKE2b-256 c42a3a9b529aabaf406437266acb68403e452e37b928e3fb6af9bb02b79bff2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 498936d0f08a0934337b2fd4a49be79b1c74aaa3ab0d8ba83079e48aea4b675b
MD5 2f5e364240c3ba2032b81cbf75e2e62e
BLAKE2b-256 5e713f3f265b3f2615c650728825a2ab3c654427fa199e49b3d347d76280a45c

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d1062f219bef167f7b1bececaf8128196489dda6869349b5284f27dceb377cc
MD5 6565a3677a2a45355d2cd6a2e0438d5b
BLAKE2b-256 86ae338e6bcbeefbc061b387d0b5b74604320d6885aceb9ea10e844431b130ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac49a32bd84dbed5f1048bb96d598e205babcf023e8db6f0a8366df2ce31daf1
MD5 16c62650286f6522a7310ce535c44e7d
BLAKE2b-256 f4d9dc5f4a908aa09caca328b620db1e0577c51a7dbb0f7cf503379829527ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ae03cf7405e86e87f09895e3653130f8c14e0899f7b97b9b287c8c0c60b9fe
MD5 4200fc00da007c969322cdc272ff205f
BLAKE2b-256 b21a56561b719258a676dc80b8ee40d068c6c2a41826983668d372ab3f1b3537

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 700da7564fb660555285245e806ea75181690c801d8662e5dfbb4503f77103b3
MD5 7d67a476b6db6f2e2ebd78cf23bfcd33
BLAKE2b-256 7037f60dd5275f618bdc6b0696dbf3a19265d9f1413343f8b3f5a5b2a46d7279

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f60a59936403a55e037d352a870fb8e7f6823fe9fcbb87003164754fa55af3aa
MD5 ed45b1377a72fd06e0d0dffb12a08387
BLAKE2b-256 ec73cce6c04eb59a1d1fd5f93b2107c1b6837c3d78866b5d7fe0ca1b2fc28edb

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcb2b47a6e7a9912b468b9544239be1bba9d7e25a4cc178f9c83b52d3c3f0b9d
MD5 bcd54b183584454c15447181f31306fd
BLAKE2b-256 8d0e69392784eed28d782643c895b252889672e0fefa6cc8dfa68b0329d49b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45825e285cd7d5600d9e71da579452b54cb4d784c366951354437f63e91cc7cd
MD5 cc9aa98eee9d800bf3a832c241911c22
BLAKE2b-256 2735c9834fc1ec59635afba62a8c05d53d13cad9e93e03caa1a6c364b034a49f

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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.4.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfdcfbebc66122830f0de1806f3a67d1a203d66d37c9281fbe7eba66b90a15a0
MD5 0cbf8ee44162f2ba8f082c5c5666f9af
BLAKE2b-256 1fb1b9ee730084bf7976a1830a0256018ddb924251d8d330233bfa19829191a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for open_wallet_standard-1.4.0-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