{"library":"slip10","title":"python-slip10","description":"A reference implementation of the SLIP-0010 specification that generalizes BIP-0032 hierarchical deterministic wallet derivation for curves secp256k1, NIST P-256, ed25519, and curve25519. Current version 1.1.0, stable maintenance.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install slip10"],"cli":null},"imports":["from slip10 import derive_node"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from slip10 import derive_node\nfrom slip10 import BIP32Curve\n\n# BIP-32 test vector for secp256k1\nseed = bytes.fromhex('000102030405060708090a0b0c0d0e0f')\nchain_code, private_key, public_key = derive_node(\n    seed,\n    path=[44 | 0x80000000, 0 | 0x80000000],\n    curve=BIP32Curve.SECP256K1\n)\nprint(private_key.hex())\nprint(public_key.hex())","lang":"python","description":"Derive a hierarchical deterministic node from a seed.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}