-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat: add psbt signing for v1 wallets
- Loading branch information
Showing
3 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import * as utxolib from '@bitgo/utxo-lib'; | ||
|
||
import * as buildDebug from 'debug'; | ||
|
||
const debug = buildDebug('bitgo:v1:txb'); | ||
|
||
/** | ||
* Co-sign a PSBT. | ||
* Simply a wrapper around `utxolib.bitgo.createPsbtFromBuffer` and `psbt.signAllInputsHD`. | ||
* @param params | ||
*/ | ||
export function signPsbtRequest(params: { psbt: string; keychain: { xprv: string } } | unknown): { | ||
psbt: string; | ||
} { | ||
if (typeof params !== 'object' || params === null) { | ||
throw new Error(`invalid argument`); | ||
} | ||
|
||
if (!('psbt' in params) || typeof params.psbt !== 'string') { | ||
throw new Error(`invalid params.psbt`); | ||
} | ||
|
||
if (!('keychain' in params) || typeof params.keychain !== 'object' || params.keychain === null) { | ||
throw new Error(`invalid params.keychain`); | ||
} | ||
|
||
if (!('xprv' in params.keychain) || typeof params.keychain.xprv !== 'string') { | ||
throw new Error(`invalid params.keychain.xprv`); | ||
} | ||
|
||
const psbt = utxolib.bitgo.createPsbtFromBuffer(Buffer.from(params.psbt, 'hex'), utxolib.networks.bitcoin); | ||
const keypair = utxolib.bip32.fromBase58(params.keychain.xprv, utxolib.networks.bitcoin); | ||
debug('signing PSBT with keychain %s', keypair.neutered().toBase58()); | ||
utxolib.bitgo.withUnsafeNonSegwit(psbt, () => psbt.signAllInputsHD(keypair)); | ||
return { | ||
psbt: psbt.toBuffer().toString('hex'), | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import * as assert from 'assert'; | ||
import * as utxolib from '@bitgo/utxo-lib'; | ||
import { signPsbtRequest } from '../../../src/v1/signPsbt'; | ||
|
||
describe('signPsbt', function () { | ||
it('signs psbt', function () { | ||
const keys = utxolib.testutil.getDefaultWalletKeys(); | ||
const psbt = utxolib.testutil.constructPsbt( | ||
[{ scriptType: 'p2sh', value: BigInt(1e8) }], | ||
[{ scriptType: 'p2sh', value: BigInt(1e8 - 1000) }], | ||
utxolib.networks.bitcoin, | ||
keys, | ||
'unsigned' | ||
); | ||
const result = signPsbtRequest({ | ||
psbt: psbt.toHex(), | ||
keychain: { | ||
xprv: keys.triple[0].toBase58(), | ||
}, | ||
}); | ||
const halfSignedPsbt = utxolib.bitgo.createPsbtFromBuffer( | ||
Buffer.from(result.psbt, 'hex'), | ||
utxolib.networks.bitcoin | ||
); | ||
assert.ok(halfSignedPsbt.validateSignaturesOfInputHD(0, keys.triple[0])); | ||
}); | ||
}); |