Skip to content

Master #18

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

Open
wants to merge 3 commits into
base: gh-pages
Choose a base branch
from
Open
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
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tradedex-hub.github.io
1 change: 1 addition & 0 deletions docker-node
Submodule docker-node added at c32b80
54 changes: 43 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" media="all" href="style.css">
<title>gh-pages template</title>
</head>
<body>
<div id="helloworld">Hello world!</div>
</body>
</html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/Users/local/Library/CloudStorage/OneDrive-Personal/Documents/devein_blockchain/python/mighty_env/full-stack/wallets-dapp/public/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/Users/local/Library/CloudStorage/OneDrive-Personal/Documents/devein_blockchain/python/mighty_env/full-stack/wallets-dapp/public/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->

<!--
Add the Roboto font required by Material UI.
-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />

<title>Trade DEX Wallet dApp</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
7 changes: 7 additions & 0 deletions node_modules/.package-lock.json

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

10 changes: 10 additions & 0 deletions node_modules/.yarn-integrity

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

13 changes: 13 additions & 0 deletions package-lock.json

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

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "einpunk-fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Einstein Punk",
"license": "MIT"
}
21 changes: 21 additions & 0 deletions wallets-dapp/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": ["airbnb", "plugin:prettier/recommended"],
"env": {
"es6": true // supports new ES6 globals (e.g., new types such as Set)
},
"rules": {
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"arrow-parens": "off",
"strict": "off",
"no-console": "off",
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"no-return-assign": "off",
"no-param-reassign": "off",
"no-restricted-syntax": ["off", "ForOfStatement"],
"no-unused-expressions": "off",
"no-loop-func": "off",
"import/prefer-default-export": "off", // contrary to Agoric standard
"react/prop-types": "off"
}
}
24 changes: 24 additions & 0 deletions wallets-dapp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.env

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions wallets-dapp/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"trailingComma": "all",
"singleQuote": true
}
4 changes: 4 additions & 0 deletions wallets-dapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# specify the node base image with your desired version node:<version>
FROM node:16
# replace this with your application's default port
EXPOSE 8888
13 changes: 13 additions & 0 deletions wallets-dapp/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '2'
services:
node:
image: 'node:16'
user: 'node'
working_dir: /Users/local/Library/CloudStorage/OneDrive-Personal/Documents/devein_blockchain/python/mighty_env/full-stack/wallets-dapp/src
environment:
- NODE_ENV=production
volumes:
- ./:/Users/local/Library/CloudStorage/OneDrive-Personal/Documents/devein_blockchain/python/mighty_env/full-stack/wallets-dapp/src
expose:
- '8888'
command: 'npm start'
1 change: 1 addition & 0 deletions wallets-dapp/js-eth-personal-sign-examples
Submodule js-eth-personal-sign-examples added at 4de9e9
Loading