File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export abstract class BaseNetwork {
1515export interface UtxoNetwork extends BaseNetwork {
1616 // Network name as defined in @bitgo /utxo-lib networks.ts
1717 utxolibName : string ;
18+ paygoAddressAttestationPubkey ?: string ;
1819}
1920
2021export 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
347351class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
You can’t perform that action at this time.
0 commit comments