Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/bitcoin-wallet-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Ensure certain errors are stringified correctly ([#179](https://github.com/MetaMask/internal-snaps/pull/179))
- Keep the template output order when filling a PSBT ([#157](https://github.com/MetaMask/internal-snaps/pull/157))
- A template output belonging to the wallet is now only used as the drain output when it is the last output. Previously any such output was moved to the end of the transaction, silently reordering templates that place change before another output.
- Filling a PSBT now fails with a `ValidationError` when the built transaction does not reproduce every template output, at its original index, with its original value. The drain output is exempt from the value check, since it absorbs the remaining balance by design. Only a single appended output is tolerated, and it has to belong to the wallet. Previously only the output count was compared, so a divergent transaction could be signed and broadcast.

## [2.0.1]

Expand Down
2 changes: 1 addition & 1 deletion packages/bitcoin-wallet-snap/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/internal-snaps.git"
},
"source": {
"shasum": "sYefpN30aR0fb7v2DtdJ+jNFSnJJX5jtqvdsDof4RHQ=",
"shasum": "lWRdWQyNDnyLO8n4zI6GaNHFYIb8N+0cj3z2pUSPmv4=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
186 changes: 186 additions & 0 deletions packages/bitcoin-wallet-snap/src/use-cases/AccountUseCases.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,192 @@ describe('AccountUseCases', () => {
// Result should be the rebuilt PSBT with all outputs preserved
expect(result).toBe(rebuiltPsbt);
});

const identifiableOutput = (scriptHex: string, sats: bigint): TxOut => {
const scriptPubkey = mock<ScriptBuf>();
scriptPubkey.to_hex_string.mockReturnValue(scriptHex);
const value = mock<Amount>();
value.to_sat.mockReturnValue(sats);

return mock<TxOut>({ script_pubkey: scriptPubkey, value });
};

const accountOwning = (owned: ScriptBuf[]): BitcoinAccount => {
const account = mock<BitcoinAccount>({
id: 'account-id',
network: 'bitcoin',
isMine: (script: ScriptBuf) => owned.includes(script),
capabilities: [AccountCapability.FillPsbt],
});
account.buildTx.mockReturnValue(mockTxBuilder);
return account;
};

it('adds every template output as a fixed recipient when the wallet-owned output is not last', async () => {
const changeOutput = identifiableOutput('0014aaaa', 2548n);
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const template = mock<Psbt>({
unsigned_tx: { output: [changeOutput, depositOutput] },
toString: () => 'templateBase64',
});
mockTxBuilder.finish.mockReturnValue(
mock<Psbt>({
unsigned_tx: { output: [changeOutput, depositOutput] },
}),
);
mockRepository.get.mockResolvedValueOnce(
accountOwning([changeOutput.script_pubkey]),
);

await useCases.fillPsbt('account-id', template);

expect(mockTxBuilder.drainToByScript).not.toHaveBeenCalled();
expect(mockTxBuilder.addRecipientByScript).toHaveBeenCalledTimes(2);
expect(mockTxBuilder.addRecipientByScript).toHaveBeenNthCalledWith(
1,
changeOutput.value,
changeOutput.script_pubkey,
);
expect(mockTxBuilder.addRecipientByScript).toHaveBeenNthCalledWith(
2,
depositOutput.value,
depositOutput.script_pubkey,
);
});

it('throws when the built outputs are reordered against the template', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const opReturnOutput = identifiableOutput('6a3ecccc', 0n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput, opReturnOutput] },
toString: () => 'templateBase64',
});
mockTxBuilder.finish.mockReturnValue(
mock<Psbt>({
unsigned_tx: {
output: [
opReturnOutput,
identifiableOutput('0014aaaa', 2548n),
depositOutput,
],
},
}),
);
mockRepository.get.mockResolvedValueOnce(accountOwning([]));

await expect(useCases.fillPsbt('account-id', template)).rejects.toThrow(
'Built PSBT does not preserve the template outputs',
);
});

it('throws when a built output value diverges from the template', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput] },
toString: () => 'templateBase64',
});
mockTxBuilder.finish.mockReturnValue(
mock<Psbt>({
unsigned_tx: { output: [identifiableOutput('5120bbbb', 1n)] },
}),
);
mockRepository.get.mockResolvedValueOnce(accountOwning([]));

await expect(useCases.fillPsbt('account-id', template)).rejects.toThrow(
'Built PSBT does not preserve the template outputs',
);
});

it('accepts a built PSBT that appends a change output after the template outputs', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const opReturnOutput = identifiableOutput('6a3ecccc', 0n);
const appendedChange = identifiableOutput('0014aaaa', 2548n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput, opReturnOutput] },
toString: () => 'templateBase64',
});
const builtPsbt = mock<Psbt>({
unsigned_tx: {
output: [depositOutput, opReturnOutput, appendedChange],
},
});
mockTxBuilder.finish.mockReturnValue(builtPsbt);
mockRepository.get.mockResolvedValueOnce(
accountOwning([appendedChange.script_pubkey]),
);

expect(await useCases.fillPsbt('account-id', template)).toBe(builtPsbt);
});

it('throws when the built PSBT appends an output that is not ours', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput] },
toString: () => 'templateBase64',
});
mockTxBuilder.finish.mockReturnValue(
mock<Psbt>({
unsigned_tx: {
output: [depositOutput, identifiableOutput('5120dddd', 1000n)],
},
}),
);
mockRepository.get.mockResolvedValueOnce(accountOwning([]));

await expect(useCases.fillPsbt('account-id', template)).rejects.toThrow(
'Built PSBT does not preserve the template outputs',
);
});

it('throws when the built PSBT appends more than one output', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const firstAppended = identifiableOutput('0014aaaa', 1000n);
const secondAppended = identifiableOutput('0014eeee', 1000n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput] },
toString: () => 'templateBase64',
});
mockTxBuilder.finish.mockReturnValue(
mock<Psbt>({
unsigned_tx: {
output: [depositOutput, firstAppended, secondAppended],
},
}),
);
mockRepository.get.mockResolvedValueOnce(
accountOwning([
firstAppended.script_pubkey,
secondAppended.script_pubkey,
]),
);

await expect(useCases.fillPsbt('account-id', template)).rejects.toThrow(
'Built PSBT does not preserve the template outputs',
);
});

it('accepts the drained output taking a value the template did not specify', async () => {
const depositOutput = identifiableOutput('5120bbbb', 496774n);
const changeOutput = identifiableOutput('0014aaaa', 1000n);
const template = mock<Psbt>({
unsigned_tx: { output: [depositOutput, changeOutput] },
toString: () => 'templateBase64',
});
const builtPsbt = mock<Psbt>({
unsigned_tx: {
output: [depositOutput, identifiableOutput('0014aaaa', 2548n)],
},
});
mockTxBuilder.finish.mockReturnValue(builtPsbt);
mockRepository.get.mockResolvedValueOnce(
accountOwning([changeOutput.script_pubkey]),
);

expect(await useCases.fillPsbt('account-id', template)).toBe(builtPsbt);
expect(mockTxBuilder.drainToByScript).toHaveBeenCalledWith(
changeOutput.script_pubkey,
);
});
});

describe('computeFee', () => {
Expand Down
52 changes: 41 additions & 11 deletions packages/bitcoin-wallet-snap/src/use-cases/AccountUseCases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -779,16 +779,24 @@ export class AccountUseCases {
const frozenUTXOs = await this.#repository.getFrozenUTXOs(account.id);
const feeRateToUse = feeRate ?? (await this.getFallbackFeeRate(account));

const templateOutputs = templatePsbt.unsigned_tx.output;
const lastOutput = templateOutputs[templateOutputs.length - 1];
// the drain output is appended last, so only a trailing output of ours keeps its position. If the template has no output of ours, a change output is added automatically.
const drainOutput =
lastOutput && account.isMine(lastOutput.script_pubkey)
? lastOutput
: undefined;

let builtPsbt: Psbt;
try {
let builder = account
.buildTx()
.feeRate(feeRateToUse)
.unspendable(frozenUTXOs)
.untouchedOrdering(); // we need to strictly adhere to the template output order. Many protocols use the order (e.g: 1: deposit, 2: OP_RETURN, 3: change)

for (const txout of templatePsbt.unsigned_tx.output) {
// if the PSBT contains an output that is sending to ourselves, we change its value. If the PSBT contains no change outputs, one will automatically be added.
if (account.isMine(txout.script_pubkey)) {
for (const txout of templateOutputs) {
if (txout === drainOutput) {
builder = builder.drainToByScript(txout.script_pubkey);
} else {
builder = builder.addRecipientByScript(
Expand All @@ -797,29 +805,24 @@ export class AccountUseCases {
);
}
}
let builtPsbt = builder.finish();
builtPsbt = builder.finish();

if (
builtPsbt.unsigned_tx.output.length <
templatePsbt.unsigned_tx.output.length
) {
if (builtPsbt.unsigned_tx.output.length < templateOutputs.length) {
// Second attempt: use fixed recipients for all outputs
builder = account
.buildTx()
.feeRate(feeRateToUse)
.unspendable(frozenUTXOs)
.untouchedOrdering();

for (const txout of templatePsbt.unsigned_tx.output) {
for (const txout of templateOutputs) {
builder = builder.addRecipientByScript(
txout.value,
txout.script_pubkey,
);
}
builtPsbt = builder.finish();
}

return builtPsbt;
} catch (error) {
const causeMessage = (error as Error)?.message ?? 'unknown cause';
throw new ValidationError(
Expand All @@ -832,6 +835,33 @@ export class AccountUseCases {
error,
);
}

const builtOutputs = builtPsbt.unsigned_tx.output;
// BDK may append a single change output of ours after the template outputs, and nothing else.
const appended = builtOutputs.slice(templateOutputs.length);
const preserved =
appended.length <= 1 &&
appended.every((txout) => account.isMine(txout.script_pubkey)) &&
templateOutputs.every(
(txout, index) =>
builtOutputs[index]?.script_pubkey.to_hex_string() ===
txout.script_pubkey.to_hex_string() &&
(txout === drainOutput ||
builtOutputs[index]?.value.to_sat() === txout.value.to_sat()),
);
if (!preserved) {
throw new ValidationError(
'Built PSBT does not preserve the template outputs',
{
id: account.id,
templatePsbt: templatePsbt.toString(),
builtPsbt: builtPsbt.toString(),
feeRate: feeRateToUse,
},
);
}

return builtPsbt;
}

async #broadcast(
Expand Down