-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add block time, proposals, remove signatures
- Loading branch information
Showing
6 changed files
with
225 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import withGetStaticProps from '@/pages/withGetStaticProps'; | ||
import type { NextPage } from 'next'; | ||
import ProposalDetails from '@/screens/proposal_details'; | ||
import nextI18NextConfig from '../../../next-i18next.config'; | ||
|
||
const TokenDetailsPage: NextPage = () => <ProposalDetails />; | ||
|
||
export const getStaticPaths = () => ({ paths: [], fallback: 'blocking' }); | ||
export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'proposals'); | ||
|
||
export default TokenDetailsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import withGetStaticProps from '@/pages/withGetStaticProps'; | ||
import Tokens from '@/screens/proposals'; | ||
import type { NextPage } from 'next'; | ||
import nextI18NextConfig from '../../../next-i18next.config'; | ||
|
||
const TokensPage: NextPage = () => <Tokens />; | ||
|
||
export const getStaticProps = withGetStaticProps(nextI18NextConfig, 'proposals'); | ||
|
||
export default TokensPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters