Skip to content

Commit

Permalink
restrict default assets
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleA committed Oct 10, 2023
1 parent 94bcd1a commit 941ce8a
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions examples/react/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ function App() {
// logoUrlDarkMode: 'sw-logo-white.svg',
// logoUrlLightMode: 'sw-logo-black.svg',
},
// displayedAssets: [
// // Matic token
// {
// contractAddress: ethers.constants.AddressZero,
// chainId: 137,
// },
// // USDC token
// {
// contractAddress: '0x2791bca1f2de4661ed88a30c99a7a9449aa84174',
// chainId: 137,
// },
// // skyweaver collectibles
// {
// contractAddress: '0x631998e91476da5b870d741192fc5cbc55f5a52e',
// chainId: 137
// }
// ],
displayedAssets: [
// Matic token
{
contractAddress: ethers.constants.AddressZero,
chainId: 137,
},
// USDC token
{
contractAddress: '0x2791bca1f2de4661ed88a30c99a7a9449aa84174',
chainId: 137,
},
// skyweaver collectibles
{
contractAddress: '0x631998e91476da5b870d741192fc5cbc55f5a52e',
chainId: 137
}
],
}

return (
Expand Down

0 comments on commit 941ce8a

Please sign in to comment.