@ -8,6 +8,8 @@ import { AwesomeButton } from 'react-awesome-button';
import Typewriter from 'react-ts-typewriter' ;
import Slider from 'rc-slider' ;
import LZA from '../img/lza_menace.jpg' ;
import Carty from '../img/cartyisme.png' ;
import Boomer from '../img/unaboomer.png' ;
import Newspapers from '../img/newspapers.png' ;
import Bomb from '../img/bomb.png' ;
@ -21,8 +23,6 @@ import 'rc-slider/assets/index.css';
import '../styles/sections.css' ;
const contractAddress = '0x5FbDB2315678afecb367f032d93F642f64180aa3' ;
export class Section1 extends React . Component {
constructor ( props ) {
super ( props ) ;
@ -123,7 +123,7 @@ class GameMap extends React.Component {
< h1 id = "gameMapTitle" > Metaverse Map < / h1 >
< p id = "gameMapText" >
{ this . props . unaboomersRadicalized } / { this . props . unaboomerMaxSupply } Unaboomers radicalized and ready to terrorize the metaverse . < br / >
{ this . props . unaboomersRadicalized - this . props . unaboomersKilled } Unaboomers active . Th e project will fully begin when less tha n { this . props . unaboomerMaxSurvivorCount } Unaboomers remain standing . < br / >
{ this . props . unaboomersRadicalized - this . props . unaboomersKilled } Unaboomers active . Th is round will end and th e project will fully start whe n { this . props . unaboomerMaxSurvivorCount } or less Unaboomers remain standing . < br / >
< / p >
{ this . props . unaboomersRadicalized > 0 && (
< div id = "gameStats" >
@ -161,7 +161,8 @@ class GameMap extends React.Component {
}
}
function Section3 ( ) {
function Section3 ( props ) {
const contractAddress = props . contractAddress ;
const [ options , setOptions ] = useState ( {
unaboomerAmount : 1 ,
bombAmount : 1 ,
@ -182,7 +183,8 @@ function Section3() {
leaderKillCount : 0 ,
unaboomerMaxSupply : 0 ,
unaboomerMaxSurvivorCount : 0 ,
unaboomerMaxMintPerWallet : 0
unaboomerMaxMintPerWallet : 0 ,
readWTF : false
} ) ;
function handleStateChange ( obj ) {
setOptions ( preState => ( { ... preState , ... obj } ) ) ;
@ -217,15 +219,15 @@ function Section3() {
functionName : 'unaboomerMaxMintPerWallet'
}
] ,
watch : fals e,
watch : tru e,
cacheTime : 30 _000 ,
onSuccess ( data ) {
handleStateChange ( {
unaboomerPrice : data [ 0 ] . toString ( ) ,
bombPrice : data [ 1 ] . toString ( ) ,
unaboomerMaxSupply : data [ 2 ] . toString ( ) ,
unaboomerMaxSurvivorCount : data [ 3 ] . toString ( ) ,
unaboomerMaxMintPerWallet : data [ 4 ] . toString ( )
unaboomerMaxSupply : Number ( data [ 2 ] ) ,
unaboomerMaxSurvivorCount : Number ( data [ 3 ] ) ,
unaboomerMaxMintPerWallet : Number ( data [ 4 ] )
} ) ;
}
} ) ;
@ -267,13 +269,13 @@ function Section3() {
cacheTime : 6 _000 ,
onSuccess ( data ) {
handleStateChange ( {
unaboomerBalance : data [ 0 ] . toString ( ) ,
bombBalance : data [ 1 ] . toString ( ) ,
unaboomersRadicalized : data [ 2 ] . toString ( ) ,
bombsAssembled : data [ 3 ] . toString ( ) ,
bombsExploded : data [ 4 ] . toString ( ) ,
unaboomersKilled : data [ 5 ] . toString ( ) ,
leaderboardPointer : data [ 6 ] .toString ( ),
unaboomerBalance : Number ( data [ 0 ] ) ,
bombBalance : Number ( data [ 1 ] ) ,
unaboomersRadicalized : Number ( data [ 2 ] ) ,
bombsAssembled : Number ( data [ 3 ] ) ,
bombsExploded : Number ( data [ 4 ] ) ,
unaboomersKilled : Number ( data [ 5 ] ) ,
leaderboardPointer : Number ( data [ 6 ] )
} ) ;
}
} ) ;
@ -301,7 +303,7 @@ function Section3() {
cacheTime : 8 _000 ,
onSuccess ( data ) {
handleStateChange ( {
leaderKillCount : data . toString ( ) ,
leaderKillCount : Number ( data ) ,
} ) ;
}
} ) ;
@ -332,7 +334,7 @@ function Section3() {
const sendBombsPrepare = usePrepareContractWrite ( {
address : contractAddress ,
abi : MainABI ,
enabled : isConnected ,
enabled : isConnected && options . bombBalance > 0 ,
staleTime : 2 _000 ,
functionName : 'sendBombs' ,
args : [ options . sendBombAmount ]
@ -349,12 +351,12 @@ function Section3() {
const res = iface . decodeEventLog ( "SentBomb" , log . data , log . topics ) ;
if ( res . hit ) {
if ( res . owned ) {
NotificationManager . error ( ` Your bomb exploded during assembly and killed your Unaboomer ${ res . tokenId . toString ( ) } ` , 'oof' , 10 000) ;
NotificationManager . error ( ` Your bomb exploded during assembly and killed your Unaboomer ${ res . tokenId . toString ( ) } ` , 'oof' , 8 000) ;
} else {
NotificationManager . success ( ` Your bomb killed Unaboomer ${ res . tokenId . toString ( ) } ` , 'Got em!' , 10 000) ;
NotificationManager . success ( ` Your bomb killed Unaboomer ${ res . tokenId . toString ( ) } ` , 'Got em!' , 8 000) ;
}
} else {
NotificationManager . warning ( ` Your bomb for Unaboomer ${ res . tokenId . toString ( ) } was a dud ` , 'oof' , 10 000) ;
NotificationManager . warning ( ` Your bomb for Unaboomer ${ res . tokenId . toString ( ) } was a dud ` , 'oof' , 8 000) ;
}
} )
@ -362,79 +364,139 @@ function Section3() {
} ) ;
return (
< section className = "section" id = "mintSection" >
{ isConnected &&
{ ! isConnected && (
< div id = "heroText" >
< h1 > connect your web3 wallet < / h1 >
< / div >
) }
{ isConnected && options . unaboomersKilled >= options . unaboomerMaxSupply - options . unaboomerMaxSurvivorCount && options . unaboomerMaxSupply > 0 && (
< div id = "heroText" >
< h4 style = { { margin : 0 } } > the culling of weak warriors has completed < / h4 >
< p >
{ options . unaboomersRadicalized - options . unaboomersKilled } Unaboomers remain standing . < br / > < br / >
These warriors will advance to the next round of the game where they will work together
to continue to terrorize the metaverse in order to lead a revolution .
< / p >
< p style = { { fontSize : '.8em' , color : '#FF3E41' } } > We will not rest until our objective is complete . < / p >
< / div >
) }
{ isConnected && options . unaboomersKilled < options . unaboomerMaxSupply - options . unaboomerMaxSurvivorCount &&
< >
< h1 id = "mintTitle" >
WTF
< / h1 >
< p id = "mintText" >
The degens are taking us all on an utterly reckless ride into the unknown . < br / > < br / >
Many people understand something of what Web3 progress is doing to us yet take a passive attitude toward degeneracy because they think it is inevitable . < br / > < br / >
But we don ’ t think it is inevitable . We think it can be stopped . < br / > < br / >
The two main tasks for the present are to < span className = "strong" > promote social stress and instability in the Web3 community < / span > and < span className = "strong" > to develop and propagate an ideology that opposes degeneracy and the corporate venture capital system < / span > . When the system becomes sufficiently stressed and unstable , a revolution against rent seekers , scammers , and sociopaths may be possible . < br / > < br / >
JOIN US .
< / p >
< div className = "mintContainer" >
< div className = "mintItem" >
< h1 > Radicalize a Boomer < / h1 >
< p > Radicalizing a boomer will mint ERC - 721 BOOMR tokens with images of a pixel art Web3 Unaboomers . < / p >
< p > You have { options . unaboomerBalance } BOOMR < / p >
< img src = { Boomer } alt = "" width = "120px" / >
{ options . unaboomerBalance < options . unaboomerMaxMintPerWallet && ( < >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { radicalizeBoomersPrepare . status == 'error' } onPress = { ( ) => radicalizeBoomersWrite . write ? . ( ) } >
{ radicalizeBoomersWrite . isLoading && < > minting { options . unaboomerAmount } < / > }
{ radicalizeBoomersWrite . isIdle && < > mint { options . unaboomerPreviewAmount } ( { ethers . utils . formatEther ( ( options . unaboomerPrice * options . unaboomerPreviewAmount ) . toString ( ) ) } Ξ ) < / > }
{ radicalizeBoomersWrite . isSuccess && < > sent < / > }
{ radicalizeBoomersWrite . isError && < > error < / > }
< / AwesomeButton >
< / p >
< Slider className = "slider" min = { 1 } max = { options . unaboomerMaxMintPerWallet - options . unaboomerBalance } onAfterChange = { ( v ) => handleStateChange ( { unaboomerAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { unaboomerPreviewAmount : v } ) ;
radicalizeBoomersWrite . reset ( ) ;
} } / >
< / > ) || < h2 > max reached < / h2 > }
< / div >
< div className = "mintItem" >
< h1 > Assemble Bombs < / h1 >
< p > Assembling bombs will mint ERC - 1155 BOMB tokens with an image of a pixel art bomb to send to random Unaboomers to kill them . < / p >
< p > You have { options . bombBalance } BOMB < / p >
< img src = { Bomb } alt = "" width = "100px" / >
{ ! options . readWTF && (
< >
< h1 id = "mintTitle" >
Web3 Community and Its Future
< / h1 >
< p id = "mintText" >
The degens are taking us all on an utterly reckless ride into the unknown . < br / > < br / >
Many people understand something of what Web3 progress is doing to us yet take a passive attitude toward degeneracy because they think it is inevitable . < br / > < br / >
But we don ’ t think it is inevitable . We think it can be stopped . < br / > < br / >
The two main tasks for the present are to < span className = "strong" > promote social stress and instability in the Web3 community < / span > and < span className = "strong" > to develop and propagate an ideology that opposes degeneracy and the corporate venture capital system < / span > . When the system becomes sufficiently stressed and unstable , a revolution against rent seekers , scammers , and sociopaths may be possible . < br / > < br / >
< / p >
< AwesomeButton ripple = { true } onPress = { ( ) => handleStateChange ( { readWTF : true } ) } >
join us
< / AwesomeButton >
< / >
) || (
< >
< h1 id = "mintTitle" >
WTF
< / h1 >
< p id = "mintText" >
This is a chain based game . There is a max supply of { options . unaboomerMaxSupply } Unaboomer tokens ( BOOMR ) and an infinite supply of Mailbomb tokens ( BOMB ) .
Players will mint BOOMR and send BOMB to kill the other players . There is a pseudo - random element which may cause your bomb to malfuction , killing your own token . < br / > < br / >
This is the first round of the game in which we select the fiercest warriors to lead the decentralized revolution .
There will be up to { options . unaboomerMaxSurvivorCount } survivors . The round will conclude when the survivor count has been reached . < br / > < br / >
< / p >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { assembleBombsPrepare . status == 'error' } onPress = { ( ) => assembleBombsWrite . write ? . ( ) } >
{ assembleBombsWrite . isLoading && < > minting { options . bombAmount } < / > }
{ assembleBombsWrite . isIdle && < > mint { options . bombPreviewAmount } ( { ethers . utils . formatEther ( ( options . bombPrice * options . bombPreviewAmount ) . toString ( ) ) } Ξ ) < / > }
{ assembleBombsWrite . isSuccess && < > sent < / > }
{ assembleBombsWrite . isError && < > error < / > }
< / AwesomeButton >
Godspeed .
< / p >
< Slider className = "slider" min = { 1 } max = { 50 } onAfterChange = { ( v ) => handleStateChange ( { bombAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { bombPreviewAmount : v } ) ;
assembleBombsWrite . reset ( ) ;
} } / >
< / div >
< div className = "mintItem" >
< h1 > Send Bombs < / h1 >
< p > Sending bombs will burn your BOMB token and kill a BOOMR token at random . Be careful not to kill yourself in the process . < / p >
< p > There are { options . unaboomersRadicalized - options . unaboomersKilled } BOOMR available to kill < / p >
< img src = { Explosion } alt = "" width = "120px" / >
{ options . bombBalance > 0 && ( < >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { sendBombsPrepare . status == 'error' } onPress = { ( ) => sendBombsWrite . write ? . ( ) } >
{ sendBombsWrite . isLoading && < > sending { options . sendBombAmount } < / > }
{ sendBombsWrite . isIdle && < > send { options . sendBombPreviewAmount } ( ~ 0 Ξ ) < / > }
{ sendBombsWrite . isSuccess && < > sent < / > }
{ sendBombsWrite . isError && < > error < / > }
< / AwesomeButton >
< / p >
< Slider className = "slider" min = { 1 } max = { options . bombBalance } onAfterChange = { ( v ) => handleStateChange ( { sendBombAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { sendBombPreviewAmount : v } ) ;
sendBombsWrite . reset ( ) ;
} } / >
< / > ) || < h2 > no bombs < / h2 > }
< / div >
< / div >
< span id = "team" >
< span className = "teamMember" >
< img src = { LZA } width = "150px" / >
< p className = "nopad" > < a href = "https://twitter.com/lza_menace" target = "_blank" > lza _menace < / a > - dev < / p >
< / span >
< span className = "teamMember" >
< img src = { Carty } width = "150px" / >
< p className = "nopad" > < a href = "https://twitter.com/cartyisme" target = "_blank" > cartyisme < / a > - artist < / p >
< / span >
< / span >
< div className = "mintContainer" >
< div className = "mintItem" >
< h1 > Radicalize a Boomer < / h1 >
< p > Radicalizing a boomer will mint ERC - 721 BOOMR tokens with images of a pixel art Web3 Unaboomers . < / p >
< p > You have { options . unaboomerBalance } / { options . unaboomerMaxMintPerWallet } BOOMR < / p >
< img src = { Boomer } alt = "" width = "120px" / >
{ options . unaboomerBalance < options . unaboomerMaxMintPerWallet && options . unaboomersKilled + options . unaboomersRadicalized < options . unaboomerMaxSupply && (
< >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { radicalizeBoomersPrepare . status == 'error' } onPress = { ( ) => radicalizeBoomersWrite . write ? . ( ) } >
{ radicalizeBoomersWrite . isLoading && < > minting { options . unaboomerAmount } < / > }
{ radicalizeBoomersWrite . isIdle && < > mint { options . unaboomerPreviewAmount } ( { ethers . utils . formatEther ( ( options . unaboomerPrice * options . unaboomerPreviewAmount ) . toString ( ) ) } Ξ ) < / > }
{ radicalizeBoomersWrite . isSuccess && < > sent < / > }
{ radicalizeBoomersWrite . isError && < > error < / > }
< / AwesomeButton >
< / p >
< Slider className = "slider" min = { 1 } max = { options . unaboomerMaxMintPerWallet - options . unaboomerBalance } onAfterChange = { ( v ) => handleStateChange ( { unaboomerAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { unaboomerPreviewAmount : v } ) ;
radicalizeBoomersWrite . reset ( ) ;
} } / >
< / >
) || options . unaboomerBalance < options . unaboomerMaxMintPerWallet && options . unaboomersKilled + options . unaboomersRadicalized < options . unaboomerMaxSupply && (
< h2 > max per wallet reached < / h2 >
) || (
< h2 > max supply reached < / h2 >
) }
< / div >
< div className = "mintItem" >
< h1 > Assemble Bombs < / h1 >
< p > Assembling bombs will mint ERC - 1155 BOMB tokens with an image of a pixel art bomb to send to random Unaboomers to kill them . < / p >
< p > You have { options . bombBalance } BOMB < / p >
< img src = { Bomb } alt = "" width = "100px" / >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { assembleBombsPrepare . status == 'error' } onPress = { ( ) => assembleBombsWrite . write ? . ( ) } >
{ assembleBombsWrite . isLoading && < > minting { options . bombAmount } < / > }
{ assembleBombsWrite . isIdle && < > mint { options . bombPreviewAmount } ( { ethers . utils . formatEther ( ( options . bombPrice * options . bombPreviewAmount ) . toString ( ) ) } Ξ ) < / > }
{ assembleBombsWrite . isSuccess && < > sent < / > }
{ assembleBombsWrite . isError && < > error < / > }
< / AwesomeButton >
< / p >
< Slider className = "slider" min = { 1 } max = { 50 } onAfterChange = { ( v ) => handleStateChange ( { bombAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { bombPreviewAmount : v } ) ;
assembleBombsWrite . reset ( ) ;
} } / >
< / div >
< div className = "mintItem" >
< h1 > Send Bombs < / h1 >
< p > Sending bombs will burn your BOMB token and kill a BOOMR token at random . Try not to kill yourself in the process . < / p >
< p > There are { options . unaboomersRadicalized - options . unaboomersKilled } BOOMR available to kill < / p >
< img src = { Explosion } alt = "" width = "120px" / >
{ options . bombBalance > 0 && ( < >
< p >
< AwesomeButton type = "secondary" ripple = { true } disabled = { sendBombsPrepare . status == 'error' } onPress = { ( ) => sendBombsWrite . write ? . ( ) } >
{ sendBombsWrite . isLoading && < > sending { options . sendBombAmount } < / > }
{ sendBombsWrite . isIdle && < > send { options . sendBombPreviewAmount } ( ~ 0 Ξ ) < / > }
{ sendBombsWrite . isSuccess && < > sent < / > }
{ sendBombsWrite . isError && < > error < / > }
< / AwesomeButton >
< / p >
< Slider className = "slider" min = { 1 } max = { options . bombBalance } onAfterChange = { ( v ) => handleStateChange ( { sendBombAmount : v } ) } onChange = { ( v ) => {
handleStateChange ( { sendBombPreviewAmount : v } ) ;
sendBombsWrite . reset ( ) ;
} } / >
< / > ) || < h2 > no bombs < / h2 > }
< / div >
< / div >
< / >
) }
< NotificationContainer / >
< / > }
{ options . unaboomerMaxSupply > 0 && (
< GameMap
bombsAssembled = { options . bombsAssembled }
bombBalance = { options . bombBalance }
@ -446,22 +508,22 @@ function Section3() {
unaboomerMaxSupply = { options . unaboomerMaxSupply }
unaboomerMaxSurvivorCount = { options . unaboomerMaxSurvivorCount }
/ >
</ >
||
< div id = "heroText" >
< h1 > connect your wallet to play < / h1 >
</ div >
}
) || (
< div id = "heroText" >
< h1 > loading ... < / h1 >
< / div >
)}
< / section >
)
}
export function AllSections ( ) {
export function AllSections ( props ) {
return (
< >
< Section1 / >
< Section2 / >
< Section3 / >
< Section3 contractAddress = { props . contractAddress } / >
< / >
)
}