diff --git a/src/components/pages/event/ava-2024/Rules.tsx b/src/components/pages/event/ava-2024/Rules.tsx index c3422e67..9526fbf4 100644 --- a/src/components/pages/event/ava-2024/Rules.tsx +++ b/src/components/pages/event/ava-2024/Rules.tsx @@ -123,7 +123,7 @@ export default function Rules() { <>

Round 2: The Art of Storytelling

A/ Timeline:

-

- From October 19 to November 01

+

- From October 19 to November 03

B/ Story:

- Share your artistic journey or your creative experiences. The story should be complete and convey @@ -392,7 +392,7 @@ export default function Rules() { <>

Vòng 2: The Art of Storytelling - Nghệ thuật kể chuyện

A/ Thời gian diễn ra:

-

- Từ 19/10 - 01/11

+

- Từ 19/10 - 03/11

B/ Nội dung:

- Hãy chia sẻ về câu chuyện sáng tạo nghệ thuật hoặc những trải nghiệm của bạn trong quá trình sáng diff --git a/src/pages/events/ava-2024/map/submit-portal/round3Submission.tsx b/src/pages/events/ava-2024/map/submit-portal/round3Submission.tsx index 7d28780b..af6eb8dd 100644 --- a/src/pages/events/ava-2024/map/submit-portal/round3Submission.tsx +++ b/src/pages/events/ava-2024/map/submit-portal/round3Submission.tsx @@ -389,7 +389,7 @@ export default function Round3Submission() { {...field} max={ form.watch('selectedDefaultCharacter').length + - form.watch('selectedCollectedCharacter').length < + form.watch('selectedCollectedCharacter').length <= 7 ? 1 : 0 diff --git a/src/services/wagmi/config.ts b/src/services/wagmi/config.ts index 5889a3ac..35ba5bd7 100644 --- a/src/services/wagmi/config.ts +++ b/src/services/wagmi/config.ts @@ -1,9 +1,10 @@ import getConfig from 'next/config' +import { Chain } from 'viem' import { createConfig, http } from 'wagmi' import { injected, metaMask, walletConnect } from 'wagmi/connectors' -export const storyChain = { - id: 1513, - name: 'Story Iliad Network', +export const storyChain: Chain = { + id: 1516, + name: 'Story Public Testnet', nativeCurrency: { name: 'IP', symbol: 'IP', @@ -11,14 +12,13 @@ export const storyChain = { }, rpcUrls: { default: { - http: ['https://story-testnet.aura.network'], + http: ['https://odyssey.storyrpc.io/'], }, }, blockExplorers: { default: { name: 'Storyscan', - url: 'https://testnet.storyscan.xyz/', - apiUrl: 'https://explorer-api.dev.aura.network/api', + url: 'https://odyssey-testnet-explorer.storyscan.xyz/', }, }, }