diff --git a/minter/src/modules/web3.js b/minter/src/modules/web3.js
index 5575120..5bc644a 100644
--- a/minter/src/modules/web3.js
+++ b/minter/src/modules/web3.js
@@ -138,6 +138,7 @@ const contractAddressByChainId = {
'0x4': '0x89D9f02D2877A35E8323DC1b578FD1f6014B04d0'
}
+// Contract ABI with only totalSupply and Transfer
const ABI = [
{
"inputs": [],
@@ -193,6 +194,7 @@ const ABI = [
}
]
+// Contract custom hook
export function useContract() {
const chainId = useChainId()
@@ -228,12 +230,14 @@ export function useContract() {
export function rocketeerCollectionUriOnOpensea( chainId ) {
+ // Opensea collection link depending on network
return `${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/collection/rocketeer`
}
export function rocketeerUriOnOpensea( chainId, tokenId ) {
+ // Opensea specific link depending on network
return `https://${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/assets/${ contractAddressByChainId[ chainId ] }/${ tokenId }`
}
diff --git a/website/src/css/essential-above-the-fold.sass b/website/src/css/essential-above-the-fold.sass
index 0cf6648..df2c530 100644
--- a/website/src/css/essential-above-the-fold.sass
+++ b/website/src/css/essential-above-the-fold.sass
@@ -59,6 +59,10 @@ a.button
flex-wrap: wrap
justify-content: center
+.sidenote
+ margin-top: 2rem
+ font-style: italic
+
// ///////////////////////////////
// Index page
// ///////////////////////////////
@@ -131,6 +135,10 @@ a.button
padding-left: 1.5rem
margin-bottom: 4rem
+ #about
+ h2
+ margin-top: 3rem
+
.usps
flex-direction: row
flex-wrap: wrap
diff --git a/website/src/index.pug b/website/src/index.pug
index 97e1e2c..04d4f3d 100644
--- a/website/src/index.pug
+++ b/website/src/index.pug
@@ -24,9 +24,9 @@ html( lang=content.lang )
main
section#hero
h1 Rocketeer NFT
- h2 The Rocketeers stand.
- | Moon looms, rocket waits, eyes stare.
- | The sole thought is wen.
+ h2 Moon boots touch the earth.
+ | Visored faces tilt upward.
+ | Their sole thought is wen.
//- p Launching Soon™️
+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.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
//- div.usp
//- p 🕶
@@ -56,6 +75,13 @@ html( lang=content.lang )
//- a( href='/' ) Mint now
//- //- 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
h1 Acknowledgements
@@ -65,23 +91,13 @@ html( lang=content.lang )
p NFT design components by unvetica.eth and team.
div.usp
+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
+cimg.circle( size=200 src=site.system.url+'/assets/adam-miller-dBaz0xhCkPY-unsplash-cropped.jpg' )
- p Logistical support by LookingForOwls and colfax
- p Photos taken by Mike Kiev and Adam Miller. Illustrations by Katerina Limpitsouni.
+ p Logistical support by Discord users LookingForOwls and colfax.
+ 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
\ No newline at end of file