Skip to content

Commit f0d20d3

Browse files
committed
Chore: Add streaming payment extension config post-rebase
1 parent 60f1b9a commit f0d20d3

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

src/constants/extensions.ts

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import ExtensionLazyConsensusIcon from '~icons/ExtensionLazyConsensusIcon.tsx';
77
import ExtensionMultiSigIcon from '~icons/ExtensionMultiSigIcon.tsx';
88
import ExtensionOneTransactionPaymentIcon from '~icons/ExtensionOneTransactionPaymentIcon.tsx';
99
import ExtensionStagedPaymentsIcon from '~icons/ExtensionStagedPaymentsIcon.tsx';
10+
import ExtensionStreamingPaymentsIcon from '~icons/ExtensionStreamingPaymentsIcon.tsx';
1011
import multiSigHero from '~images/assets/extensions/multi-sig-hero.png';
1112
import multiSigInterface from '~images/assets/extensions/multi-sig-interface.png';
1213
import oneTransactionHero from '~images/assets/extensions/one-transaction-hero.png';
@@ -17,6 +18,8 @@ import stagedHero from '~images/assets/extensions/staged-hero.png';
1718
import stagedInterface from '~images/assets/extensions/staged-interface.png';
1819
import stakedHero from '~images/assets/extensions/staked-hero.png';
1920
import 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';
2023
import { type ExtensionConfig } from '~types/extensions.ts';
2124
import {
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

Comments
 (0)