Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
urko94 committed Aug 28, 2023
2 parents e3b1d19 + a10f4d6 commit 4f60e4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ npx http-server

## Deploy to Apillon Hosting

Deploy entire project according to this documentation: [Wiki](https://wiki.apillon.io/build/2-web3-services.html#web3-hosting)

### Basic

1. If not already, register to [Apillon.io](https://app.apillon.io)
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
crossorigin="anonymous"
></script>
<script
src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js"
src="https://cdn.ethers.io/lib/ethers-5.5.umd.min.js"
type="application/javascript"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
Expand Down
4 changes: 2 additions & 2 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ async function getMyNftIDs(tokenAddress = null) {
nftIDs.push(tokenId.toNumber());
}
} catch (error) {
console.log(error);
console.warn(error);
}
return nftIDs;
}
Expand Down Expand Up @@ -340,7 +340,7 @@ async function isTokenNestable(contract) {
try {
return await contract.supportsInterface("0x42b0e56f");
} catch (e) {
console.error(e);
console.warn(e);
return false;
}
}
Expand Down

0 comments on commit 4f60e4c

Please sign in to comment.