Skip to content

Commit fcf6c8f

Browse files
committedMar 16, 2023
Fixed legacy serialization for implicit chainId transactions (#3898, #3899).
1 parent 3ad4273 commit fcf6c8f

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed
 

‎src.ts/crypto/signing-key.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ export class SigningKey {
181181
const der = secp256k1.Signature.fromCompact(getBytesCopy(concat([ sig.r, sig.s ]))).toDERRawBytes();
182182

183183
const pubKey = secp256k1.recoverPublicKey(getBytesCopy(digest), der, sig.yParity);
184-
if (pubKey != null) { return hexlify(pubKey); }
184+
assertArgument(pubKey != null, "invalid signautre for digest", "signature", signature);
185185

186-
assertArgument(false, "invalid signautre for digest", "signature", signature);
186+
return hexlify(pubKey);
187187
}
188188

189189
/**

‎src.ts/transaction/transaction.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
191191
];
192192

193193
let chainId = BN_0;
194-
if (tx.chainId != null) {
194+
if (tx.chainId != BN_0) {
195195
// A chainId was provided; if non-zero we'll use EIP-155
196196
chainId = getBigInt(tx.chainId, "tx.chainId");
197197

@@ -200,9 +200,9 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
200200
assertArgument(!sig || sig.networkV == null || sig.legacyChainId === chainId,
201201
"tx.chainId/sig.v mismatch", "sig", sig);
202202

203-
} else if (sig) {
204-
// No chainId provided, but the signature is signing with EIP-155; derive chainId
205-
const legacy = sig.legacyChainId;
203+
} else if (tx.signature) {
204+
// No explicit chainId, but EIP-155 have a derived implicit chainId
205+
const legacy = tx.signature.legacyChainId;
206206
if (legacy != null) { chainId = legacy; }
207207
}
208208

@@ -218,14 +218,19 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
218218
return encodeRlp(fields);
219219
}
220220

221-
// We pushed a chainId and null r, s on for hashing only; remove those
221+
// @TODO: We should probably check that tx.signature, chainId, and sig
222+
// match but that logic could break existing code, so schedule
223+
// this for the next major bump.
224+
225+
// Compute the EIP-155 v
222226
let v = BigInt(27 + sig.yParity);
223227
if (chainId !== BN_0) {
224228
v = Signature.getChainIdV(chainId, sig.v);
225229
} else if (BigInt(sig.v) !== v) {
226230
assertArgument(false, "tx.chainId/sig.v mismatch", "sig", sig);
227231
}
228232

233+
// Add the signature
229234
fields.push(toBeArray(v));
230235
fields.push(toBeArray(sig.r));
231236
fields.push(toBeArray(sig.s));

0 commit comments

Comments
 (0)
Please sign in to comment.