From e4f97ae149f2432d4e8305492ded7b9127e5b918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pr=C3=A9vost?= <998369+prevostc@users.noreply.github.com> Date: Thu, 30 May 2024 18:13:56 +0200 Subject: [PATCH] Fix format --- .github/workflows/Release.yml | 2 +- README.md | 1 - src/vault-lifecycle.ts | 5 ++++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 7ea29b7..09fe7a1 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -7,7 +7,7 @@ on: - "*.*.*" # Push events to matching x.x.x tags, e.g. 1.0.0, 1.4.5, etc jobs: - test: + Release: strategy: matrix: node: ["21.x"] diff --git a/README.md b/README.md index 57d251b..33ff43a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ This Subgraph sources events from the Beefy CLM contracts in different networks. - Base: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/clm-base/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/clm-base/gn) - Optimism: [https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/clm-optimism/gn](https://api.goldsky.com/api/public/project_clu2walwem1qm01w40v3yhw1f/subgraphs/beefyfinance/clm-optimism/gn) - # Beta version Deployments ## Goldsky.com diff --git a/src/vault-lifecycle.ts b/src/vault-lifecycle.ts index 9703457..f2de497 100644 --- a/src/vault-lifecycle.ts +++ b/src/vault-lifecycle.ts @@ -47,7 +47,10 @@ export function handleVaultCreated(event: VaultCreatedEvent): void { // start indexing the new vault BeefyCLVaultTemplate.create(vaultAddress) - log.info("handleVaultCreated: Vault was {} created on block {}", [vault.id.toHexString(), event.block.number.toString()]) + log.info("handleVaultCreated: Vault was {} created on block {}", [ + vault.id.toHexString(), + event.block.number.toString(), + ]) } export function handleVaultInitialized(event: VaultInitialized): void {