Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
![license](https://img.shields.io/badge/License-Apache%202.0-blue?logo=apache&style=flat-square)
[![maintainability](https://img.shields.io/codeclimate/maintainability-percentage/polkadot-js/apps?logo=code-climate&style=flat-square)](https://codeclimate.com/github/polkadot-js/apps)

> [!NOTE]
> The Dock blockchain has been closed. This project will no longer be maintained.

# deployment
`master` branch will deploy to fe.dock.io
`dev` branch will deploy to fe-staging.dock.io
Expand Down
Binary file added packages/apps/public/dock-mainnet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 24 additions & 13 deletions packages/apps/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
// Copyright 2017-2022 @polkadot/apps authors & contributors
// SPDX-License-Identifier: Apache-2.0

// setup these right at front
import './initSettings';
import 'semantic-ui-css/semantic.min.css';
import '@polkadot/react-components/i18n';
import '@polkadot/api-augment/substrate';

import React from 'react';
import { createRoot } from 'react-dom/client';

import Root from './Root';
const App = () => (
<div style={{ textAlign: 'center', marginTop: '50px' }}>
<img src='/dock-mainnet.png' />
<h1 style={{ textAlign: 'center' }}>Dock Blockchain Closure Announcement</h1>

<div style={{ display: 'flex', justifyContent: 'center' }}>
<div style={{ textAlign: 'left', maxWidth: '600px' }}>
<p style={{ fontSize: '18px' }}>Thank you for your interest in the Dock blockchain. The Dock network has migrated its functionality and all tokens to the cheqd blockchain. The official migration window ended on March 15, 2025. This strategic move allows us to leverage enhanced capabilities and continue delivering innovative blockchain solutions.</p>
<p style={{ fontSize: '18px' }}>For more information on the merger please read our detailed <a href='https://www.dock.io/post/dock-and-cheqd-form-alliance-to-accelerate-global-adoption-of-decentralized-id' target='_blank'>blog post</a>.</p>
<h1 style={{ textAlign: 'center' }}>Get in Touch with cheqd</h1>
<p style={{ fontSize: '18px' }}>We encourage you to stay connected with the cheqd community:</p>
<ul style={{ fontSize: '18px' }}>
<li>Website: <a href='https://cheqd.io' target='_blank'>https://cheqd.io</a></li>
<li>Telegram: <a href='https://t.me/cheqd' target='_blank'>https://t.me/cheqd</a></li>
</ul>
<p style={{ fontSize: '18px' }}>Thank you for your understanding and continued support.<br />
<br />
The Dock Team
</p>
</div>
</div>
</div>
);

const rootId = 'root';
const rootElement = document.getElementById(rootId);
Expand All @@ -19,6 +32,4 @@ if (!rootElement) {
throw new Error(`Unable to find element with id '${rootId}'`);
}

createRoot(rootElement).render(
<Root isElectron={false} />
);
createRoot(rootElement).render(<App />);