mirror of
https://github.com/stronk-dev/RandomChad.git
synced 2025-07-05 10:35:08 +02:00
New haiku and faq
This commit is contained in:
parent
931bfb0789
commit
4acbb16dee
@ -138,6 +138,7 @@ const contractAddressByChainId = {
|
|||||||
'0x4': '0x89D9f02D2877A35E8323DC1b578FD1f6014B04d0'
|
'0x4': '0x89D9f02D2877A35E8323DC1b578FD1f6014B04d0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Contract ABI with only totalSupply and Transfer
|
||||||
const ABI = [
|
const ABI = [
|
||||||
{
|
{
|
||||||
"inputs": [],
|
"inputs": [],
|
||||||
@ -193,6 +194,7 @@ const ABI = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
// Contract custom hook
|
||||||
export function useContract() {
|
export function useContract() {
|
||||||
|
|
||||||
const chainId = useChainId()
|
const chainId = useChainId()
|
||||||
@ -228,12 +230,14 @@ export function useContract() {
|
|||||||
|
|
||||||
export function rocketeerCollectionUriOnOpensea( chainId ) {
|
export function rocketeerCollectionUriOnOpensea( chainId ) {
|
||||||
|
|
||||||
|
// Opensea collection link depending on network
|
||||||
return `${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/collection/rocketeer`
|
return `${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/collection/rocketeer`
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function rocketeerUriOnOpensea( chainId, tokenId ) {
|
export function rocketeerUriOnOpensea( chainId, tokenId ) {
|
||||||
|
|
||||||
|
// Opensea specific link depending on network
|
||||||
return `https://${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/assets/${ contractAddressByChainId[ chainId ] }/${ tokenId }`
|
return `https://${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/assets/${ contractAddressByChainId[ chainId ] }/${ tokenId }`
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -59,6 +59,10 @@ a.button
|
|||||||
flex-wrap: wrap
|
flex-wrap: wrap
|
||||||
justify-content: center
|
justify-content: center
|
||||||
|
|
||||||
|
.sidenote
|
||||||
|
margin-top: 2rem
|
||||||
|
font-style: italic
|
||||||
|
|
||||||
// ///////////////////////////////
|
// ///////////////////////////////
|
||||||
// Index page
|
// Index page
|
||||||
// ///////////////////////////////
|
// ///////////////////////////////
|
||||||
@ -131,6 +135,10 @@ a.button
|
|||||||
padding-left: 1.5rem
|
padding-left: 1.5rem
|
||||||
margin-bottom: 4rem
|
margin-bottom: 4rem
|
||||||
|
|
||||||
|
#about
|
||||||
|
h2
|
||||||
|
margin-top: 3rem
|
||||||
|
|
||||||
.usps
|
.usps
|
||||||
flex-direction: row
|
flex-direction: row
|
||||||
flex-wrap: wrap
|
flex-wrap: wrap
|
||||||
|
@ -24,9 +24,9 @@ html( lang=content.lang )
|
|||||||
main
|
main
|
||||||
section#hero
|
section#hero
|
||||||
h1 Rocketeer NFT
|
h1 Rocketeer NFT
|
||||||
h2 The Rocketeers stand.<br/>
|
h2 Moon boots touch the earth.<br/>
|
||||||
| Moon looms, rocket waits, eyes stare.<br/>
|
| Visored faces tilt upward. <br/>
|
||||||
| The sole thought is wen.
|
| Their sole thought is wen.
|
||||||
|
|
||||||
//- p Launching Soon™️
|
//- p Launching Soon™️
|
||||||
+rimg.stretch( src=site.system.url+'/assets/mike-kiev-Opzk_hvwO9Q-unsplash.jpg' )
|
+rimg.stretch( src=site.system.url+'/assets/mike-kiev-Opzk_hvwO9Q-unsplash.jpg' )
|
||||||
@ -36,6 +36,25 @@ html( lang=content.lang )
|
|||||||
a( target='_blank' href='' ).button Mint now
|
a( target='_blank' href='' ).button Mint now
|
||||||
a( target='_blank' href='' ).button.outline View on Opensea
|
a( target='_blank' href='' ).button.outline View on Opensea
|
||||||
|
|
||||||
|
section#about
|
||||||
|
h1 FAQ
|
||||||
|
|
||||||
|
h2 Wen mint?
|
||||||
|
p Minting will open within the coming two weeks. Minting will be free (besides gas costs).
|
||||||
|
|
||||||
|
h2 Which attributes do Rocketeers have?
|
||||||
|
p They will have a variety of helmets, visors, suits and backdrops. Each with multiple color options.
|
||||||
|
|
||||||
|
h2 How random are Rocketeers?
|
||||||
|
p The attributes have weighted probabilities. Upon mint a random number generator probablistically determines the attributes.
|
||||||
|
|
||||||
|
h2 What inspired the Rocketeer NFT?
|
||||||
|
p The undying patience and excited optimism of the Rocketpool community.
|
||||||
|
|
||||||
|
h2 What media are available for the Rocketeers?
|
||||||
|
p Each Rocketeer have a scalable vector file so you can use the art on any size medium. Opensea automatically offers these as PNG for easy use online.
|
||||||
|
|
||||||
|
|
||||||
//- section#usps
|
//- section#usps
|
||||||
//- div.usp
|
//- div.usp
|
||||||
//- p 🕶
|
//- p 🕶
|
||||||
@ -56,6 +75,13 @@ html( lang=content.lang )
|
|||||||
//- a( href='/' ) Mint now
|
//- a( href='/' ) Mint now
|
||||||
//- //- p Launching Soon™️
|
//- //- p Launching Soon™️
|
||||||
|
|
||||||
|
section#community
|
||||||
|
h1 Community
|
||||||
|
p Join us for questions, conversations, and suggestions.
|
||||||
|
a( href="https://discord.gg/mXHe2BYG" )
|
||||||
|
img( src="/assets/discord-logo-black.svg" )
|
||||||
|
a( href="https://discord.gg/mXHe2BYG" ).button.outline Join on Discord
|
||||||
|
|
||||||
section#credits
|
section#credits
|
||||||
h1 Acknowledgements
|
h1 Acknowledgements
|
||||||
|
|
||||||
@ -65,23 +91,13 @@ html( lang=content.lang )
|
|||||||
p NFT design components by unvetica.eth and team.
|
p NFT design components by unvetica.eth and team.
|
||||||
div.usp
|
div.usp
|
||||||
+cimg.circle( size=200 src=site.system.url+'/assets/adam-miller-dBaz0xhCkPY-unsplash-cropped.jpg' )
|
+cimg.circle( size=200 src=site.system.url+'/assets/adam-miller-dBaz0xhCkPY-unsplash-cropped.jpg' )
|
||||||
p Contract, frontend and API code by mentor.eth
|
p Contract, frontend and API code by mentor.eth.
|
||||||
div.usp
|
div.usp
|
||||||
+cimg.circle( size=200 src=site.system.url+'/assets/adam-miller-dBaz0xhCkPY-unsplash-cropped.jpg' )
|
+cimg.circle( size=200 src=site.system.url+'/assets/adam-miller-dBaz0xhCkPY-unsplash-cropped.jpg' )
|
||||||
p Logistical support by LookingForOwls and colfax
|
p Logistical support by Discord users LookingForOwls and colfax.
|
||||||
p Photos taken by Mike Kiev and Adam Miller. Illustrations by Katerina Limpitsouni.
|
p.sidenote Website media: Photos taken by Mike Kiev and Adam Miller. Illustrations by Katerina Limpitsouni.
|
||||||
|
|
||||||
|
|
||||||
section#about
|
|
||||||
h1 About this project
|
|
||||||
p This is a Rocketpool community inspired initiative to fill the void between the present and mainnet.
|
|
||||||
p We all hope to look back 10 years from now at our Rocketeers and remember the days when we asked silly questions like wen mainnet and wen moon.
|
|
||||||
|
|
||||||
section#community
|
|
||||||
h1 Community
|
|
||||||
p Join us for questions, conversations, and suggestions.
|
|
||||||
a( href="https://discord.gg/mXHe2BYG" )
|
|
||||||
img( src="/assets/discord-logo-black.svg" )
|
|
||||||
a( href="https://discord.gg/mXHe2BYG" ).button.outline Join on Discord
|
|
||||||
|
|
||||||
include pug/_footer.pug
|
include pug/_footer.pug
|
Loading…
x
Reference in New Issue
Block a user