diff --git a/src/pages/bridge/Issue/ConfirmationDialog.tsx b/src/pages/bridge/Issue/ConfirmationDialog.tsx index c243e1da..6c0aae52 100644 --- a/src/pages/bridge/Issue/ConfirmationDialog.tsx +++ b/src/pages/bridge/Issue/ConfirmationDialog.tsx @@ -10,6 +10,7 @@ import { nativeStellarToDecimal } from '../../../shared/parseNumbers/metric'; import { Dialog } from '../../collators/dialogs/Dialog'; import { generateSEP0007URIScheme } from '../../../helpers/stellar/sep0007'; import { StellarUriScheme } from './StellarURIScheme'; +import { PENDULUM_SUPPORT_CHAT_URL } from '../../../shared/constants'; interface ConfirmationDialogProps { issueRequest: RichIssueRequest | undefined; @@ -100,7 +101,7 @@ export function ConfirmationDialog(props: ConfirmationDialogProps): JSX.Element
  • Estimated time for issuing is in a minute after submitting the Stellar payment to the vault, contact - + support if your transaction is still pending after 10 minutes. diff --git a/src/pages/bridge/Issue/index.tsx b/src/pages/bridge/Issue/index.tsx index efb941bc..f67a5884 100644 --- a/src/pages/bridge/Issue/index.tsx +++ b/src/pages/bridge/Issue/index.tsx @@ -28,6 +28,7 @@ import Disclaimer from './Disclaimer'; import { getIssueValidationSchema } from './IssueValidationSchema'; import { isU128Compatible } from '../../../shared/parseNumbers/isU128Compatible'; import { USER_INPUT_MAX_DECIMALS } from '../../../shared/parseNumbers/decimal'; +import { PENDULUM_SUPPORT_CHAT_URL } from '../../../shared/constants'; interface IssueProps { network: string; @@ -107,7 +108,7 @@ function Issue(props: IssueProps): JSX.Element {
  • Estimated time for issuing: In a minute after submitting the Stellar payment to the vault. Contact - + support if your transaction is still pending after 10 minutes. diff --git a/src/pages/bridge/Redeem/ConfirmationDialog.tsx b/src/pages/bridge/Redeem/ConfirmationDialog.tsx index d7f671a6..f0d8a934 100644 --- a/src/pages/bridge/Redeem/ConfirmationDialog.tsx +++ b/src/pages/bridge/Redeem/ConfirmationDialog.tsx @@ -7,6 +7,7 @@ import { RichRedeemRequest } from '../../../hooks/spacewalk/useRedeemPallet'; import { nativeStellarToDecimal } from '../../../shared/parseNumbers/metric'; import { Dialog } from '../../collators/dialogs/Dialog'; import { useMemo } from 'preact/hooks'; +import { PENDULUM_SUPPORT_CHAT_URL } from '../../../shared/constants'; interface ConfirmationDialogProps { redeemRequest: RichRedeemRequest | undefined; @@ -40,7 +41,7 @@ export function ConfirmationDialog(props: ConfirmationDialogProps): JSX.Element
    This typically takes only a few minutes. Contact - + support if your transaction is still pending after 10 minutes. diff --git a/src/pages/bridge/TransactionDialog.tsx b/src/pages/bridge/TransactionDialog.tsx index 12cef764..2284fb6d 100644 --- a/src/pages/bridge/TransactionDialog.tsx +++ b/src/pages/bridge/TransactionDialog.tsx @@ -23,6 +23,7 @@ import { useVaultRegistryPallet } from '../../hooks/spacewalk/useVaultRegistryPa import { nativeToDecimal } from '../../shared/parseNumbers/metric'; import { TTransfer, TransferType } from './TransactionsColumns'; import { Dialog } from '../collators/dialogs/Dialog'; +import { PENDULUM_SUPPORT_CHAT_URL } from '../../shared/constants'; interface BaseTransactionDialogProps { id: string; @@ -330,7 +331,7 @@ export function PendingTransactionDialog(props: TransactionDialogProps) {
    Note: Estimated time for issuing is in a minute after submitting the Stellar payment to the vault, contact - + support if your transaction is still pending after 10 minutes. diff --git a/src/pages/bridge/TransferDialog/PendingTransferDialog.tsx b/src/pages/bridge/TransferDialog/PendingTransferDialog.tsx index 488553e2..96cafdb1 100644 --- a/src/pages/bridge/TransferDialog/PendingTransferDialog.tsx +++ b/src/pages/bridge/TransferDialog/PendingTransferDialog.tsx @@ -13,6 +13,7 @@ import { useSecurityPallet } from '../../../hooks/spacewalk/useSecurityPallet'; import { nativeToDecimal } from '../../../shared/parseNumbers/metric'; import { TransferType } from '../TransactionsColumns'; import { TransferDialogProps, BaseTransferDialog } from './TransferDialog'; +import { PENDULUM_SUPPORT_CHAT_URL } from '../../../shared/constants'; export function PendingTransferDialog(props: TransferDialogProps) { const { transfer, visible, onClose } = props; @@ -73,7 +74,7 @@ export function PendingTransferDialog(props: TransferDialogProps) {
    Note: Estimated time for issuing is in a minute after submitting the Stellar payment to the vault, contact - + support if your transaction is still pending after 10 minutes. diff --git a/src/shared/constants.ts b/src/shared/constants.ts index 7ddfe78d..18fe0f38 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -1,3 +1,6 @@ export const MINUTE_IN_MILLISECONDS = 60 * 1000; export const SECONDS_IN_A_DAY = 86400; export const BLOCK_TIME_SEC = 12; + + +export const PENDULUM_SUPPORT_CHAT_URL = 'https://discord.com/channels/841944723979108403/1247164487883292672' \ No newline at end of file