mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-21 16:14:23 +01:00
And no longer insist on opt_quiesce. Changelog-EXPERIMENTAL: Config: `--experimental-upgrade-protocol` enables simple channel upgrades. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 KiB
16 KiB
| 1 | msgtype,init,16 |
|---|---|
| 2 | msgdata,init,gflen,u16, |
| 3 | msgdata,init,globalfeatures,byte,gflen |
| 4 | msgdata,init,flen,u16, |
| 5 | msgdata,init,features,byte,flen |
| 6 | msgdata,init,tlvs,init_tlvs, |
| 7 | tlvtype,init_tlvs,networks,1 |
| 8 | tlvdata,init_tlvs,networks,chains,chain_hash,... |
| 9 | tlvtype,init_tlvs,remote_addr,3 |
| 10 | tlvdata,init_tlvs,remote_addr,data,byte,... |
| 11 | msgtype,error,17 |
| 12 | msgdata,error,channel_id,channel_id, |
| 13 | msgdata,error,len,u16, |
| 14 | msgdata,error,data,byte,len |
| 15 | msgtype,warning,1 |
| 16 | msgdata,warning,channel_id,channel_id, |
| 17 | msgdata,warning,len,u16, |
| 18 | msgdata,warning,data,byte,len |
| 19 | msgtype,ping,18 |
| 20 | msgdata,ping,num_pong_bytes,u16, |
| 21 | msgdata,ping,byteslen,u16, |
| 22 | msgdata,ping,ignored,byte,byteslen |
| 23 | msgtype,pong,19 |
| 24 | msgdata,pong,byteslen,u16, |
| 25 | msgdata,pong,ignored,byte,byteslen |
| 26 | tlvtype,n1,tlv1,1 |
| 27 | tlvdata,n1,tlv1,amount_msat,tu64, |
| 28 | tlvtype,n1,tlv2,2 |
| 29 | tlvdata,n1,tlv2,scid,short_channel_id, |
| 30 | tlvtype,n1,tlv3,3 |
| 31 | tlvdata,n1,tlv3,node_id,point, |
| 32 | tlvdata,n1,tlv3,amount_msat_1,u64, |
| 33 | tlvdata,n1,tlv3,amount_msat_2,u64, |
| 34 | tlvtype,n1,tlv4,254 |
| 35 | tlvdata,n1,tlv4,cltv_delta,u16, |
| 36 | tlvtype,n2,tlv1,0 |
| 37 | tlvdata,n2,tlv1,amount_msat,tu64, |
| 38 | tlvtype,n2,tlv2,11 |
| 39 | tlvdata,n2,tlv2,cltv_expiry,tu32, |
| 40 | msgtype,tx_add_input,66 |
| 41 | msgdata,tx_add_input,channel_id,channel_id, |
| 42 | msgdata,tx_add_input,serial_id,u64, |
| 43 | msgdata,tx_add_input,prevtx_len,u16, |
| 44 | msgdata,tx_add_input,prevtx,byte,prevtx_len |
| 45 | msgdata,tx_add_input,prevtx_vout,u32, |
| 46 | msgdata,tx_add_input,sequence,u32, |
| 47 | msgtype,tx_add_output,67 |
| 48 | msgdata,tx_add_output,channel_id,channel_id, |
| 49 | msgdata,tx_add_output,serial_id,u64, |
| 50 | msgdata,tx_add_output,sats,u64, |
| 51 | msgdata,tx_add_output,scriptlen,u16, |
| 52 | msgdata,tx_add_output,script,byte,scriptlen |
| 53 | msgtype,tx_remove_input,68 |
| 54 | msgdata,tx_remove_input,channel_id,channel_id, |
| 55 | msgdata,tx_remove_input,serial_id,u64, |
| 56 | msgtype,tx_remove_output,69 |
| 57 | msgdata,tx_remove_output,channel_id,channel_id, |
| 58 | msgdata,tx_remove_output,serial_id,u64, |
| 59 | msgtype,tx_complete,70 |
| 60 | msgdata,tx_complete,channel_id,channel_id, |
| 61 | msgtype,tx_signatures,71 |
| 62 | msgdata,tx_signatures,channel_id,channel_id, |
| 63 | msgdata,tx_signatures,txid,sha256, |
| 64 | msgdata,tx_signatures,num_witnesses,u16, |
| 65 | msgdata,tx_signatures,witnesses,witness_stack,num_witnesses |
| 66 | subtype,witness_stack |
| 67 | subtypedata,witness_stack,num_witness_elements,u16, |
| 68 | subtypedata,witness_stack,witness_elements,witness_element,num_witness_elements |
| 69 | subtype,witness_element |
| 70 | subtypedata,witness_element,len,u16, |
| 71 | subtypedata,witness_element,witness_data,byte,len |
| 72 | msgtype,tx_init_rbf,72 |
| 73 | msgdata,tx_init_rbf,channel_id,channel_id, |
| 74 | msgdata,tx_init_rbf,locktime,u32, |
| 75 | msgdata,tx_init_rbf,feerate,u32, |
| 76 | msgdata,tx_init_rbf,tlvs,tx_init_rbf_tlvs, |
| 77 | tlvtype,tx_init_rbf_tlvs,funding_output_contribution,0 |
| 78 | tlvdata,tx_init_rbf_tlvs,funding_output_contribution,satoshis,tu64, |
| 79 | msgtype,tx_ack_rbf,73 |
| 80 | msgdata,tx_ack_rbf,channel_id,channel_id, |
| 81 | msgdata,tx_ack_rbf,tlvs,tx_ack_rbf_tlvs, |
| 82 | tlvtype,tx_ack_rbf_tlvs,funding_output_contribution,0 |
| 83 | tlvdata,tx_ack_rbf_tlvs,funding_output_contribution,satoshis,tu64, |
| 84 | msgtype,tx_abort,74 |
| 85 | msgdata,tx_abort,channel_id,channel_id, |
| 86 | msgdata,tx_abort,len,u16, |
| 87 | msgdata,tx_abort,data,byte,len |
| 88 | msgtype,open_channel,32 |
| 89 | msgdata,open_channel,chain_hash,chain_hash, |
| 90 | msgdata,open_channel,temporary_channel_id,byte,32 |
| 91 | msgdata,open_channel,funding_satoshis,u64, |
| 92 | msgdata,open_channel,push_msat,u64, |
| 93 | msgdata,open_channel,dust_limit_satoshis,u64, |
| 94 | msgdata,open_channel,max_htlc_value_in_flight_msat,u64, |
| 95 | msgdata,open_channel,channel_reserve_satoshis,u64, |
| 96 | msgdata,open_channel,htlc_minimum_msat,u64, |
| 97 | msgdata,open_channel,feerate_per_kw,u32, |
| 98 | msgdata,open_channel,to_self_delay,u16, |
| 99 | msgdata,open_channel,max_accepted_htlcs,u16, |
| 100 | msgdata,open_channel,funding_pubkey,point, |
| 101 | msgdata,open_channel,revocation_basepoint,point, |
| 102 | msgdata,open_channel,payment_basepoint,point, |
| 103 | msgdata,open_channel,delayed_payment_basepoint,point, |
| 104 | msgdata,open_channel,htlc_basepoint,point, |
| 105 | msgdata,open_channel,first_per_commitment_point,point, |
| 106 | msgdata,open_channel,channel_flags,byte, |
| 107 | msgdata,open_channel,tlvs,open_channel_tlvs, |
| 108 | tlvtype,open_channel_tlvs,upfront_shutdown_script,0 |
| 109 | tlvdata,open_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,... |
| 110 | tlvtype,open_channel_tlvs,channel_type,1 |
| 111 | tlvdata,open_channel_tlvs,channel_type,type,byte,... |
| 112 | msgtype,accept_channel,33 |
| 113 | msgdata,accept_channel,temporary_channel_id,byte,32 |
| 114 | msgdata,accept_channel,dust_limit_satoshis,u64, |
| 115 | msgdata,accept_channel,max_htlc_value_in_flight_msat,u64, |
| 116 | msgdata,accept_channel,channel_reserve_satoshis,u64, |
| 117 | msgdata,accept_channel,htlc_minimum_msat,u64, |
| 118 | msgdata,accept_channel,minimum_depth,u32, |
| 119 | msgdata,accept_channel,to_self_delay,u16, |
| 120 | msgdata,accept_channel,max_accepted_htlcs,u16, |
| 121 | msgdata,accept_channel,funding_pubkey,point, |
| 122 | msgdata,accept_channel,revocation_basepoint,point, |
| 123 | msgdata,accept_channel,payment_basepoint,point, |
| 124 | msgdata,accept_channel,delayed_payment_basepoint,point, |
| 125 | msgdata,accept_channel,htlc_basepoint,point, |
| 126 | msgdata,accept_channel,first_per_commitment_point,point, |
| 127 | msgdata,accept_channel,tlvs,accept_channel_tlvs, |
| 128 | tlvtype,accept_channel_tlvs,upfront_shutdown_script,0 |
| 129 | tlvdata,accept_channel_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,... |
| 130 | tlvtype,accept_channel_tlvs,channel_type,1 |
| 131 | tlvdata,accept_channel_tlvs,channel_type,type,byte,... |
| 132 | msgtype,funding_created,34 |
| 133 | msgdata,funding_created,temporary_channel_id,byte,32 |
| 134 | msgdata,funding_created,funding_txid,sha256, |
| 135 | msgdata,funding_created,funding_output_index,u16, |
| 136 | msgdata,funding_created,signature,signature, |
| 137 | msgtype,funding_signed,35 |
| 138 | msgdata,funding_signed,channel_id,channel_id, |
| 139 | msgdata,funding_signed,signature,signature, |
| 140 | msgtype,channel_ready,36 |
| 141 | msgdata,channel_ready,channel_id,channel_id, |
| 142 | msgdata,channel_ready,second_per_commitment_point,point, |
| 143 | msgdata,channel_ready,tlvs,channel_ready_tlvs, |
| 144 | tlvtype,channel_ready_tlvs,short_channel_id,1 |
| 145 | tlvdata,channel_ready_tlvs,short_channel_id,alias,short_channel_id, |
| 146 | msgtype,open_channel2,64 |
| 147 | msgdata,open_channel2,chain_hash,chain_hash, |
| 148 | msgdata,open_channel2,temporary_channel_id,channel_id, |
| 149 | msgdata,open_channel2,funding_feerate_perkw,u32, |
| 150 | msgdata,open_channel2,commitment_feerate_perkw,u32, |
| 151 | msgdata,open_channel2,funding_satoshis,u64, |
| 152 | msgdata,open_channel2,dust_limit_satoshis,u64, |
| 153 | msgdata,open_channel2,max_htlc_value_in_flight_msat,u64, |
| 154 | msgdata,open_channel2,htlc_minimum_msat,u64, |
| 155 | msgdata,open_channel2,to_self_delay,u16, |
| 156 | msgdata,open_channel2,max_accepted_htlcs,u16, |
| 157 | msgdata,open_channel2,locktime,u32, |
| 158 | msgdata,open_channel2,funding_pubkey,point, |
| 159 | msgdata,open_channel2,revocation_basepoint,point, |
| 160 | msgdata,open_channel2,payment_basepoint,point, |
| 161 | msgdata,open_channel2,delayed_payment_basepoint,point, |
| 162 | msgdata,open_channel2,htlc_basepoint,point, |
| 163 | msgdata,open_channel2,first_per_commitment_point,point, |
| 164 | msgdata,open_channel2,second_per_commitment_point,point, |
| 165 | msgdata,open_channel2,channel_flags,byte, |
| 166 | msgdata,open_channel2,tlvs,opening_tlvs, |
| 167 | tlvtype,opening_tlvs,upfront_shutdown_script,0 |
| 168 | tlvdata,opening_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,... |
| 169 | tlvtype,opening_tlvs,channel_type,1 |
| 170 | tlvdata,opening_tlvs,channel_type,type,byte,... |
| 171 | tlvtype,opening_tlvs,request_funds,3 |
| 172 | tlvdata,opening_tlvs,request_funds,requested_sats,u64, |
| 173 | tlvdata,opening_tlvs,request_funds,blockheight,u32, |
| 174 | tlvtype,opening_tlvs,require_confirmed_inputs,2 |
| 175 | msgtype,accept_channel2,65 |
| 176 | msgdata,accept_channel2,temporary_channel_id,channel_id, |
| 177 | msgdata,accept_channel2,funding_satoshis,u64, |
| 178 | msgdata,accept_channel2,dust_limit_satoshis,u64, |
| 179 | msgdata,accept_channel2,max_htlc_value_in_flight_msat,u64, |
| 180 | msgdata,accept_channel2,htlc_minimum_msat,u64, |
| 181 | msgdata,accept_channel2,minimum_depth,u32, |
| 182 | msgdata,accept_channel2,to_self_delay,u16, |
| 183 | msgdata,accept_channel2,max_accepted_htlcs,u16, |
| 184 | msgdata,accept_channel2,funding_pubkey,point, |
| 185 | msgdata,accept_channel2,revocation_basepoint,point, |
| 186 | msgdata,accept_channel2,payment_basepoint,point, |
| 187 | msgdata,accept_channel2,delayed_payment_basepoint,point, |
| 188 | msgdata,accept_channel2,htlc_basepoint,point, |
| 189 | msgdata,accept_channel2,first_per_commitment_point,point, |
| 190 | msgdata,accept_channel2,second_per_commitment_point,point, |
| 191 | msgdata,accept_channel2,tlvs,accept_tlvs, |
| 192 | tlvtype,accept_tlvs,upfront_shutdown_script,0 |
| 193 | tlvdata,accept_tlvs,upfront_shutdown_script,shutdown_scriptpubkey,byte,... |
| 194 | tlvtype,accept_tlvs,channel_type,1 |
| 195 | tlvdata,accept_tlvs,channel_type,type,byte,... |
| 196 | tlvtype,accept_tlvs,require_confirmed_inputs,2 |
| 197 | tlvtype,accept_tlvs,will_fund,3 |
| 198 | tlvdata,accept_tlvs,will_fund,signature,signature, |
| 199 | tlvdata,accept_tlvs,will_fund,lease_rates,lease_rates, |
| 200 | subtype,lease_rates |
| 201 | subtypedata,lease_rates,funding_weight,u16, |
| 202 | subtypedata,lease_rates,lease_fee_basis,u16, |
| 203 | subtypedata,lease_rates,channel_fee_max_proportional_thousandths,u16, |
| 204 | subtypedata,lease_rates,lease_fee_base_sat,u32, |
| 205 | subtypedata,lease_rates,channel_fee_max_base_msat,tu32, |
| 206 | msgtype,stfu,2 |
| 207 | msgdata,stfu,channel_id,channel_id, |
| 208 | msgdata,stfu,initiator,u8, |
| 209 | msgtype,shutdown,38 |
| 210 | msgdata,shutdown,channel_id,channel_id, |
| 211 | msgdata,shutdown,len,u16, |
| 212 | msgdata,shutdown,scriptpubkey,byte,len |
| 213 | msgdata,shutdown,tlvs,shutdown_tlvs, |
| 214 | tlvtype,shutdown_tlvs,wrong_funding,100 |
| 215 | tlvdata,shutdown_tlvs,wrong_funding,txid,sha256, |
| 216 | tlvdata,shutdown_tlvs,wrong_funding,outnum,u32, |
| 217 | msgtype,closing_signed,39 |
| 218 | msgdata,closing_signed,channel_id,channel_id, |
| 219 | msgdata,closing_signed,fee_satoshis,u64, |
| 220 | msgdata,closing_signed,signature,signature, |
| 221 | msgdata,closing_signed,tlvs,closing_signed_tlvs, |
| 222 | tlvtype,closing_signed_tlvs,fee_range,1 |
| 223 | tlvdata,closing_signed_tlvs,fee_range,min_fee_satoshis,u64, |
| 224 | tlvdata,closing_signed_tlvs,fee_range,max_fee_satoshis,u64, |
| 225 | msgtype,update_add_htlc,128 |
| 226 | msgdata,update_add_htlc,channel_id,channel_id, |
| 227 | msgdata,update_add_htlc,id,u64, |
| 228 | msgdata,update_add_htlc,amount_msat,u64, |
| 229 | msgdata,update_add_htlc,payment_hash,sha256, |
| 230 | msgdata,update_add_htlc,cltv_expiry,u32, |
| 231 | msgdata,update_add_htlc,onion_routing_packet,byte,1366 |
| 232 | tlvtype,update_add_htlc_tlvs,blinding_point,0 |
| 233 | tlvdata,update_add_htlc_tlvs,blinding_point,blinding,point, |
| 234 | msgtype,update_fulfill_htlc,130 |
| 235 | msgdata,update_fulfill_htlc,channel_id,channel_id, |
| 236 | msgdata,update_fulfill_htlc,id,u64, |
| 237 | msgdata,update_fulfill_htlc,payment_preimage,byte,32 |
| 238 | msgtype,update_fail_htlc,131 |
| 239 | msgdata,update_fail_htlc,channel_id,channel_id, |
| 240 | msgdata,update_fail_htlc,id,u64, |
| 241 | msgdata,update_fail_htlc,len,u16, |
| 242 | msgdata,update_fail_htlc,reason,byte,len |
| 243 | msgtype,update_fail_malformed_htlc,135 |
| 244 | msgdata,update_fail_malformed_htlc,channel_id,channel_id, |
| 245 | msgdata,update_fail_malformed_htlc,id,u64, |
| 246 | msgdata,update_fail_malformed_htlc,sha256_of_onion,sha256, |
| 247 | msgdata,update_fail_malformed_htlc,failure_code,u16, |
| 248 | msgtype,commitment_signed,132 |
| 249 | msgdata,commitment_signed,channel_id,channel_id, |
| 250 | msgdata,commitment_signed,signature,signature, |
| 251 | msgdata,commitment_signed,num_htlcs,u16, |
| 252 | msgdata,commitment_signed,htlc_signature,signature,num_htlcs |
| 253 | msgtype,revoke_and_ack,133 |
| 254 | msgdata,revoke_and_ack,channel_id,channel_id, |
| 255 | msgdata,revoke_and_ack,per_commitment_secret,byte,32 |
| 256 | msgdata,revoke_and_ack,next_per_commitment_point,point, |
| 257 | msgtype,update_fee,134 |
| 258 | msgdata,update_fee,channel_id,channel_id, |
| 259 | msgdata,update_fee,feerate_per_kw,u32, |
| 260 | msgtype,update_blockheight,137 |
| 261 | msgdata,update_blockheight,channel_id,channel_id, |
| 262 | msgdata,update_blockheight,blockheight,u32, |
| 263 | msgtype,channel_reestablish,136 |
| 264 | msgdata,channel_reestablish,channel_id,channel_id, |
| 265 | msgdata,channel_reestablish,next_commitment_number,u64, |
| 266 | msgdata,channel_reestablish,next_revocation_number,u64, |
| 267 | msgdata,channel_reestablish,your_last_per_commitment_secret,byte,32 |
| 268 | msgdata,channel_reestablish,my_current_per_commitment_point,point, |
| 269 | msgdata,channel_reestablish,tlvs,channel_reestablish_tlvs, |
| 270 | tlvtype,channel_reestablish_tlvs,next_to_send,1 |
| 271 | tlvdata,channel_reestablish_tlvs,next_to_send,commitment_number,tu64, |
| 272 | tlvtype,channel_reestablish_tlvs,desired_channel_type,3 |
| 273 | tlvdata,channel_reestablish_tlvs,desired_channel_type,type,byte,... |
| 274 | tlvtype,channel_reestablish_tlvs,current_channel_type,5 |
| 275 | tlvdata,channel_reestablish_tlvs,current_channel_type,type,byte,... |
| 276 | tlvtype,channel_reestablish_tlvs,upgradable_channel_type,7 |
| 277 | tlvdata,channel_reestablish_tlvs,upgradable_channel_type,type,byte,... |
| 278 | msgtype,peer_storage,7 |
| 279 | msgdata,peer_storage,len,u16, |
| 280 | msgdata,peer_storage,blob,byte,len |
| 281 | msgtype,your_peer_storage,9 |
| 282 | msgdata,your_peer_storage,len,u16, |
| 283 | msgdata,your_peer_storage,blob,byte,len |
| 284 | msgtype,announcement_signatures,259 |
| 285 | msgdata,announcement_signatures,channel_id,channel_id, |
| 286 | msgdata,announcement_signatures,short_channel_id,short_channel_id, |
| 287 | msgdata,announcement_signatures,node_signature,signature, |
| 288 | msgdata,announcement_signatures,bitcoin_signature,signature, |
| 289 | msgtype,channel_announcement,256 |
| 290 | msgdata,channel_announcement,node_signature_1,signature, |
| 291 | msgdata,channel_announcement,node_signature_2,signature, |
| 292 | msgdata,channel_announcement,bitcoin_signature_1,signature, |
| 293 | msgdata,channel_announcement,bitcoin_signature_2,signature, |
| 294 | msgdata,channel_announcement,len,u16, |
| 295 | msgdata,channel_announcement,features,byte,len |
| 296 | msgdata,channel_announcement,chain_hash,chain_hash, |
| 297 | msgdata,channel_announcement,short_channel_id,short_channel_id, |
| 298 | msgdata,channel_announcement,node_id_1,point, |
| 299 | msgdata,channel_announcement,node_id_2,point, |
| 300 | msgdata,channel_announcement,bitcoin_key_1,point, |
| 301 | msgdata,channel_announcement,bitcoin_key_2,point, |
| 302 | msgtype,node_announcement,257 |
| 303 | msgdata,node_announcement,signature,signature, |
| 304 | msgdata,node_announcement,flen,u16, |
| 305 | msgdata,node_announcement,features,byte,flen |
| 306 | msgdata,node_announcement,timestamp,u32, |
| 307 | msgdata,node_announcement,node_id,point, |
| 308 | msgdata,node_announcement,rgb_color,byte,3 |
| 309 | msgdata,node_announcement,alias,byte,32 |
| 310 | msgdata,node_announcement,addrlen,u16, |
| 311 | msgdata,node_announcement,addresses,byte,addrlen |
| 312 | msgdata,node_announcement,tlvs,node_ann_tlvs, |
| 313 | tlvtype,node_ann_tlvs,option_will_fund,1 |
| 314 | tlvdata,node_ann_tlvs,option_will_fund,lease_rates,lease_rates, |
| 315 | msgtype,channel_update,258 |
| 316 | msgdata,channel_update,signature,signature, |
| 317 | msgdata,channel_update,chain_hash,chain_hash, |
| 318 | msgdata,channel_update,short_channel_id,short_channel_id, |
| 319 | msgdata,channel_update,timestamp,u32, |
| 320 | msgdata,channel_update,message_flags,byte, |
| 321 | msgdata,channel_update,channel_flags,byte, |
| 322 | msgdata,channel_update,cltv_expiry_delta,u16, |
| 323 | msgdata,channel_update,htlc_minimum_msat,u64, |
| 324 | msgdata,channel_update,fee_base_msat,u32, |
| 325 | msgdata,channel_update,fee_proportional_millionths,u32, |
| 326 | msgdata,channel_update,htlc_maximum_msat,u64, |
| 327 | msgtype,query_short_channel_ids,261,gossip_queries |
| 328 | msgdata,query_short_channel_ids,chain_hash,chain_hash, |
| 329 | msgdata,query_short_channel_ids,len,u16, |
| 330 | msgdata,query_short_channel_ids,encoded_short_ids,byte,len |
| 331 | msgdata,query_short_channel_ids,tlvs,query_short_channel_ids_tlvs, |
| 332 | tlvtype,query_short_channel_ids_tlvs,query_flags,1 |
| 333 | tlvdata,query_short_channel_ids_tlvs,query_flags,encoding_type,byte, |
| 334 | tlvdata,query_short_channel_ids_tlvs,query_flags,encoded_query_flags,byte,... |
| 335 | msgtype,reply_short_channel_ids_end,262,gossip_queries |
| 336 | msgdata,reply_short_channel_ids_end,chain_hash,chain_hash, |
| 337 | msgdata,reply_short_channel_ids_end,full_information,byte, |
| 338 | msgtype,query_channel_range,263,gossip_queries |
| 339 | msgdata,query_channel_range,chain_hash,chain_hash, |
| 340 | msgdata,query_channel_range,first_blocknum,u32, |
| 341 | msgdata,query_channel_range,number_of_blocks,u32, |
| 342 | msgdata,query_channel_range,tlvs,query_channel_range_tlvs, |
| 343 | tlvtype,query_channel_range_tlvs,query_option,1 |
| 344 | tlvdata,query_channel_range_tlvs,query_option,query_option_flags,bigsize, |
| 345 | msgtype,reply_channel_range,264,gossip_queries |
| 346 | msgdata,reply_channel_range,chain_hash,chain_hash, |
| 347 | msgdata,reply_channel_range,first_blocknum,u32, |
| 348 | msgdata,reply_channel_range,number_of_blocks,u32, |
| 349 | msgdata,reply_channel_range,sync_complete,byte, |
| 350 | msgdata,reply_channel_range,len,u16, |
| 351 | msgdata,reply_channel_range,encoded_short_ids,byte,len |
| 352 | msgdata,reply_channel_range,tlvs,reply_channel_range_tlvs, |
| 353 | tlvtype,reply_channel_range_tlvs,timestamps_tlv,1 |
| 354 | tlvdata,reply_channel_range_tlvs,timestamps_tlv,encoding_type,byte, |
| 355 | tlvdata,reply_channel_range_tlvs,timestamps_tlv,encoded_timestamps,byte,... |
| 356 | tlvtype,reply_channel_range_tlvs,checksums_tlv,3 |
| 357 | tlvdata,reply_channel_range_tlvs,checksums_tlv,checksums,channel_update_checksums,... |
| 358 | subtype,channel_update_timestamps |
| 359 | subtypedata,channel_update_timestamps,timestamp_node_id_1,u32, |
| 360 | subtypedata,channel_update_timestamps,timestamp_node_id_2,u32, |
| 361 | subtype,channel_update_checksums |
| 362 | subtypedata,channel_update_checksums,checksum_node_id_1,u32, |
| 363 | subtypedata,channel_update_checksums,checksum_node_id_2,u32, |
| 364 | msgtype,gossip_timestamp_filter,265,gossip_queries |
| 365 | msgdata,gossip_timestamp_filter,chain_hash,chain_hash, |
| 366 | msgdata,gossip_timestamp_filter,first_timestamp,u32, |
| 367 | msgdata,gossip_timestamp_filter,timestamp_range,u32, |
| 368 | msgtype,onion_message,513,option_onion_messages |
| 369 | msgdata,onion_message,blinding,point, |
| 370 | msgdata,onion_message,len,u16, |
| 371 | msgdata,onion_message,onionmsg,byte,len |