Skip to content

Commit

Permalink
hardcode test nft
Browse files Browse the repository at this point in the history
  • Loading branch information
haunv3 committed Jul 18, 2023
1 parent 521dc40 commit 122cdbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/extension/src/pages/nft/nft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export const NftPage: FunctionComponent = observer(() => {
const getListNft = async () => {
try {
const client = await cosmwasm.CosmWasmClient.connect(chainStore.current.rpc);
const msg = generateMsgNft(Limit, accountInfo.bech32Address, StartAfter);
// accountInfo.bech32Address
const msg = generateMsgNft(Limit, 'orai1ntdmh848kktumfw5tx8l2semwkxa5s7e5rs03x', StartAfter);
const res = await client.queryContractSmart(NftContract, msg);
if (res) {
fetchInfoNft(res?.tokens?.[0], client);
Expand Down

0 comments on commit 122cdbd

Please sign in to comment.