mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
* add htlc files * refactor mint into several components * add hash lock signatures * add refund signature checks * simplify hash lock signature check * clean up
9 lines
160 B
Python
9 lines
160 B
Python
from typing import Protocol
|
|
|
|
from ..core.base import MintKeyset, MintKeysets
|
|
|
|
|
|
class SupportsKeysets(Protocol):
|
|
keyset: MintKeyset
|
|
keysets: MintKeysets
|