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_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.2.3-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.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-1.2.3-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.2.3-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.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-1.2.3-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.2.3-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.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-1.2.3-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.2.3-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.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-1.2.3-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.2.3-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.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-1.2.3-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.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc696b321b89680ad4ce1b2bc4158efc4e2b36715ba7f758473681f7b5366241
MD5 75a98dcf9c8d63919bc892c226adc0ac
BLAKE2b-256 893ad1b99e19587c76cf8198608ba304489131dd0dd4c4e5bc7213825a78afcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8882fd7591fcc941ff77ae0abe31868ae46ed83ff9c28593ef1039ed24263b1
MD5 989cacbec71222e3dc8ca50fc823c241
BLAKE2b-256 5d3fde4e2daee4ef7c5fa8ba4b276b070f414509fa72fc291cf59c5d74e153b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b21be185c09f5432f6e93d52af5d4cc469fb2715e13e4210ba68fee716bb224
MD5 7575381a5694f0232996203e3fdcc4c0
BLAKE2b-256 aaa3a71e779cc89645e7fdd18ad9e45abd4374d570eb84f938f244994ba1842b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95383e6fa45ca7564203eb9ae5dc1c4ef82f6003ee7063eabf2901bcb14a09ec
MD5 282a8d0f29c1df40d1746b2c663e2730
BLAKE2b-256 f0be5b3c68e23fded128eb2698914d087c3371bbc7a2f9baa590e2cb037b150d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17e7d337d1ffc0438edf75bf71c12a840393af0fd18459279e7e6f1a0e203772
MD5 55bb51c89f4b70213f0d92764ae5d52b
BLAKE2b-256 31d07708155141cfedc9f52dfae472813dad474b92b3a5f24578819dfc17e58b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4ecafa3f92236af775ad7e1144042bc4c96f138ad8b95cb6851b143e91ecfcd
MD5 fe220964d0eac022f12b7724ff382ac3
BLAKE2b-256 4af2fa41d0279db426f26697a979514b6abf47c39edcb8b3df370237bb4d25fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e80d59a121cb9d9ebad34b9b83cd91c675eb969d5ca133018d581b9fdab0b4d
MD5 7163beed36ed539f858bc54fc6adb9a0
BLAKE2b-256 e5e077d529f447212be7c00acf819b1e774beb483ba790ac8e55234eb044d59c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0f91f8a520d6947b46e72d1ec52e562cc72360d4f5ebe48bf5a89cdf09c3069
MD5 fc85fa8ec7f55761636e51c5bdc36b38
BLAKE2b-256 c2fa1ed787404509cf8f5842a75045440f42420462bc8abc5492a6fe16965fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91b3efb7b2b685d95958403bcb601d21595018ee1e0ee1efb283ca2e4dbfc0a2
MD5 e6a15d120b44e15b44b91d7b91f5f9c6
BLAKE2b-256 a640b70e27c2b0a67788db5fa2459a89a3f696ba36ae87aae089794710f27191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b500ddf55186db52bfd797d039f3247f9fd07e215253f699ea6dab5e9b085bd7
MD5 07f10b5e6eca6917aee528ae1064ffde
BLAKE2b-256 1e1b0010610cd0a5894dad1dca2365cbd8b386b50c66a0cd5e8adc19de4a0703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a284c69352b0c095182c640c0998d771aa8433e9169521b198ed9ec1bf061661
MD5 100c3d261ae6c3f40481089bb358456f
BLAKE2b-256 2d5204af144f8995b96f638d02fc339ec5baaa4d04102cfb84bd2e6283ba06a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a308c5e2b6627baf8afd7110ad44f549016d79d7e01660aedcaff8b7977ec7a3
MD5 96b0de0457ddf8f74c289fc08508df5f
BLAKE2b-256 2b5a25d0564102d93215cb972631a29b0a7e713d9ea579517aef41289e79898e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 881245f04a578fb82aa1d9709deaaed3bbb4f986ddfc1bffb20fcb57795b9827
MD5 b76aded7ef3869cb6c401298823f3329
BLAKE2b-256 81db89024b883be6d5f2c83ae1603aaf2ddd0362b5bfc6c35f4992d8c162656f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b550f28f7182c9c4e2beb966781d15990e12abf3f6fdad75ee55ac5e17fd23a7
MD5 260910d0bbd7803592c1da0bf7a72058
BLAKE2b-256 396ceefeb4f1457586265d4e52cb1bd7e4aa17705d1d78dc9bc09e62215dc35d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0d619e152d864e2676264520a691fe424943bc9f07c8a466852a808eb6e7ea
MD5 225b060c17bc796177418fd453441f0b
BLAKE2b-256 b061b23cacc5df792fa5582975a2c90a6838e91ef1cf7179c84e4d0681fa9e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24feeb39fc1af79ac3821269e9e272562220a6aeda90923d6da5e86915620b40
MD5 15a77de3761ff8df6b8109231c14070e
BLAKE2b-256 38b253aae55781fc4106b8a9e03bbd9ad24962b66ce2fe0258fa806205a497ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd0a3daf0031e160a4b49d5303f131db8f99766058b10d0358b1d3ee33e6871b
MD5 e27dee6b518ef794eab19bfb3ccb0731
BLAKE2b-256 89036a68587bc42e62a7193d7c93e5ad2eb70c3810d482d0516c7312c8adcfcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 379461e2bece3f32759e0e1d5b2e0a38840c6f4edeeba798dcee263aaa8bd64c
MD5 fe2583d2b5ccee2c970b4e223a8b0a21
BLAKE2b-256 79ace82cbd5fc3506de43fd077682fd2178d33893af7f0b2dac7778ce395bad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed15202074fecb9e1f55446f42e9e3e3b23f91d65f3fbf986c82acdf5fadeddd
MD5 19f60a246f50fa6c4a0ecaba0139b426
BLAKE2b-256 70fc38d3974c1a12fc649d10855374508b5ef11d554095f38f3aa4626e698784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c36c76a34d2868589c190f74029361d17fa90f5b83671ddd13c81903108326b
MD5 abfd913a38403657e1d4b1f4e91ee2de
BLAKE2b-256 d73db89b8f2071c9330af27ff5246b57b54b924000f59173d3d37a255f3ebeea

See more details on using hashes here.

Provenance

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