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

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-1.2.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.2.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.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-1.2.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.2.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.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-1.2.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.2.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.2.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-1.2.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.2.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.2.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-1.2.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.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f63c1d9e8fadf9fe8b06e712f3641731803e8214780e7f9fcf2624856cc9961a
MD5 8b779321b6859cb9c88fe4ec30686ead
BLAKE2b-256 1789fe0196a13765814052e086ab8342a831bbbf55e61e0f53ba86a16e221453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 120e4e377f0a3bf83e67969c758eb19e4e9366c50da5827d6c25ce432bb923c4
MD5 474e74d95cfe01ca976c9cbd1944ac3c
BLAKE2b-256 6679efedeaf53daac856fee97b7b69de33f682eef2c62fe25b63967f3719a38b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db923335b5387942776b594215ef9ccda71040ec8e0debbe62074b59a08ef391
MD5 61dc585f0c37770a32fc3d67db23cef4
BLAKE2b-256 a1c15b5c95eb71a7d355a72ad83e8c3103a3c1a9e866c9cb927f980f7e72dbc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddbaaae472587f2335d230cbd61715759107aed096015847344fe887556f7585
MD5 59319410a39bcbf3dafcfaa7f78079a3
BLAKE2b-256 ffe4e7336ea17a78d9bcd55556cf0c0321e720ccfce10b9438ae5bb255e8b18f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 775f2db860bd57e760f00faa254cd78fed0018a8f3133881388b7f6e48eb1d3b
MD5 0c34cd0b98bf3e7e57f2509b01870e83
BLAKE2b-256 e7f1a046fb9404e6fb8fc936da73bef606846156ffb547a6bf94949e00fd180e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c6ff6d9d72ca07dcf3529f12ed2c86239d055f764b6686117cd217ef4417e28
MD5 42e7e7ff8a779ec975b25e4506b9e90b
BLAKE2b-256 bd64d017c7e6e72ea5bcf4c00995136121f25180dfa0b7aeda5c31764040c4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9362fdc73bc67c371bb0d8ea1cec61ea298474e88ef76c3c7ebe01d0d587ddbb
MD5 79e8183dc96883999040442ceabe5013
BLAKE2b-256 dfd2299f25f3d34ba6acde9034850f2b94f3f4fec1665429cc03b995cea32244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1de7cdca88c7832611f5ebe9a648a68f14d653d082f6231e398b724bd139d02a
MD5 fae938f30050dbc0857b637f22a431ea
BLAKE2b-256 b76747c29f60bc6ab7794cb51045edccced859380ed36544e1cd582197eaf14d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bed27653c3e58359b905370feb2b30f4b0350efddd29ee7289d266f94e40d0f
MD5 14fe5f577fbdda50b5081cd4e0485289
BLAKE2b-256 967d4c1aed8e98b531d007b89e0a9478bb2c2bce92043133fa9b30b2b3ff8aca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2ca3b60e3f028b5d9eae1464aabf5b870c22175226234f1087b50d5f556e3f9
MD5 aa2c23ae2950e5aad5c9c9bc440dbeeb
BLAKE2b-256 dafdd8634cb9c2e73f60537a656ae0b9c7fb1b5f17b25a1163b112a252800753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff33d7d4746a22c6ba71fe7c2464487846ebb1811c45457ff086da95241b98fb
MD5 12ed0ccb7dc3df2fcab68bafb8f63e44
BLAKE2b-256 b0efdec222c5ddba3f8b1ca8a5003e952f9950b43c130c95285115b273a3153d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf186b1a405ddc350983b49c68ecfd238d73a380e231bdea8b4de421a1f4290c
MD5 ecb10327f7aee85c16c4af99b71ff39e
BLAKE2b-256 76ce8db605b81d3734a9ae0a12600dacdce672043a17bc785b756f59aabc8c02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c3dca38951787b8959ebb5de6060f8bf1d7771136a372b79ebca3a5a3e427f
MD5 633938d1c063024a299b626ea550da45
BLAKE2b-256 0c90fed98cb0c6bbbd5169b84d1aec1bca25f20cadb5ee214346c985ba672803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fb5ccb24251a1fa09b66aa9c1ff24208fd2861798a4854886527aa44af94a1f
MD5 f77dd94a7a0ea3f18963c46b29778f14
BLAKE2b-256 381ea088acf7753c3478ef647f009428c7afe05c16e7730126d0e61c93a3af7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3045faae41faa85cccbb327d349c3f9596c18747cbc845b2a15f6acf7a010288
MD5 96c177f86561108a49cf2094c5e5085d
BLAKE2b-256 14a46255a88745687fc145ef6fc08eb0f11ed2d652221315aa1376ffba3c685b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17b49b678ad2102972e23c4273092a30cfab61a5a99d6f9ca1425a3aeb8720ce
MD5 878711016605666d58bffb15c38bc6a0
BLAKE2b-256 7cbffba267f279cdb6748cd0c176a3ea626d1419a0bfc79968ad1c3060cc3a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ae01d7202bf61acfe49a57af821615a85ed9eea83ef7c7d43bf2324d8279d1
MD5 988b321f61367453c915057134cd03ce
BLAKE2b-256 90f725e5125a09d3b6328b8868cf34a16c135e8339a7a8d0b2560446af13adc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c0b20fd2a7e38106690e5bb3f1cc93f2d4f2e519fb2cecce1c9d77894b4b8e3
MD5 3e14ca55e5f1517ee4ac1801ff773cd2
BLAKE2b-256 5a487b7c7c8f0b366c93c49a55c320da1bf6373f56a36f18976708c2bca0dc04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f62fffb4dfc2b5d757fe804611c0ee46f6b47b0cea4d568d5896060606c4cb35
MD5 5e848fa9944249a3f32acd359e9c13ce
BLAKE2b-256 f6a8c8627a6d0ed24e211343f105285fc8095ed6e85d5c8d2400c25e09128740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-1.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e34486886788e65bfb611363ea81eddd60cb057badf2c0b86898e482c153a00
MD5 f9dd42ad124c20780b7560177fd59561
BLAKE2b-256 5b5b9cc251540576f74b41e9e26327fcb511fca144e87832a4cf663a1ad032b3

See more details on using hashes here.

Provenance

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