Skip to content

Commit

Permalink
feat(KeyAutoAdd): support Interledger Wallet (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi authored Dec 19, 2024
1 parent 083366f commit e32aa2a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/background/services/keyAutoAdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function getContentScripts(): Scripting.RegisteredContentScript[] {
},
{
id: 'keyAutoAdd/fynbos',
matches: ['https://eu1.fynbos.dev/*', 'https://wallet.fynbos.app/*'],
matches: ['https://eu1.fynbos.dev/*', 'https://interledger.app/*'],
js: ['content/keyAutoAdd/fynbos.js'],
},
{
Expand Down Expand Up @@ -242,7 +242,8 @@ function walletAddressToProvider(walletAddress: WalletAddress): string {
case 'eu1.fynbos.me':
return 'https://eu1.fynbos.dev/settings/keys';
case 'fynbos.me':
return 'https://wallet.fynbos.app/settings/keys';
case 'pay.interledger.app':
return 'https://interledger.app/settings/keys';
case 'ilp-sandbox.chimoney.com':
return 'https://sandbox.chimoney.io/interledger';
case 'ilp.chimoney.com':
Expand Down

0 comments on commit e32aa2a

Please sign in to comment.