Skip to main content

Python native bindings for the Open Wallet Standard

Project description

open-wallet-standard

Secure signing and wallet management for every chain. One vault, one interface — keys never leave your machine.

PyPI License: MIT

Why OWS

  • Zero key exposure. Private keys are encrypted at rest, decrypted only inside an isolated signing process. Agents and LLMs never see raw key material.
  • Every chain, one interface. EVM, Solana, Sui, Bitcoin, Cosmos, Tron, TON — all first-class. CAIP-2/CAIP-10 addressing abstracts away chain-specific details.
  • Policy before signing. A pre-signing policy engine gates every operation — spending limits, allowlists, chain restrictions — before any key is touched.
  • Built for agents. MCP server, native SDK, and CLI. 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, Sui, BTC, Cosmos, Tron, TON

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

API Reference

Function Description
create_wallet(name) Create a new wallet with addresses for all chains
import_wallet_mnemonic(name, mnemonic) Import a wallet from a BIP-39 mnemonic
import_wallet_private_key(name, chain, private_key) Import a wallet from a private key
list_wallets() List all wallets in the vault
get_wallet(name) Get details of a specific wallet
delete_wallet(name) Delete a wallet
export_wallet(name) Export a wallet's mnemonic
rename_wallet(old_name, new_name) Rename a wallet
sign_message(wallet, chain, message) Sign a message with chain-specific formatting
sign_transaction(wallet, chain, tx) Sign a raw transaction
sign_and_send(wallet, chain, tx) Sign and broadcast a transaction
generate_mnemonic() Generate a BIP-39 mnemonic phrase
derive_address(mnemonic, chain) Derive an address from a mnemonic

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'
Filecoin secp256k1 f1 base32 m/44'/461'/0'/0/0

Architecture

Agent / CLI / App
       │
       │  OWS Interface (MCP / SDK / CLI)
       ▼
┌─────────────────────┐
│    Access Layer      │     1. Agent calls ows.sign()
│  ┌────────────────┐  │     2. Policy engine evaluates
│  │ Policy Engine   │  │     3. Enclave decrypts key
│  │ (pre-signing)   │  │     4. Transaction signed
│  └───────┬────────┘  │     5. Key wiped from memory
│  ┌───────▼────────┐  │     6. Signature returned
│  │ Signing Enclave │  │
│  │ (isolated proc) │  │     The agent NEVER sees
│  └───────┬────────┘  │     the private key.
│  ┌───────▼────────┐  │
│  │  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-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

open_wallet_standard-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

open_wallet_standard-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

open_wallet_standard-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

open_wallet_standard-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

open_wallet_standard-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

open_wallet_standard-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

open_wallet_standard-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

open_wallet_standard-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

open_wallet_standard-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

open_wallet_standard-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

open_wallet_standard-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

open_wallet_standard-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

open_wallet_standard-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

open_wallet_standard-0.4.2-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

open_wallet_standard-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

open_wallet_standard-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

open_wallet_standard-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

open_wallet_standard-0.4.2-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

open_wallet_standard-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6648bae112b8ae9f1e9ceb6ea17f14a5c4e030833a2c647557902fc276249d7e
MD5 c251fa25c439e5dd4f9d05e2c292b7c9
BLAKE2b-256 12b34abe7744a0c8204534e8aef6862ef03a21f785cc4753463646d20ead4c27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14bafe1bdc7829357dcfdcdd7ea7e52935af147a87e391e4aa880a440d8feb39
MD5 d18b8d33837510fabc054af86bfa7f8c
BLAKE2b-256 76f31035ee00f2e2f292e3008f105a3d82bda18a481ea26e4dcc950169d070ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad7de4efee80f54b5cb2a8485b7bbed3c9a1824fb841c2087efb967d69e5682d
MD5 9e50b9a94f8276fb2c902f9d53733c44
BLAKE2b-256 0bce81b1620d5072b4bfbd11348f8b236e532a7c72ee30140e6cf80041eacb4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f15d38d99a74979fcc933d2571be1f9976e46a0dea3e28ee05914deb5e9ecd1a
MD5 af5e5e3b5be54b565736cfb7bb6f84fe
BLAKE2b-256 70d88f40b11c7721ede63bebed81ffd4ff916d419fbd5aca640a38362b95dfbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 715e164771043d85fc6d0a7432c775292122787c8d7f40df452d306611f84d25
MD5 88e056b66b21eba98597499a99dd939d
BLAKE2b-256 419795115786f8199e779bd3470150be537fff071565f3cc7d5fd7584706d204

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f92ea5de31250a7bf930eeac078976ae0bd2bcbdbed5c701588dcbb24121bf9
MD5 6542622852863da7e6f228a899f38875
BLAKE2b-256 1ac399d00a859ee43ac57bb1e5c69a5e08b8e2bf58c86d5ac790773c06314dcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15172c7159764e100661d725ba2b4988180fd22b4ba0583ce658d243b8fbb811
MD5 a3bed1c6ca485eafc8ab35ef4b3a84e7
BLAKE2b-256 560694ed0c07e02be849f2f37bbd08654095670af639c7c1c450ffd8963328db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3865db7a8b8c0ea1dc0f29ac653567863e97494d5b5a1fe2d6b29fb7dd317a19
MD5 16716d6f556ce4de731e0239a0952432
BLAKE2b-256 2ea37ccb39fff39b5da2eac4188142b9930886c7adc2248a6bb23a461181211e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44f5bba5558537e4543d8d309c05858f35dbc667b027272993d7203b8b8ec9a0
MD5 abcfd28f409c78903e4f6eee19fbd316
BLAKE2b-256 3496b332a2bfbd16fe9660eef2006155839914b5726fff9404358caf7f048775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84e1de6df4ee2c20a9d9a44665a9f1b6cc744ea4acdde5e584ae90264eb55ea7
MD5 d7cc45858f4cba75ba98f36174f4bbba
BLAKE2b-256 0e7f4a774fdba2aac930600cfcfc32848e4cf38fb13e1351380f8d1cdb5cb81c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af255d8b556f91d570045f08b1274c5181e3c18ab00cfb0b3d725a4cfa5be910
MD5 8b73915724121dfd5eb23efbc1aab241
BLAKE2b-256 abcf720ff3b0b2fe8f93d2659d0c9bcf8b39d9bee023e73ff23313940c5c67d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ad132dce0669364282d2ae1269be54ce0d5fa6b10b27593fdf9697db97a8a57
MD5 8d57a6e3587b202d9df65063819baf2c
BLAKE2b-256 dc32cfa5f53035a33d0aa8043bdb021454d94d10a4540cd83d2d0df5f29062ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a99aaa8f091a13fef626b0529f749088d96dd0c7982310dd6cac8490e6ca2c8b
MD5 11fb1fea43405187c0aca05ba704e190
BLAKE2b-256 cf52939f03768ee8193d90c57266bf33ec276ae9aad18bf1e3a1e899e991a230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae0ea53f78484b70eb87b471ff349705a7d57a47659ba242e701952e32294f3d
MD5 b7b340e797814c89a4891461bf5e45fe
BLAKE2b-256 6801b14a0316eeb6bc1ada199b7988162024b1333161c3a7750a3e640e4fc529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70c38a499b3f2de4b30ed91369b8bb3bdbe237045457b30db13cf69147a63714
MD5 5416d2d2f779ba2cd05f3a6cc8bae3e4
BLAKE2b-256 b50b0e22a2291cd8de9c6be20b72d5327a31501a8edff624103279bc89e796e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4626f7f805cdd5bc7b64d33061c063c9f9432235380f297c25830aa3becd190
MD5 ed416898d7863541c9b1b8fa3ce5e74b
BLAKE2b-256 bf15985e993b1548a097ee06bddcc09ff1b55c7446d0d7a43041ca3e5f0cf33e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 334c03e9267ef170e686753370fc09557e58fc1bd44d28ba41758acca5062df1
MD5 4524b545daae14c838a8e8338b80280a
BLAKE2b-256 6b541b9fc5a14eb61fc048e42e39ffafd6a94922002a6d69fbe79e7abc4c90d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90a2944f914e46408746b5f6c71c85e379d45c9d1d43c39b12a9391e815954da
MD5 9887756148e21c3e6ef40924a0dd928d
BLAKE2b-256 c9a5f452f56c4ddccfd7b24bfda3d47cbe873066166d4f5321a5288360f9705e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97b340ed2a8c5fc13ae23bf20d00823d6c6f66fa90e0e2162ae00f3317413519
MD5 cca08313a4693323f682c87efe437814
BLAKE2b-256 d37818471fda8f3b08420d8850317ab02b04597d739534888f64fc2d8f067b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for open_wallet_standard-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 666352c992d1b7fe3a0c556689cb70fb48d0309fe6d4d5a21f0e774c1874338a
MD5 27a4822bb58ade46d99c6abe4d9b8c8e
BLAKE2b-256 7c69fdcdf2051a8efbe0f5b3b27f5088fb646ebbe19a34561b29eccb4f6ca99d

See more details on using hashes here.

Provenance

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