Implement contract UIs (#2)

* Add instantiate page for minter

* Add query page to minter contract

* Add execute page for minter contract

* Add contracts index page

* Refaactor sg721 helper files

* Add instantiate page

* Add query page for sg721

* Add execute page for sg721 contract

* Copy page templates for whitelist contracts

* Add instantitate for whitelist contract

* Add query page to whitelist contract

* Add execute page for whitelist contract
This commit is contained in:
Arda Nakışçı
2022-07-19 10:53:03 +03:00
committed by GitHub
parent 3a9a523e01
commit aa42f8763a
40 changed files with 3389 additions and 463 deletions
+3 -7
View File
@@ -1,13 +1,9 @@
export const CW721_BASE_CODE_ID = parseInt(process.env.NEXT_PUBLIC_CW721_BASE_CODE_ID, 10)
export const SG721_CODE_ID = parseInt(process.env.NEXT_PUBLIC_SG721_CODE_ID, 10)
export const MINTER_CODE_ID = parseInt(process.env.NEXT_PUBLIC_MINTER_CODE_ID, 10)
export const WHITELIST_CODE_ID = parseInt(process.env.NEXT_PUBLIC_WHITELIST_CODE_ID, 10)
export const NETWORK = process.env.NEXT_PUBLIC_NETWORK
export const S3_ENDPOINT = process.env.NEXT_PUBLIC_S3_ENDPOINT
export const S3_REGION = process.env.NEXT_PUBLIC_S3_REGION
export const S3_KEY = process.env.NEXT_PUBLIC_S3_KEY
export const S3_SECRET = process.env.NEXT_PUBLIC_S3_SECRET
export const S3_BUCKET = process.env.NEXT_PUBLIC_S3_BUCKET
export const BLOCK_EXPLORER_URL = process.env.NEXT_PUBLIC_BLOCK_EXPLORER_URL
export const WEBSITE_URL = process.env.NEXT_PUBLIC_WEBSITE_URL
+2 -5
View File
@@ -13,16 +13,13 @@ export const links = {
Telegram: `https://t.me/joinchat/ZQ95YmIn3AI0ODFh`,
Twitter: `https://twitter.com/stargazezone`,
Explorer: BLOCK_EXPLORER_URL,
// reference links
'Docs Create Collection': ``,
'Docs CW721 Base': ``,
Documentation: 'https://docs.stargaze.zone/guides/readme',
}
export const footerLinks = [
{ text: 'Block Explorer', href: links.Explorer },
{ text: 'Documentation', href: links.Docs },
{ text: 'Submit an issue', href: `${links.GitHub}/issues/new/choose` },
{ text: 'Submit an issue', href: `${links.GitHub}/issues/new` },
{ text: 'Powered by Stargaze', href: links.Stargaze },
]