Skip to content

Commit

Permalink
feat: Bump bridge widget version (#10771)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->


<!-- start pr-codex -->

---

## PR-Codex overview
This PR updates the version and SHA384 hash for the
`x-pancakeswap-widget` in the `config.ts` file, ensuring the application
uses the latest code and security measures.

### Detailed summary
- Added a new constant `VERSION` with the value `'0.0.30'`.
- Updated the `SHA384` constant from
`'6KIHUDbpC4LJFNyccQRTbSygG+s+dxGst626mWRi+s+kdhal5bR8BxktVuommt67'` to
`'gP8PH+BkL5mqD+BLlxDPi0+AZSLhKloxzEBENzAOXXe6r/Y/bD0vlULkhh3ryjxY'`.

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
ChefMomota authored Oct 2, 2024
1 parent c47fae0 commit 713a687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/bridge/components/layerZero/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const VERSION = '0.0.27'
const VERSION = '0.0.30'
// https://unpkg.com/@layerzerolabs/[email protected]/element.mjs.sha384
const SHA384 = '6KIHUDbpC4LJFNyccQRTbSygG+s+dxGst626mWRi+s+kdhal5bR8BxktVuommt67'
const SHA384 = 'gP8PH+BkL5mqD+BLlxDPi0+AZSLhKloxzEBENzAOXXe6r/Y/bD0vlULkhh3ryjxY'

export const LAYER_ZERO_JS = {
src: `https://unpkg.com/@layerzerolabs/x-pancakeswap-widget@${VERSION}/element.mjs`,
Expand Down

0 comments on commit 713a687

Please sign in to comment.