diff --git a/pages/contracts/sg721/execute.tsx b/pages/contracts/sg721/execute.tsx index 446e948..1fc17bf 100644 --- a/pages/contracts/sg721/execute.tsx +++ b/pages/contracts/sg721/execute.tsx @@ -45,8 +45,8 @@ const Sg721ExecutePage: NextPage = () => { const contractState = useInputState({ id: 'contract-address', name: 'contract-address', - title: 'Minter Address', - subtitle: 'Address of the Minter contract', + title: 'Sg721 Address', + subtitle: 'Address of the Sg721 contract', }) const messageState = useInputState({ diff --git a/pages/contracts/sg721/query.tsx b/pages/contracts/sg721/query.tsx index 05138f8..f966f60 100644 --- a/pages/contracts/sg721/query.tsx +++ b/pages/contracts/sg721/query.tsx @@ -48,7 +48,7 @@ const Sg721QueryPage: NextPage = () => { }) const tokenId = tokenIdState.value - const [type, setType] = useState('owner_of') + const [type, setType] = useState('collection_info') const addressVisible = ['approval', 'all_operators', 'tokens'].includes(type) const tokenIdVisible = ['owner_of', 'approval', 'approvals', 'nft_info', 'all_nft_info'].includes(type) @@ -108,6 +108,7 @@ const Sg721QueryPage: NextPage = () => { 'placeholder:text-white/50', 'focus:ring focus:ring-plumbus-20', )} + defaultValue="collection_info" id="contract-query-type" name="query-type" onChange={(e) => setType(e.target.value as QueryType)} diff --git a/pages/index.tsx b/pages/index.tsx index a600e4a..e16adb9 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -6,7 +6,7 @@ const HomePage: NextPage = () => { return (
- Brand Text + Brand Text

Welcome!