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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-1.3.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-1.3.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-1.3.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-1.3.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-1.3.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fa0928ad2299d9fcae4e64bc12df05990cc26449a1c93f61e833f9e5bf14505
MD5 0dd686a34fb4cfeca86a4cd54c374fd8
BLAKE2b-256 1342cdf8d1f2d6905e9d01e4f3b77b8d769d34bbb3d96cdc2ce51696801bf35e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bfed2ad0da2b069bd4dd22c207a652e01aa7736c5157649ebe54ff02cc1ec28
MD5 32977105de3a32f564794481b3ce74dc
BLAKE2b-256 091f53450805bbf924ef6b4b4ffd09c358bbc320b3d33c0d4c74422ac01d4bb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7a01a9599c107bfe9d5f3f46c9d78d8e94c72f34d0d34bd28f809b8cdc0cfa7
MD5 9f86b265dfeef6f265d75eabbb67ed66
BLAKE2b-256 8b17d06ef742d631f554d8a455bb2e4b760066fd88048b3bd3dbd8500f50d8e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81f6a6d3f6133038b39ca74c292a7b73da4630d57835ff933b8e8d6424af24d6
MD5 d6ea407b6450ab5343f1ab7fbad572ed
BLAKE2b-256 106857309e00f1cd253cbd20bea4bbb419e67de08d129c9c0d2f103ee8206c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 334e2abe200747877b762234b016866e3ea03bcac742adb26716685cd6c4c4b2
MD5 b8b107c3c289567d5078c94188d045e7
BLAKE2b-256 c6f8b88d7c9a95440c1f633a749bcefb6cd748f837b94643f93a4c050c7da21d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0b9436e4faebdf335b2b284d3e70557b0b130d94077f74a151d390c562a4944
MD5 e7d52fa0f64bdd67c03a129e5f246b7f
BLAKE2b-256 291009af64df231f4b1abcfb3b6ec4ffc20a398087841e3ce5cb46b8a1fda2d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b672a71d11cc1eca611b2f1754d628565eb14438ac30ba515711aaff417b8eeb
MD5 a23a9e27aacd75ee3a5fc6ff0bb6fa5c
BLAKE2b-256 80df4831f62775a065e9bc34c6bad20d34b255fc8661d797b8a87512b57a159c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 782953f76afeaf66ba7359875b4fdfb7fb213b33980d1f274b7b77d8a5bd412a
MD5 5698cc701edf37db3eedd0ee64741f81
BLAKE2b-256 e5341e1236f636768c3c6f0ddc845d054d868c1cd31284c499182d20c42b0268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd56a429d4b443199159a00b01ee80403a591dc6539e21352d2e385397bf045c
MD5 a031d864fdd3c62fe21ce6e97c161831
BLAKE2b-256 6c5e2c2c3a1428b671bd1d86acd6c35fbb592705f71bd93cb3b8ee2d3826ba26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d256da0d036a840d7df35b59f015658af0ae6b5bef789b91a00de83241ebee2
MD5 708fd7e113696e4db31a9bc93a7466d8
BLAKE2b-256 1ad0ecce96812b6a7eacf68a9e21207efe3ef734042b93f41d4b1b2a67e0eae5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5040932ae47d702816a114e22d7e0833acb79854316f84557982c525c5edc694
MD5 535aadbf6ce53023e523606de408c120
BLAKE2b-256 855a9d557c41ccdb51faf43d8f6cacbba249e09829f9c48c7da3e64c5c4cbc16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8bb21870262c9fc93523559fcc0c607071d174d638ede8a31e04fa21adefd41
MD5 1b2d3693466b29e17330554923d52f08
BLAKE2b-256 be1b04f84f420798f13b4aaefbde2609e130641023a4c4d6007c5c9c50f06026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a6e4faf1673418078729b8db10a2f634fe062dd96636d1e5c7ec643dea1501b
MD5 15ab6a2a6e8456791e786f9325c54d73
BLAKE2b-256 0a35cb41c0c3929e20102f26bbd636f4b7a8a045bc772608e51bebbea44efc1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8abb99e5893a8144b8ef4f780da376c1983951184ade60d105f73d4f25f42af
MD5 1f616b0e29be4f9cd8714c79bf3d5115
BLAKE2b-256 fc42e5e859accfeb385165aa62775ac2d608a00e83880a3d99b532cdfe3d9274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d70f8ed90a07c0da582e9daa59bb7313893b7d031569480af8f1e77865076061
MD5 1235706925d9955656c237c5623fb0fd
BLAKE2b-256 a2db448d87c7e9ca567aaa67450456fc7193e4b30911ab50c92ac7853a88de44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 745121f82e53049d60d0a186a2a7d828713f7d4c0150b68a2005a732a1ad06d5
MD5 7b1006ff6cef3c4afe54229821c8007b
BLAKE2b-256 27181c6ccc48158ed9022b84ca48221ef9214b8437175d205f60b1201212a2a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a683276ab0cb74588433874a9f6556de68ba208c13b3c26934b3ba96df101cf6
MD5 fcb83397724d1d504565adf434b05ffc
BLAKE2b-256 2ae10ec70038991185b76297439dbed1c4f84aa3e5ff0a69105ffdfda177cbe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af470ae8de78dcb0677e9a3d7490954367b0166eada8aa453a71722cfbd18eb7
MD5 5296fd00c52781f3e22a6bb67e667dd4
BLAKE2b-256 19bd69ae2154d191512d193487888853de3d2e1a1325d9c337b2e14fb68c6fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4604454a051fc1b68d58251e13619edb111e929ed7ce3d27208cd36a844f7376
MD5 f714ac98b5cb4eaf0ab818a83b11d332
BLAKE2b-256 28cdaf5a829dacf1f8ca276143b7abb707e8501d410d4bb8af5b2c271c3f1316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ba9bd45ecaca300486a7a7b4dbfa6c14f0516efc4bcbe47f77a8d0314a4fab2
MD5 20e8221521aaa251a4c8c18f9dce65d6
BLAKE2b-256 a302be7bb5e5520b6f0fd99870dd8f861aa346d6b55fafeb4c01355de036438d

See more details on using hashes here.

Provenance

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