Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | 1x 1x 1x 1x 1x 1x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 95x 57x 57x 57x 57x 146x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x | import { BufferReader, BufferWriter } from '@node-dlc/bufio';
import { BitField } from '@node-dlc/common';
import { ShortChannelId } from '@node-dlc/common';
import { shortChannelIdFromBuffer } from '@node-dlc/common';
import * as crypto from '@node-dlc/crypto';
import { ChannelFeatureFlags } from '../flags/ChannelFeatureFlags';
import { MessageType } from '../MessageType';
import { IWireMessage } from './IWireMessage';
/**
* Message contains ownership information regarding a channel.
* It ties each on-chain Bitcoin key to the associated Lightning
* node key, and vice-versa. Proviing the existance of a channel
* between node_1 and node_2 requires:
* 1. proving that the funding pays to bitcoin_key_1 and bitcoin_key_2
* 2. proving that node_1 owns bitcoin_key_1
* 3. proving that node_2 owns bitcoin_key_2
*
* This also varifies that both nodes want to announce the channel.
* The required data to perform all of these proofs is available
* in this message.
*/
export class ChannelAnnouncementMessage implements IWireMessage {
/**
* Deserializes the Buffer into a ChannelAnnouncementMessage.
*/
public static deserialize(payload: Buffer): ChannelAnnouncementMessage {
const instance = new ChannelAnnouncementMessage();
const reader = new BufferReader(payload);
reader.readUInt16BE(); // read off type
instance.nodeSignature1 = reader.readBytes(64);
instance.nodeSignature2 = reader.readBytes(64);
instance.bitcoinSignature1 = reader.readBytes(64);
instance.bitcoinSignature2 = reader.readBytes(64);
const len = reader.readUInt16BE();
instance.features = BitField.fromBuffer(reader.readBytes(len));
instance.chainHash = reader.readBytes(32);
instance.shortChannelId = shortChannelIdFromBuffer(reader.readBytes(8));
instance.nodeId1 = reader.readBytes(33);
instance.nodeId2 = reader.readBytes(33);
instance.bitcoinKey1 = reader.readBytes(33);
instance.bitcoinKey2 = reader.readBytes(33);
return instance;
}
/**
* Message hashing is after the first 258 bytes of the message
* and excludes the type and signatures. It performs a double
* sha-256 hash of the remaining bytes.
*/
public static hash(msg: ChannelAnnouncementMessage): Buffer {
const bytes = msg.serialize().slice(258);
return crypto.hash256(bytes);
}
/**
* Performs validation the message was signed by each node and the
* the corresponding bitcoin key is owned by the owner of the node.
*
* This is accomplished by:
* 1. verifying the bitcoinSignatures1/2 are validate signatures
* from bitcoinKey1/2
* 2. verifying the nodeSignature1/2 are validate signatures
* from nodeId1/2
*/
public static verifySignatures(msg: ChannelAnnouncementMessage): boolean {
const hash = ChannelAnnouncementMessage.hash(msg);
return (
crypto.verifySig(hash, msg.bitcoinSignature1, msg.bitcoinKey1) &&
crypto.verifySig(hash, msg.bitcoinSignature2, msg.bitcoinKey2) &&
crypto.verifySig(hash, msg.nodeSignature1, msg.nodeId1) &&
crypto.verifySig(hash, msg.nodeSignature2, msg.nodeId2)
);
}
/**
* The message type - 256
*/
public type: MessageType = MessageType.ChannelAnnouncement;
/**
* Validate signature from node_1 of the hash containing the
* data: features, chainHash, shortChannelId, nodeId1,
* nodeId1, bitcoinKey1, and bitcoinKey2.
*/
public nodeSignature1: Buffer;
/**
* Validate signature from node_2 of the hash containing the
* data: features, chainHash, shortChannelId, nodeId1,
* nodeId1, bitcoinKey1, and bitcoinKey2.
*/
public nodeSignature2: Buffer;
/**
* Validate signature from bitcoin_key_1 of the hash containing the
* data: features, chainHash, shortChannelId, nodeId1,
* nodeId1, bitcoinKey1, and bitcoinKey2.
*/
public bitcoinSignature1: Buffer;
/**
* Validate signature from bitcoin_key_2 of the hash containing the
* data: features, chainHash, shortChannelId, nodeId1,
* nodeId1, bitcoinKey1, and bitcoinKey2.
*/
public bitcoinSignature2: Buffer;
/**
* The channel features are a bitmask
*/
public features: BitField<ChannelFeatureFlags>;
/**
* Must set chain_hash to a 32-byte hash that uniquely identifies
* the chain that the channel opened within.
*/
public chainHash: Buffer;
/**
* ShortChannelId is a unique reference to the funding output of the
* channel.
*/
public shortChannelId: ShortChannelId;
/**
* The 33-byte compressed public key identifying the
* numerically greater of the two DER-encoded keys
* sorted in ascending numerical order.
*/
public nodeId1: Buffer;
/**
* The 33-byte compressed public key identifying the
* numerically greater of the two DER-encoded keys
* sorted in ascending numerical order.
*/
public nodeId2: Buffer;
/**
* The 33-byte compressed Bitcoin public key used by
* node_id_1 to create the funding transaction.
*/
public bitcoinKey1: Buffer;
/**
* The 33-byte compressed Bitcoin public key used by
* node_id_2 to create the funding transaction.
*/
public bitcoinKey2: Buffer;
/**
* Serializes the intancee into a Buffer suitable
* for wire transport
*/
public serialize(): Buffer {
const featuresBuffer = this.features.toBuffer();
const featuresLen = featuresBuffer.length;
const len =
2 + // type
64 + // node_signature_1
64 + // node_signature_2
64 + // bitcoin_signature_1
64 + // bitcoin_signature_2
2 + // len
featuresLen +
32 + // chain_hash
8 + // short_channel_id
33 + // node_id_1
33 + // node_id_2
33 + // bitcoin_key_1
33; // bitcoin_key_2
const writer = new BufferWriter(Buffer.alloc(len));
writer.writeUInt16BE(this.type);
writer.writeBytes(this.nodeSignature1);
writer.writeBytes(this.nodeSignature2);
writer.writeBytes(this.bitcoinSignature1);
writer.writeBytes(this.bitcoinSignature2);
writer.writeUInt16BE(featuresLen);
Iif (featuresLen > 0) writer.writeBytes(featuresBuffer);
writer.writeBytes(this.chainHash);
writer.writeBytes(this.shortChannelId.toBuffer());
writer.writeBytes(this.nodeId1);
writer.writeBytes(this.nodeId2);
writer.writeBytes(this.bitcoinKey1);
writer.writeBytes(this.bitcoinKey2);
return writer.toBuffer();
}
}
|