|
| 1 | +csv = [ |
| 2 | + "msgtype,open_channel,32", |
| 3 | + "msgdata,open_channel,chain_hash,chain_hash,", |
| 4 | + "msgdata,open_channel,temporary_channel_id,byte,32", |
| 5 | + "msgdata,open_channel,funding_satoshis,u64,", |
| 6 | + "msgdata,open_channel,push_msat,u64,", |
| 7 | + "msgdata,open_channel,dust_limit_satoshis,u64,", |
| 8 | + "msgdata,open_channel,max_htlc_value_in_flight_msat,u64,", |
| 9 | + "msgdata,open_channel,channel_reserve_satoshis,u64,", |
| 10 | + "msgdata,open_channel,htlc_minimum_msat,u64,", |
| 11 | + "msgdata,open_channel,feerate_per_kw,u32,", |
| 12 | + "msgdata,open_channel,to_self_delay,u16,", |
| 13 | + "msgdata,open_channel,max_accepted_htlcs,u16,", |
| 14 | + "msgdata,open_channel,funding_pubkey,point,", |
| 15 | + "msgdata,open_channel,revocation_basepoint,point,", |
| 16 | + "msgdata,open_channel,payment_basepoint,point,", |
| 17 | + "msgdata,open_channel,delayed_payment_basepoint,point,", |
| 18 | + "msgdata,open_channel,htlc_basepoint,point,", |
| 19 | + "msgdata,open_channel,first_per_commitment_point,point,", |
| 20 | + "msgdata,open_channel,channel_flags,byte,", |
| 21 | + "msgdata,open_channel,tlvs,open_channel_tlvs,", |
| 22 | + "tlvtype,open_channel_tlvs,upfront_shutdown_script,0", |
| 23 | + "tlvdata,open_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...", |
| 24 | + "msgtype,accept_channel,33", |
| 25 | + "msgdata,accept_channel,temporary_channel_id,byte,32", |
| 26 | + "msgdata,accept_channel,dust_limit_satoshis,u64,", |
| 27 | + "msgdata,accept_channel,max_htlc_value_in_flight_msat,u64,", |
| 28 | + "msgdata,accept_channel,channel_reserve_satoshis,u64,", |
| 29 | + "msgdata,accept_channel,htlc_minimum_msat,u64,", |
| 30 | + "msgdata,accept_channel,minimum_depth,u32,", |
| 31 | + "msgdata,accept_channel,to_self_delay,u16,", |
| 32 | + "msgdata,accept_channel,max_accepted_htlcs,u16,", |
| 33 | + "msgdata,accept_channel,funding_pubkey,point,", |
| 34 | + "msgdata,accept_channel,revocation_basepoint,point,", |
| 35 | + "msgdata,accept_channel,payment_basepoint,point,", |
| 36 | + "msgdata,accept_channel,delayed_payment_basepoint,point,", |
| 37 | + "msgdata,accept_channel,htlc_basepoint,point,", |
| 38 | + "msgdata,accept_channel,first_per_commitment_point,point,", |
| 39 | + "msgdata,accept_channel,tlvs,accept_channel_tlvs,", |
| 40 | + "tlvtype,accept_channel_tlvs,upfront_shutdown_script,0", |
| 41 | + "tlvdata,accept_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,...", |
| 42 | + "msgtype,funding_created,34", |
| 43 | + "msgdata,funding_created,temporary_channel_id,byte,32", |
| 44 | + "msgdata,funding_created,funding_txid,sha256,", |
| 45 | + "msgdata,funding_created,funding_output_index,u16,", |
| 46 | + "msgdata,funding_created,signature,signature,", |
| 47 | + "msgtype,funding_signed,35", |
| 48 | + "msgdata,funding_signed,channel_id,channel_id,", |
| 49 | + "msgdata,funding_signed,signature,signature,", |
| 50 | + "msgtype,funding_locked,36", |
| 51 | + "msgdata,funding_locked,channel_id,channel_id,", |
| 52 | + "msgdata,funding_locked,next_per_commitment_point,point,", |
| 53 | + "msgtype,shutdown,38", |
| 54 | + "msgdata,shutdown,channel_id,channel_id,", |
| 55 | + "msgdata,shutdown,len,u16,", |
| 56 | + "msgdata,shutdown,scriptpubkey,byte,len", |
| 57 | + "msgtype,closing_signed,39", |
| 58 | + "msgdata,closing_signed,channel_id,channel_id,", |
| 59 | + "msgdata,closing_signed,fee_satoshis,u64,", |
| 60 | + "msgdata,closing_signed,signature,signature,", |
| 61 | + "msgtype,update_add_htlc,128", |
| 62 | + "msgdata,update_add_htlc,channel_id,channel_id,", |
| 63 | + "msgdata,update_add_htlc,id,u64,", |
| 64 | + "msgdata,update_add_htlc,amount_msat,u64,", |
| 65 | + "msgdata,update_add_htlc,payment_hash,sha256,", |
| 66 | + "msgdata,update_add_htlc,cltv_expiry,u32,", |
| 67 | + "msgdata,update_add_htlc,onion_routing_packet,byte,1366", |
| 68 | + "msgtype,update_fulfill_htlc,130", |
| 69 | + "msgdata,update_fulfill_htlc,channel_id,channel_id,", |
| 70 | + "msgdata,update_fulfill_htlc,id,u64,", |
| 71 | + "msgdata,update_fulfill_htlc,payment_preimage,byte,32", |
| 72 | + "msgtype,update_fail_htlc,131", |
| 73 | + "msgdata,update_fail_htlc,channel_id,channel_id,", |
| 74 | + "msgdata,update_fail_htlc,id,u64,", |
| 75 | + "msgdata,update_fail_htlc,len,u16,", |
| 76 | + "msgdata,update_fail_htlc,reason,byte,len", |
| 77 | + "msgtype,update_fail_malformed_htlc,135", |
| 78 | + "msgdata,update_fail_malformed_htlc,channel_id,channel_id,", |
| 79 | + "msgdata,update_fail_malformed_htlc,id,u64,", |
| 80 | + "msgdata,update_fail_malformed_htlc,sha256_of_onion,sha256,", |
| 81 | + "msgdata,update_fail_malformed_htlc,failure_code,u16,", |
| 82 | + "msgtype,commitment_signed,132", |
| 83 | + "msgdata,commitment_signed,channel_id,channel_id,", |
| 84 | + "msgdata,commitment_signed,signature,signature,", |
| 85 | + "msgdata,commitment_signed,num_htlcs,u16,", |
| 86 | + "msgdata,commitment_signed,htlc_signature,signature,num_htlcs", |
| 87 | + "msgtype,revoke_and_ack,133", |
| 88 | + "msgdata,revoke_and_ack,channel_id,channel_id,", |
| 89 | + "msgdata,revoke_and_ack,per_commitment_secret,byte,32", |
| 90 | + "msgdata,revoke_and_ack,next_per_commitment_point,point,", |
| 91 | + "msgtype,update_fee,134", |
| 92 | + "msgdata,update_fee,channel_id,channel_id,", |
| 93 | + "msgdata,update_fee,feerate_per_kw,u32,", |
| 94 | + "msgtype,channel_reestablish,136", |
| 95 | + "msgdata,channel_reestablish,channel_id,channel_id,", |
| 96 | + "msgdata,channel_reestablish,next_commitment_number,u64,", |
| 97 | + "msgdata,channel_reestablish,next_revocation_number,u64,", |
| 98 | + "msgdata,channel_reestablish,your_last_per_commitment_secret,byte,32", |
| 99 | + "msgdata,channel_reestablish,my_current_per_commitment_point,point,", |
| 100 | +] |
0 commit comments