Skip to content

Commit

Permalink
wallet-ext: demo dapp
Browse files Browse the repository at this point in the history
* a demo dapp that uses the DappInterface to mint a devnet_nft
  • Loading branch information
pchrysochoidis committed Jul 1, 2022
1 parent 0243348 commit 0fdd770
Show file tree
Hide file tree
Showing 12 changed files with 926 additions and 0 deletions.
2 changes: 2 additions & 0 deletions wallet/.eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
dist/
node_modules/
.next/
.swc/
2 changes: 2 additions & 0 deletions wallet/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ package-lock.json
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.next/
.swc/
2 changes: 2 additions & 0 deletions wallet/.stylelintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules/
dist/
.next/
.swc/
32 changes: 32 additions & 0 deletions wallet/examples/demo-nft-dapp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel
9 changes: 9 additions & 0 deletions wallet/examples/demo-nft-dapp/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright (c) 2022, Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
};

module.exports = nextConfig;
Loading

0 comments on commit 0fdd770

Please sign in to comment.