diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index ef03564..f2752bb 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -3,10 +3,10 @@ -

Copyright © 2023 Banfts

+

Copyright © 2024 Banfts

diff --git a/src/lib/components/Header.svelte b/src/lib/components/Header.svelte index 217dccf..8ae1091 100644 --- a/src/lib/components/Header.svelte +++ b/src/lib/components/Header.svelte @@ -2,7 +2,7 @@ import { page } from '$app/stores'; import { goto } from '$app/navigation'; - import { ONE_DAY_MS } from '$lib/config/constants.js'; + import { FOURTEEN_DAY_MS } from '$lib/config/constants.js'; import { sessionAddress, loginTimestamp } from '$lib/services/stores.js'; async function logoutConfirm() { @@ -51,7 +51,7 @@ Official Sales
- All Minters + Minters
@@ -65,17 +65,16 @@ diff --git a/src/lib/components/ListingCard.svelte b/src/lib/components/ListingCard.svelte index 2b0c5cc..6d36cc5 100644 --- a/src/lib/components/ListingCard.svelte +++ b/src/lib/components/ListingCard.svelte @@ -34,7 +34,7 @@

{metadata.name}

-

Ask Price

+

Ask Price:

{listing.ask_price} BAN

diff --git a/src/lib/config/constants.js b/src/lib/config/constants.js index b0f69b5..426d819 100644 --- a/src/lib/config/constants.js +++ b/src/lib/config/constants.js @@ -8,4 +8,4 @@ export const BANANO_PREFIX = 'ban_'; export const PER_PAGE = 8; -export const ONE_DAY_MS = 24*60*60*1000; +export const FOURTEEN_DAY_MS = 24*60*60*1000*14; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 5c4a5eb..f2ae7ae 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,5 +1,5 @@ @@ -13,7 +13,7 @@

Banfts Marketplace

Buy and sell Banano NFTs securely and effortlessly! No registration required.

- {#if $sessionAddress.startsWith("ban_") && $loginTimestamp > Date.now() - ONE_DAY_MS} + {#if $sessionAddress.startsWith("ban_") && $loginTimestamp > Date.now() - FOURTEEN_DAY_MS}

You appear to be already logged in.

{/if} Login with signature diff --git a/src/routes/account/+page.svelte b/src/routes/account/+page.svelte index d720cbd..b69801f 100644 --- a/src/routes/account/+page.svelte +++ b/src/routes/account/+page.svelte @@ -70,7 +70,7 @@

Account Information

-

Account { $sessionAddress === data.account.address ? "(you)" : "" }

+

Account { $sessionAddress === data.account.address ? "" : "" }

Description

@@ -83,16 +83,16 @@ Scroll To Owned NFTs
-

Details

+

Details:

- Registration Date + Registration Date:

{data.account.registered_timestamp ? new Date(Number(data.account.registered_timestamp)) : 'Unregistered'}

- Total Trades -

Coming soon tm

- Total Listings -

Coming soon tm

- Total Assets + Total Trades: +

Coming Soon™

+ Total Listings: +

Coming Soon™

+ Total Assets:

{data.account.assets.length}

*Please note that it may take some time for the crawler to reflect any recent NFT sends/receives

diff --git a/src/routes/explorer/+page.svelte b/src/routes/explorer/+page.svelte index 2906151..4f1da1e 100644 --- a/src/routes/explorer/+page.svelte +++ b/src/routes/explorer/+page.svelte @@ -75,7 +75,7 @@
-

Featured

+

Featured:

@@ -90,7 +90,7 @@

Asset Name

-

Ask Price

+

Ask Price:

199 BAN

diff --git a/src/routes/explorer/assets/+page.svelte b/src/routes/explorer/assets/+page.svelte index f80b72e..7e56459 100644 --- a/src/routes/explorer/assets/+page.svelte +++ b/src/routes/explorer/assets/+page.svelte @@ -72,11 +72,11 @@
-

Asset information

+

Asset information:

{data.asset_metadata.name}

-

Description

+

Description:

{data.asset_metadata.description}

@@ -86,18 +86,18 @@ Find in the Marketplace
-

Details

- Supply Hash +

Details:

+ Supply Hash:

{data.asset.supply_hash}

- Mint Hash + Mint Hash:

{data.asset.mint_hash}

- Owner + Owner:

{data.asset.owner}

- Asset Representative + Asset Representative:

{data.asset_representative}

- Issuer + Issuer:

{data.asset_metadata.properties.issuer}

- Lock status + Lock status:

{data.asset.locked ? 'Locked' : 'Unlocked'}

diff --git a/src/routes/explorer/minters/+page.svelte b/src/routes/explorer/minters/+page.svelte index 1b0314c..6c47ac6 100644 --- a/src/routes/explorer/minters/+page.svelte +++ b/src/routes/explorer/minters/+page.svelte @@ -80,10 +80,10 @@ Scroll To Supply NFTs
-

Details

- Owned NFTs +

Details:

+ Owned NFTs:

Click Here

- External Link + External Link:

{#if data.info.external_url} @@ -91,7 +91,7 @@ No external link {/if}

- Total Supply NFTs + Total Supply NFTs:

{data.supplies.length}

diff --git a/src/routes/explorer/supply/+page.svelte b/src/routes/explorer/supply/+page.svelte index 3ccde2d..714d810 100644 --- a/src/routes/explorer/supply/+page.svelte +++ b/src/routes/explorer/supply/+page.svelte @@ -103,18 +103,18 @@ Find in the Marketplace
-

Details

- Metadata Representative +

Details:

+ Metadata Representative:

{data.info.asset_supply.metadata_representative}

- Issuer + Issuer:

{data.info.asset_supply.minter_address}

- Max Supply + Max Supply:

{ data.info.asset_supply.max_supply === 0 ? "No Limit" : data.info.asset_supply.max_supply }

- Total Minted + Total Minted:

{data.count}/{ data.info.asset_supply.max_supply === 0 ? "∞" : data.info.asset_supply.max_supply }

- Protocol Version + Protocol Version:

{data.info.asset_supply.version.major_version}.{data.info.asset_supply.version.minor_version}.{data.info.asset_supply.version.patch_version}

- External URL + External URL:

{ data.info.asset_supply.nft_metadata.external_url ? data.info.asset_supply.nft_metadata.external_url : "None" }

diff --git a/src/routes/minting/+page.svelte b/src/routes/minting/+page.svelte index 24c9ce8..8a848b6 100644 --- a/src/routes/minting/+page.svelte +++ b/src/routes/minting/+page.svelte @@ -176,7 +176,7 @@ -->
-

Something not going quite right? Check out our hopefully helpful help page. We recommend you run this locally for security reasons. Also, generate a new seed just for Banano NFTs.

+

Something not going quite right? Check out our hopefully helpful help page. We recommend you run this locally for security reasons. Please generate a new, fresh, seed for minting Banano NFTs.

{#if mintSuccess}