From 73698483b29737002da5e8a60cd4abd7c42f1d08 Mon Sep 17 00:00:00 2001 From: Gizmotronn Date: Wed, 23 Feb 2022 14:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B8=F0=9F=98=97=20->=20#1=20Buildspace?= =?UTF-8?q?=20documentation=20being=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/api/nft-buildspace.md | 58 ++++++++++++++++++++++++ quartz-cli/src/events/EventComponent.tsx | 11 +++++ quartz-cli/src/index.tsx | 6 ++- 3 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 content/api/nft-buildspace.md create mode 100644 quartz-cli/src/events/EventComponent.tsx diff --git a/content/api/nft-buildspace.md b/content/api/nft-buildspace.md new file mode 100644 index 000000000..c174c7b8d --- /dev/null +++ b/content/api/nft-buildspace.md @@ -0,0 +1,58 @@ +

Game content

+ +[Repository](https://github.com/signal-k/marketplace/tree/game) + +___ + +

+ +

+ + +

+ + License + +

+ +___ + +Note: `game` branch +* Creating game content for the `marketplace` repository and `polygon` repo on `github/signal-k` +* Combining it with a Moralis instance + + +## 🌱 Software Requirements + +NodeJS v16.1 +Ganache CLI + +### 🦠 Node Requirements +These requirements are for the node/react components of this sample NFT project + +Use either `yarn install` or `npm install` to install all the required node packages. + +With `hardhat` -> Run commands with `--verbose` at the end + +## Minting the NFTs +`npx hardhat run scripts/deploy.js --network rinkeby --verbose` + +* Go [here](https://github.com/Signal-K/marketplace/settings/environments/407186579/edit) for the environment variables +* [Pinmanager](https://app.pinata.cloud/pinmanager) + +## 🚀 Technologies Used + +The project was developed using the following technologies + +- Node +- Polygon +- Ethereum +- Avalanche +- Moralis + + +# 🔌 Connected repositories +The following repositories are utilised, or utilise the Signal-K/polygon repository: + +- [Signal-K/marketplace](https://github.com/Signal-K/marketplace/) +- [Eth remix gist](https://gist.github.com/Gizmotronn/d3796de3a2ec3cfde90d4fd6356ca881) diff --git a/quartz-cli/src/events/EventComponent.tsx b/quartz-cli/src/events/EventComponent.tsx new file mode 100644 index 000000000..904997cc4 --- /dev/null +++ b/quartz-cli/src/events/EventComponent.tsx @@ -0,0 +1,11 @@ +const EventComponent: React.FC = () => { + const onChange = (e) => { + console.log(e); + } + + return
+ +
+}; + +export default EventComponent; \ No newline at end of file diff --git a/quartz-cli/src/index.tsx b/quartz-cli/src/index.tsx index 5748eb97e..5e63651bf 100644 --- a/quartz-cli/src/index.tsx +++ b/quartz-cli/src/index.tsx @@ -1,10 +1,12 @@ import ReactDOM from 'react-dom'; -import UserSearch from './state/UserSearch' +//import UserSearch from './state/UserSearch' +//import List from './state/List' +import EventComponent from './events/EventComponent'; const App = () => { return (
- +
); };