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

refactor(examples): secp256k1 transfer example #388

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 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
73 changes: 0 additions & 73 deletions examples/secp256k1-transfer/index.tsx

This file was deleted.

161 changes: 0 additions & 161 deletions examples/secp256k1-transfer/lib.ts

This file was deleted.

15 changes: 10 additions & 5 deletions examples/secp256k1-transfer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,26 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"lint": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ckb-lumos/lumos": "0.19.0-alpha.0",
"@ckb-lumos/lumos": "0.19.0-alpha.1",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"bulma": "^0.9.4",
"nanoid": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
"react-dom": "^17.0.2",
"react-use": "^17.4.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0"
"parcel": "^2.7.0",
"postcss": "^8.4.16",
"process": "^0.11.10",
"typescript": "^4.7.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lumos Transfer</title>
<title>Lumos Secp256k1 Transfer Demo</title>
</head>
<body>
<div id="root"></div>
<script src="index.tsx" type="module"></script>
</body>
</html>
Loading