Skip to content

Commit

Permalink
changed text, MM wallet name and Emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
Willie Villanueva committed Feb 14, 2022
1 parent 722a81c commit 8c6ca20
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ section {
}
.countdown .clock-item .count-number {
background: var(--accent-color);
color: var(--font-color);
color: #ffffff;
font-size: 2rem;
font-weight: 700;
font-family: var(--font-secondary);
Expand Down
2 changes: 1 addition & 1 deletion functions/isowner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fetch = require('node-fetch')

const CONTRACT = process.env.CONTRACT_ADDRESS;
const AUTH = process.env.NFTPORT_AUTH;
const chain = "polygon";
const chain = "ethereum";
const include = "metadata";

exports.handler = async (event, context) => {
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@
<p class="count-text">Sec</p>
</li>
</ul>
<h1>White List Junkiez NFT Drop Coming Soon!!</h1>
<h1>Whitelist Junkiez NFT Drop Coming Soon!!</h1>

<p>This is the Whitelist for the ULTIMATE Whitelist Junkiez!</p>
<p>The Whitelist for the ULTIMATE Whitelist Junkiez!</p>
<a href="https://discord.gg/ZYYMbEkKPs" target="_blank" rel="noopener noreferrer" class="hero-btn btn"
><span>Join The Junkiez</span>
><span>Mint Whitelist Junkiez</span>
</a>
</div>
</section>
Expand Down
10 changes: 5 additions & 5 deletions js/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// METAMASK CONNECTION
const TIMEOUT = 1000;
const COLLECTION_NAME = 'CodeCats';
const COLLECTION_NAME = 'Whitelist Junkiez';
let editions = [];
let dots = 1;

Expand Down Expand Up @@ -78,15 +78,15 @@ function updateStatusText(isOwner, checking) {
const statusText = document.querySelector('.owner-status');
if(checking) {
if(isOwner) {
statusText.innerText = `You do own ${COLLECTION_NAME}!! 😻 Let's see how many${renderDots(dots)}`;
statusText.innerText = `You own a ${COLLECTION_NAME}!! πŸ‘€ Let's see how many${renderDots(dots)}`;
} else {
statusText.innerText = `Checking to see if you own any ${COLLECTION_NAME} 😻${renderDots(dots)}`;
statusText.innerText = `Checking to see if you own any ${COLLECTION_NAME} πŸ‘€${renderDots(dots)}`;
}
} else {
if(isOwner) {
statusText.innerText = `You own ${editions.length} ${COLLECTION_NAME}!! 😻`;
statusText.innerText = `You own ${editions.length} ${COLLECTION_NAME}!! πŸ‘€`;
} else {
statusText.innerText = `You don't own any ${COLLECTION_NAME} 😿`;
statusText.innerText = `You don't own any ${COLLECTION_NAME} πŸ“‰`;
}
}
dots = dots === 3 ? 1 : dots + 1;
Expand Down

0 comments on commit 8c6ca20

Please sign in to comment.