diff --git a/src/lib/i18n/locales/zh-TW/common.json b/src/lib/i18n/locales/zh-TW/common.json index fdaa1d58..5999eb33 100644 --- a/src/lib/i18n/locales/zh-TW/common.json +++ b/src/lib/i18n/locales/zh-TW/common.json @@ -22,7 +22,6 @@ "Owner": "擁有者", "Transaction Hash": "交易雜湊值", "IPFS Address": "IPFS 位址", - "BNB Greenfield Address": "BNB Greenfield 位址", "Creation": "創作", "Last Update": "最後更新", "Create Character": "創建身份", diff --git a/src/lib/i18n/locales/zh/common.json b/src/lib/i18n/locales/zh/common.json index 3b77f6c8..87f4d98b 100644 --- a/src/lib/i18n/locales/zh/common.json +++ b/src/lib/i18n/locales/zh/common.json @@ -22,7 +22,6 @@ "Owner": "所有者", "Transaction Hash": "交易哈希", "IPFS Address": "IPFS 地址", - "BNB Greenfield Address": "BNB Greenfield 地址", "Creation": "创作", "Last Update": "最后更新", "Create Character": "创建角色", diff --git a/src/queries/site.ts b/src/queries/site.ts index 886f9c24..a3fb1e08 100644 --- a/src/queries/site.ts +++ b/src/queries/site.ts @@ -503,15 +503,6 @@ export const useGetMiraBalance = (characterId?: number) => { }) } -export const useGetGreenfieldId = (cid?: string) => { - return useQuery(["getGreenfieldId", cid], async () => { - if (!cid) { - return null - } - return siteModel.getGreenfieldId(cid) - }) -} - export const useGetCharacterCard = ({ siteId, address,