Skip to content

Commit

Permalink
update api url
Browse files Browse the repository at this point in the history
  • Loading branch information
현수영 authored and 현수영 committed Nov 13, 2023
1 parent a184d7e commit 4d9a738
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Verification/CosmWasm/CosmWasm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const CosmWasm = () => {
useEffect(() => {
const fetchData = async () => {
const result = await axios(
'https://prod.neutron.compiler.welldonestudio.io/neutron-deploy-histories?chainId=testnet&offset=0&fetchSize=50',
'https://prod.neutron.compiler.welldonestudio.io/deploy-histories?chainId=testnet&offset=0&fetchSize=50',
);

console.log(result.data)
Expand Down Expand Up @@ -266,7 +266,7 @@ export const CosmWasm = () => {
<Typography variant="body1" gutterBottom>
You can use the following API to check if a specific contract is verifiable.
<CodeBlock>
curl 'https://prod.neutron.compiler.welldonestudio.io/neutron-deploy-histories/pion-1?contract=neutron1gesll6lepas7xzt22pg7r07v9vd652md82z8m2fqp5zt43rznu5sl42s74'
curl 'https://prod.neutron.compiler.welldonestudio.io/deploy-histories/pion-1?contract=neutron1gesll6lepas7xzt22pg7r07v9vd652md82z8m2fqp5zt43rznu5sl42s74'
</CodeBlock>
</Typography>
<Typography variant="body1" gutterBottom>
Expand All @@ -285,7 +285,7 @@ export const CosmWasm = () => {
<Typography variant="body1" gutterBottom>
You can use the following API to retrieve a complete list of verifiable contracts:
<CodeBlock>
curl 'https://prod.neutron.compiler.welldonestudio.io/neutron-deploy-histories?chainId=testnet&offset=0&fetchSize=50'
curl 'https://prod.neutron.compiler.welldonestudio.io/deploy-histories?chainId=testnet&offset=0&fetchSize=50'
</CodeBlock>
</Typography>
<Typography variant="body1" gutterBottom>
Expand Down

0 comments on commit 4d9a738

Please sign in to comment.