Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed May 30, 2024
1 parent d1ddade commit e4f97ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion src/vault-lifecycle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e4f97ae

Please sign in to comment.