Skip to content

Commit

Permalink
Merge branch 'master' into feat/explorer-w
Browse files Browse the repository at this point in the history
  • Loading branch information
Defi-Moses committed Oct 14, 2024
2 parents 9bd0038 + 3bad56c commit a7d5072
Show file tree
Hide file tree
Showing 19 changed files with 626 additions and 183 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ jobs:
- name: Run tests and generate gas report
working-directory: './packages/${{matrix.package}}'
# Run separate set of tests (no fuzzing) to get accurate average gas cost estimates
run: forge test --mc GasBenchmark --gas-report > "../../gas-report-${{ matrix.package }}.ansi"
# Note: we use `npm run` with `--if-present` flag, allows not to define a gas:bench script in every package
# This is not natively supported by yarn yet, see: https://github.com/yarnpkg/yarn/pull/7159
run: npm run gas:bench --if-present > "../../gas-report-${{ matrix.package }}.ansi"

- name: Compare gas reports
uses: Rubilmax/foundry-gas-diff@v3.18
Expand Down
11 changes: 11 additions & 0 deletions docs/bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.2](https://github.com/synapsecns/sanguine/compare/@synapsecns/bridge-docs@0.4.1...@synapsecns/bridge-docs@0.4.2) (2024-10-12)


### Bug Fixes

* **docs:** Fixes gh link ([#3280](https://github.com/synapsecns/sanguine/issues/3280)) ([f1dfc82](https://github.com/synapsecns/sanguine/commit/f1dfc82bc26d60262a92feda671d44a6d54a3ce1))





## [0.4.1](https://github.com/synapsecns/sanguine/compare/@synapsecns/bridge-docs@0.4.0...@synapsecns/bridge-docs@0.4.1) (2024-10-12)

**Note:** Version bump only for package @synapsecns/bridge-docs
Expand Down
27 changes: 11 additions & 16 deletions docs/bridge/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,16 @@ const config: Config = {
[
'classic',
{
gtag: {
trackingID: 'G-BBC13LQXBD',
anonymizeIP: true,
},
docs: {
sidebarPath: './sidebars.ts',
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/synapsecns/sanguine/edit/master/docs/bridge/blog-posts/',
'https://github.com/synapsecns/sanguine/edit/master/docs/bridge/',
docRootComponent: '@theme/DocRoot',
docItemComponent: '@theme/ApiItem', // derived from docusaurus-theme-openapi-docs
// docItemComponent: '@theme/ApiItem', // derived from docusaurus-theme-openapi-docs
Expand Down Expand Up @@ -90,10 +94,10 @@ const config: Config = {
},
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
announcementBar: {
// id: 'announcementBar-v3.2', // Increment on change
// content: `⭐️ If you like Docusaurus, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/facebook/docusaurus">GitHub</a> and follow us on <a target="_blank" rel="noopener noreferrer" href="https://twitter.com/docusaurus">Twitter ${TwitterSvg}</a>`,
},
// announcementBar: {
// id: 'announcementBar-v3.2', // Increment on change
// content: `⭐️ If you like Docusaurus, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/facebook/docusaurus">GitHub</a> and follow us on <a target="_blank" rel="noopener noreferrer" href="https://twitter.com/docusaurus">Twitter ${TwitterSvg}</a>`,
// },
navbar: {
title: 'Synapse Docs',
logo: {
Expand All @@ -107,7 +111,7 @@ const config: Config = {
position: 'left',
label: 'Docs',
},
{to: '/blog', label: 'Blog', position: 'left'},
{ to: '/blog', label: 'Blog', position: 'left' },
{
href: 'https://github.com/synapsecns/sanguine',
label: 'GitHub',
Expand All @@ -118,15 +122,6 @@ const config: Config = {
footer: {
// style: 'dark',
links: [
// {
// title: 'Docs',
// items: [
// {
// label: 'Tutorial',
// to: '/docs/intro',
// },
// ],
// },
{
title: 'Community',
items: [
Expand All @@ -149,7 +144,7 @@ const config: Config = {
items: [
{
label: 'GitHub',
href: 'https://github.com/facebook/docusaurus',
href: 'https://github.com/synapsecns/sanguine',
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion docs/bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synapsecns/bridge-docs",
"version": "0.4.1",
"version": "0.4.2",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
19 changes: 19 additions & 0 deletions packages/contracts-rfq/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.8.1](https://github.com/synapsecns/sanguine/compare/@synapsecns/contracts-rfq@0.8.0...@synapsecns/contracts-rfq@0.8.1) (2024-10-14)

**Note:** Version bump only for package @synapsecns/contracts-rfq





# [0.8.0](https://github.com/synapsecns/sanguine/compare/@synapsecns/contracts-rfq@0.7.3...@synapsecns/contracts-rfq@0.8.0) (2024-10-14)


### Features

* **contracts-rfq:** arbitrary call with value [SLT-233] [SLT-318] ([#3246](https://github.com/synapsecns/sanguine/issues/3246)) ([0df8f08](https://github.com/synapsecns/sanguine/commit/0df8f08b3617e84f1ae5d71b5e45f172e08ce2db))





## [0.7.3](https://github.com/synapsecns/sanguine/compare/@synapsecns/contracts-rfq@0.7.2...@synapsecns/contracts-rfq@0.7.3) (2024-10-11)

**Note:** Version bump only for package @synapsecns/contracts-rfq
Expand Down
Loading

0 comments on commit a7d5072

Please sign in to comment.