Open-source 2-of-3 policy-enforced threshold HSM: auto-signs cold→hot treasury refills under on-device Coldcard policy, no human in the loop. Includes the full operator manual + quick-start, the reference coordinator/signing code, and a signer-host bootstrap. No keys, seeds, or secrets — placeholders only. Live signet demo: https://multisighsm.mineracks.com Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
7 lines
367 B
Python
7 lines
367 B
Python
from ckcc.client import ColdcardDevice
|
|
for n in (1,2,3):
|
|
d=ColdcardDevice(sn='/tmp/cksim-%d.sock'%n)
|
|
d.send_recv(b'EXEC'+b"settings.put('hsmcmd', True); settings.save(); RV.write('ok')", encrypt=False)
|
|
r=d.send_recv(b'EVAL'+b"settings.get('hsmcmd', False)")
|
|
print('sim%d hsmcmd=%s'%(n, (r.decode() if isinstance(r,(bytes,bytearray)) else r).strip()))
|