-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deps, apply canary * add loading states and tag canary * Apply web3modal patches * update to latest monorepo packages * remove manual metamask * Use latest monorepo canary * Update to 2.8.3 monorepo packages * tag 2.5.3
- Loading branch information
Showing
21 changed files
with
444 additions
and
383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
{ | ||
"name": "laboratory", | ||
"version": "2.5.2", | ||
"version": "2.5.3", | ||
"private": true, | ||
"scripts": { | ||
"dev": "rm -rf .next; next dev", | ||
"build": "next build" | ||
}, | ||
"dependencies": { | ||
"@nextui-org/react": "1.0.0-beta.13", | ||
"@walletconnect/ethereum-provider": "2.8.1", | ||
"@walletconnect/modal": "2.5.2", | ||
"@walletconnect/modal-auth-html": "2.5.2", | ||
"@walletconnect/modal-auth-react": "2.5.2", | ||
"@walletconnect/modal-sign-html": "2.5.2", | ||
"@walletconnect/modal-sign-react": "2.5.2", | ||
"next": "13.4.6", | ||
"@walletconnect/ethereum-provider": "2.8.3", | ||
"@walletconnect/modal": "2.5.3", | ||
"@walletconnect/modal-auth-html": "2.5.3", | ||
"@walletconnect/modal-auth-react": "2.5.3", | ||
"@walletconnect/modal-sign-html": "2.5.3", | ||
"@walletconnect/modal-sign-react": "2.5.3", | ||
"next": "13.4.7", | ||
"react": "18.2.0", | ||
"react-code-blocks": "0.0.9-0", | ||
"react-dom": "18.2.0", | ||
"valtio": "1.10.5" | ||
"react-hot-toast": "2.4.1", | ||
"valtio": "1.10.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { toast, Toaster } from 'react-hot-toast' | ||
|
||
export const showToast = toast | ||
|
||
export default function Toast() { | ||
return ( | ||
<Toaster | ||
toastOptions={{ | ||
position: 'bottom-right', | ||
style: { | ||
borderRadius: '16px', | ||
background: 'linear-gradient(97.02deg, #272A2A 0%, #141414 100%)', | ||
color: '#ffffff', | ||
border: '1px solid #585f5f', | ||
paddingTop: '12px', | ||
paddingBottom: '10px', | ||
paddingLeft: '16px', | ||
paddingRight: '16px' | ||
}, | ||
error: { | ||
style: { | ||
borderColor: '#ff974c' | ||
} | ||
}, | ||
success: { | ||
style: { | ||
borderColor: '#2bee4b' | ||
} | ||
} | ||
}} | ||
/> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.