Skip to content

Commit

Permalink
Zora to zorb
Browse files Browse the repository at this point in the history
  • Loading branch information
payton committed Feb 5, 2022
1 parent ff05b3a commit cdc9354
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/notepad/app/static/app/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -94899,7 +94899,7 @@ document.addEventListener('DOMContentLoaded', () => {
notepads = [
['personal', document.getElementById('personalNotepad')],
['ens', document.getElementById('ensNotepad')],
['zora', document.getElementById('zoraNotepad')],
['zorb', document.getElementById('zorbNotepad')],
['cryptoBaristas', document.getElementById('cryptoBaristasNotepad')],
];
notepads.forEach((value, index) => {
Expand Down
2 changes: 1 addition & 1 deletion examples/notepad/app/static/app/bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/notepad/app/templates/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@
ENS Notepad
</div>
</button>
<button class="m-1" id="zoraNotepad">
<button class="m-1" id="zorbNotepad">
<div class="flex items-left justify-evenly">
Zora Notepad
Zorb Notepad
</div>
</button>
<button class="m-1" id="cryptoBaristasNotepad">
Expand Down
4 changes: 2 additions & 2 deletions examples/notepad/frontend/src/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const signIn = async (connector: Providers) => {
const message = new SiweMessage({
domain: document.location.host,
address,
chainId: `${await provider.getNetwork().then(({ chainId }) => chainId)}`,
chainId: parseInt(`${await provider.getNetwork().then(({ chainId }) => chainId)}`),
uri: document.location.origin,
version: '1',
statement: 'Windows Ninety Eth Example',
Expand Down Expand Up @@ -215,7 +215,7 @@ document.addEventListener('DOMContentLoaded', () => {
notepads = [
['personal', document.getElementById('personalNotepad') as HTMLButtonElement],
['ens', document.getElementById('ensNotepad') as HTMLButtonElement],
['zora', document.getElementById('zoraNotepad') as HTMLButtonElement],
['zorb', document.getElementById('zorbNotepad') as HTMLButtonElement],
['cryptoBaristas', document.getElementById('cryptoBaristasNotepad') as HTMLButtonElement],
];
notepads.forEach((value, index) => {
Expand Down

0 comments on commit cdc9354

Please sign in to comment.