@@ -7,6 +7,7 @@ import ExtensionLazyConsensusIcon from '~icons/ExtensionLazyConsensusIcon.tsx';
77import ExtensionMultiSigIcon from '~icons/ExtensionMultiSigIcon.tsx' ;
88import ExtensionOneTransactionPaymentIcon from '~icons/ExtensionOneTransactionPaymentIcon.tsx' ;
99import ExtensionStagedPaymentsIcon from '~icons/ExtensionStagedPaymentsIcon.tsx' ;
10+ import ExtensionStreamingPaymentsIcon from '~icons/ExtensionStreamingPaymentsIcon.tsx' ;
1011import multiSigHero from '~images/assets/extensions/multi-sig-hero.png' ;
1112import multiSigInterface from '~images/assets/extensions/multi-sig-interface.png' ;
1213import oneTransactionHero from '~images/assets/extensions/one-transaction-hero.png' ;
@@ -17,6 +18,8 @@ import stagedHero from '~images/assets/extensions/staged-hero.png';
1718import stagedInterface from '~images/assets/extensions/staged-interface.png' ;
1819import stakedHero from '~images/assets/extensions/staked-hero.png' ;
1920import stakedInterface from '~images/assets/extensions/staked-interface.png' ;
21+ import streamingHero from '~images/assets/extensions/streaming-hero.png' ;
22+ import streamingInterface from '~images/assets/extensions/streaming-interface.png' ;
2023import { type ExtensionConfig } from '~types/extensions.ts' ;
2124import {
2225 convertFractionToWei ,
@@ -383,18 +386,23 @@ export const supportedExtensionsConfig: ExtensionConfig[] = [
383386 createdAt : 1692048380000 ,
384387 autoEnableAfterInstall : true ,
385388 } ,
386- // {
387- // icon: ExtensionAdvancedPaymentsIcon,
388- // imageURLs: [streamingHero, streamingInterface],
389- // category: ExtensionCategory.Expenditures,
390- // extensionId: Extension.StreamingPayments,
391- // name: MSG.streamingPaymentsName,
392- // descriptionShort: MSG.streamingPaymentsDescriptionShort,
393- // descriptionLong: MSG.streamingPaymentsDescriptionLong,
394- // neededColonyPermissions: [ColonyRole.Administration, ColonyRole.Funding],
395- // uninstallable: true,
396- // createdAt: 1692048380000,
397- // },
389+ {
390+ icon : ExtensionStreamingPaymentsIcon ,
391+ imageURLs : [ streamingHero , streamingInterface ] ,
392+ category : ExtensionCategory . Expenditures ,
393+ extensionId : Extension . StreamingPayments ,
394+ name : MSG . streamingPaymentsName ,
395+ descriptionShort : MSG . streamingPaymentsDescriptionShort ,
396+ descriptionLong : MSG . streamingPaymentsDescriptionLong ,
397+ neededColonyPermissions : [
398+ ColonyRole . Administration ,
399+ ColonyRole . Funding ,
400+ ColonyRole . Arbitration ,
401+ ] ,
402+ uninstallable : true ,
403+ createdAt : 1692048380000 ,
404+ autoEnableAfterInstall : true ,
405+ } ,
398406 {
399407 icon : ExtensionMultiSigIcon ,
400408 imageURLs : [ multiSigHero , multiSigInterface ] ,
0 commit comments