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 (
- +
); };