Skip to content

Commit

Permalink
Merge branch 'dev' into fix-token-symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdavinchee authored Apr 8, 2024
2 parents b04dea1 + a54b8d2 commit 6707167
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/js-sdk/src/Framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion packages/metadata/tasks/compare-committed-against-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 4 additions & 0 deletions packages/subgraph/subgraph.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/subgraph/tasks/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 6707167

Please sign in to comment.