From 2dbb63e63c57e0e0528f65a09d001f48b0029778 Mon Sep 17 00:00:00 2001 From: 0xdavinchee <0xdavinchee@gmail.com> Date: Thu, 28 Mar 2024 13:43:57 +0200 Subject: [PATCH 1/3] [SUBGRAPH] Missing ABI (#1920) * fix null from/to for flowNFTs * need to add ISuperfluid ABI --- packages/subgraph/subgraph.template.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/subgraph/subgraph.template.yaml b/packages/subgraph/subgraph.template.yaml index ab144634cf..3a103018aa 100644 --- a/packages/subgraph/subgraph.template.yaml +++ b/packages/subgraph/subgraph.template.yaml @@ -309,6 +309,8 @@ dataSources: abis: - name: IFlowNFTBase file: ./abis/IFlowNFTBase.json + - name: ISuperfluid + file: ./abis/ISuperfluid.json eventHandlers: - event: Transfer(indexed address,indexed address,indexed uint256) handler: handleTransfer @@ -342,6 +344,8 @@ dataSources: abis: - name: IFlowNFTBase file: ./abis/IFlowNFTBase.json + - name: ISuperfluid + file: ./abis/ISuperfluid.json eventHandlers: - event: Transfer(indexed address,indexed address,indexed uint256) handler: handleTransfer From b16ffbf1d23d623e7d872b6d471f5bb46fdca4ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 11:33:44 +0300 Subject: [PATCH 2/3] Bump undici from 5.28.3 to 5.28.4 (#1921) Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4. - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v5.28.3...v5.28.4) --- updated-dependencies: - dependency-name: undici dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 93058d64eb..188e81bf7f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18480,9 +18480,9 @@ underscore@^1.8.3: integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== undici@^5.14.0: - version "5.28.3" - resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.3.tgz#a731e0eff2c3fcfd41c1169a869062be222d1e5b" - integrity sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA== + version "5.28.4" + resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.4.tgz#6b280408edb6a1a604a9b20340f45b422e373068" + integrity sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g== dependencies: "@fastify/busboy" "^2.0.0" From a54b8d216a05f3b2d833b9b578f8f2abf29a6b75 Mon Sep 17 00:00:00 2001 From: Snoppy Date: Mon, 8 Apr 2024 16:45:43 +0800 Subject: [PATCH 3/3] chore: fix typos (#1922) --- packages/js-sdk/src/Framework.js | 2 +- packages/metadata/tasks/compare-committed-against-build.sh | 2 +- packages/subgraph/tasks/deploy.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/js-sdk/src/Framework.js b/packages/js-sdk/src/Framework.js index 772c902f7d..8d70e814f2 100644 --- a/packages/js-sdk/src/Framework.js +++ b/packages/js-sdk/src/Framework.js @@ -59,7 +59,7 @@ module.exports = class Framework { options.gasReportType !== "JSON" ) { throw new Error( - "Unsuported gas report type: " + options.gasReportType + "Unsupported gas report type: " + options.gasReportType ); } console.debug("Enabling gas report type:", options.gasReportType); diff --git a/packages/metadata/tasks/compare-committed-against-build.sh b/packages/metadata/tasks/compare-committed-against-build.sh index 25b11313a9..8b52b38376 100755 --- a/packages/metadata/tasks/compare-committed-against-build.sh +++ b/packages/metadata/tasks/compare-committed-against-build.sh @@ -13,7 +13,7 @@ function hashFiles() { # first of all, ensure that we have valid json jq empty networks.json -# Hash the commited files +# Hash the committed files main_list_committed_hash=$(hashFiles ./main/networks/list.cjs) module_list_committed_hash=$(hashFiles ./module/networks/list.js) diff --git a/packages/subgraph/tasks/deploy.sh b/packages/subgraph/tasks/deploy.sh index 77dab25502..18864e05f7 100755 --- a/packages/subgraph/tasks/deploy.sh +++ b/packages/subgraph/tasks/deploy.sh @@ -160,7 +160,7 @@ if [ -z "$VENDOR" ] || [ -z "$NETWORK" ] || [ -z "$DEPLOYMENT_ENV" ] || [ -z "$V print_usage_and_exit fi -# We can safely ignore this warning, becasue the value in vendor won't contain whitespaces +# We can safely ignore this warning, because the value in vendor won't contain whitespaces # shellcheck disable=SC2199,SC2076 if [[ ! " ${SUPPORTED_VENDORS[@]} " =~ " $VENDOR " ]]; then print_usage_and_exit