mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-20 13:28:20 +02:00
21 lines
392 B
Python
21 lines
392 B
Python
from collections import namedtuple
|
|
|
|
Offer = namedtuple(
|
|
"Offer",
|
|
[
|
|
"offer_id",
|
|
"squeak_hash",
|
|
"key_cipher",
|
|
"iv",
|
|
"price_msat",
|
|
"payment_hash",
|
|
"invoice_timestamp",
|
|
"invoice_expiry",
|
|
"payment_request",
|
|
"destination",
|
|
"node_host",
|
|
"node_port",
|
|
"proof",
|
|
"peer_id",
|
|
],
|
|
)
|