Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme , change name and update packaging #36

Merged
merged 8 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 2 additions & 2 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Credential Manager App Project Codeowners
# Intersect Council Toolkit App Project Codeowners

# These owners will be the default owners for everything in the repository.

* Ryun1 elenabardho
* @Ryun1 @elenabardho
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Credential Manager App
# Intersect Council Toolkit App

Welcome to the Credential Manager App repository.
Welcome to the Intersect Council Toolkit App repository.

## Introduction

Expand Down
21 changes: 19 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# Starter Next.js TypeScript
# Intersect Council Toolkit App

Start a new project on Next.js App route.
This App will allow Intersect council to be able to vote on governance actions , by connecting their wallet to this app.

## Table of Contents

1. [Usage](#usage)
2. [Architecture](#architecture)
3. [License](#license)

## Usage

1. Connect your wallet to a wallet web extension of your choice.
Ryun1 marked this conversation as resolved.
Show resolved Hide resolved
2. Make sure you are on the mainnet or pre-prod for testing.
3. Paste your unsigned transaction on the input box, then click check transaction.
4. If the unsigned transaction passes all validity checks you will be able to pass the transaction to your wallet for signing, producing a signature.

## Architecture

![Architecture](.public/images/v1-diagram.png)
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { MeshProviderApp } from "@/providers/meshProvider";
import "@meshsdk/react/styles.css";

export const metadata: Metadata = {
title: "Credential Manager",
description: "Intersect Credential Manager Dapp",
title: "Intersect Council Toolkit",
description: "Intersect Council Toolkit Dapp",
elenabardho marked this conversation as resolved.
Show resolved Hide resolved
};

export default function RootLayout({
Expand Down
9 changes: 1 addition & 8 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ import { Container, Typography, Box } from "@mui/material";

export default function Home() {
return (
// <main>
// <h1 className="font-bold uppercase mr-auto">Credential Manager App</h1>
// <div className="ml-auto">
// <Wallet />
// <TransactionButton />
// </div>
// </main>
<Box
sx={{
backgroundImage: 'url(/background.png)',
Expand Down Expand Up @@ -41,7 +34,7 @@ export default function Home() {
</svg>
</Box>
<Typography variant="h4" component="h1" fontWeight="bold" textTransform="uppercase" mb={3} textAlign="center" paddingTop={2}>
Credential Manager App
Intersect Council Toolkit
</Typography>

<Box display="flex" flexDirection="column" alignItems="center" width="100%">
Expand Down
4 changes: 2 additions & 2 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "credential-manager-app",
"name": "council-toolkit-app",
"version": "1.0",
"private": true,
"scripts": {
Expand Down