Skip to content

Commit 5bca58c

Browse files
feat: added paygo xpub to statics for tbtc
Issue: BTC-2116 TICKET: BTC-2116
1 parent a32b05a commit 5bca58c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/statics/src/networks.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export abstract class BaseNetwork {
1515
export interface UtxoNetwork extends BaseNetwork {
1616
// Network name as defined in @bitgo/utxo-lib networks.ts
1717
utxolibName: string;
18+
pubkey?: string;
1819
}
1920

2021
export interface LightningNetwork extends UtxoNetwork {
@@ -342,6 +343,9 @@ class BitcoinTestnet extends Testnet implements UtxoNetwork {
342343
family = CoinFamily.BTC;
343344
utxolibName = 'testnet';
344345
explorerUrl = 'https://mempool.space/testnet/tx/';
346+
// Add our pubkey for our paygo wallet
347+
pubkey =
348+
'xpub661MyMwAqRbcFU2Qx7pvGmmiQpVj8NcR7dSVpgqNChMkQyobpVWWERcrTb47WicmXwkhAY2VrC3hb29s18FDQWJf5pLm3saN6uLXAXpw1GV';
345349
}
346350

347351
class BitcoinPublicSignet extends Testnet implements UtxoNetwork {

0 commit comments

Comments
 (0)