Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sweetmantech/onchain-magic-npm

npm install onchain-magic
https://github.com/sweetmantech/onchain-magic-npm

create npm zora

Last synced: 2 days ago
JSON representation

npm install onchain-magic

Awesome Lists containing this project

README

        

# Getting Started with OnchainMagic 🪄

## Getting started

- Documentation can be found here: [docs.onchainmagic.xyz](https://docs.onchainmagic.xyz)

```bash
npm install onchain-magic
# or
yarn add onchain-magic
```

```
import { useCreate1155Contract } from 'onchain-magic';

const MyComponent = () => {
const { createContract } = useCreate1155Contract()

const handleClick = () => {
createContract()
}

return(
Deploy on Zora
)
}

export default MyComponent
```