Skip to content

Commit 79ef464

Browse files
Merge pull request #6241 from BitGo/BTC-2116.addding-pubkey
feat(statics): added paygo xpub to statics for tbtc
2 parents aaf76b5 + 5bbcc10 commit 79ef464

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+
paygoAddressAttestationPubkey?: 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+
paygoAddressAttestationPubkey =
348+
'xpub661MyMwAqRbcFU2Qx7pvGmmiQpVj8NcR7dSVpgqNChMkQyobpVWWERcrTb47WicmXwkhAY2VrC3hb29s18FDQWJf5pLm3saN6uLXAXpw1GV';
345349
}
346350

347351
class BitcoinPublicSignet extends Testnet implements UtxoNetwork {

0 commit comments

Comments
 (0)