diff --git a/examples/svelte-vite-template-web3/src/Contracts.svelte b/examples/svelte-vite-template-web3/src/Contracts.svelte index 2368c4b..225459e 100644 --- a/examples/svelte-vite-template-web3/src/Contracts.svelte +++ b/examples/svelte-vite-template-web3/src/Contracts.svelte @@ -17,7 +17,6 @@
The following code initialize the $contracts store with the ERC20 LINK Token. Here we use the #await svelte block to load the token totalSupply of the contract @@ -53,7 +52,7 @@ {:else}
- Please first connect + Please first connect connect to the görli network to be able to use this page.
diff --git a/examples/svelte-vite-template-web3/src/Providers.svelte b/examples/svelte-vite-template-web3/src/Providers.svelte index 3bdd173..841a174 100644 --- a/examples/svelte-vite-template-web3/src/Providers.svelte +++ b/examples/svelte-vite-template-web3/src/Providers.svelte @@ -21,8 +21,7 @@ Gnosis: () => evm.setProvider('https://rpc.gnosischain.com'), Arbitrum: () => evm.setProvider('https://arb1.arbitrum.io/rpc'), } - - console.log(type, handler[type]) + console.log('[example]', type, handler[type]) await handler[type]() pending = false diff --git a/src/components/Balance.svelte b/src/components/Balance.svelte index ef0d924..c83c5be 100644 --- a/src/components/Balance.svelte +++ b/src/components/Balance.svelte @@ -1,7 +1,7 @@ + + + + diff --git a/src/components/Jazzicon.svelte b/src/components/Jazzicon.svelte new file mode 100644 index 0000000..726ce64 --- /dev/null +++ b/src/components/Jazzicon.svelte @@ -0,0 +1,23 @@ + + + diff --git a/src/components/index.js b/src/components/index.js index a5e0f63..b56369e 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -1,3 +1,5 @@ -import Balance from './Balance.svelte' +import Balance from "./Balance.svelte"; +import Identicon from "./Identicon.svelte"; +import Jazzicon from "./Jazzicon.svelte"; -export { Balance } +export { Balance, Identicon, Jazzicon };