Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c49ebe8
feat: upgrade to ethers v6, bump common-ts and use toolshed for contr…
tmigone May 16, 2025
db6b450
chore: add is horizon ready flag to network monitor (#1118)
Maikol May 21, 2025
9fbfacc
feat: support split address books (#1119)
tmigone May 22, 2025
70490e0
feat: update registration to support horizon flow, add provisioning f…
tmigone May 22, 2025
da8f53d
Horizon fixes (#1121)
tmigone May 23, 2025
0e6c962
Horizon: allocation management (#1123)
tmigone Jun 2, 2025
f508a92
Merge remote-tracking branch 'origin/main' into horizon
tmigone Jun 2, 2025
f9cc1ff
chore: add isLegacy column to actions table
tmigone Jun 2, 2025
d2bfd5b
chore: cli support isLegacy for actions
tmigone Jun 3, 2025
2b44aaa
wip: full allocation management
tmigone Jun 6, 2025
606a8e7
fix: allocation cli bugs
tmigone Jun 9, 2025
325d6fa
feat: add column wrapping to table format in cli
tmigone Jun 9, 2025
3d4562b
feat: add wrap to allocation commands
tmigone Jun 9, 2025
09898ce
feat: allocate and unallocate in action queue
tmigone Jun 9, 2025
65f6fd2
fix: action update serialization bug for bigints
tmigone Jun 10, 2025
dc590ce
feat: unallocate action queue management
tmigone Jun 10, 2025
557f002
chore: clean up todos
tmigone Jun 10, 2025
0e448be
wip: graph tally support
tmigone Jun 10, 2025
bff35ba
chore: update toolshed to 0.6.4
tmigone Jun 18, 2025
7697a93
fix: rewardsmanager events
tmigone Jun 18, 2025
112e1e8
fix: wip refactor of batch execution to account for non atomic batches
tmigone Jun 18, 2025
3579e8e
chore: better tx filtering on executeTransaction
tmigone Jun 19, 2025
660ce64
feat: fix graphtally database model and add migrations
tmigone Jun 19, 2025
55d2284
fix: database migrations for horizon
tmigone Jun 20, 2025
19a4df1
feat: add graph-tally collector
tmigone Jun 24, 2025
30e3682
fix: tests in the horizon branch (#1135)
pcarranzav Jul 28, 2025
5a51888
core: replace horizon and subgraph dependency with address book
tmigone Aug 5, 2025
ce21845
fix: ensure allocation keys derive from root wallet (#1136)
Maikol Aug 15, 2025
b97fafb
Merge branch 'main' into horizon
tmigone Aug 19, 2025
dd9cd06
chore: lint
tmigone Aug 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/indexer-common/src/indexer-management/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export class ActionManager {
})
if (pendingActions.length > 0) {
logger.warn(
`${pendingActions} Actions found in PENDING state when execution began. Was there a crash?` +
`${pendingActions.length} Actions found in PENDING state when execution began. Was there a crash? ` +
`These indicate that execution was interrupted while calling contracts, and will need to be cleared manually.`,
)
}
Expand Down Expand Up @@ -370,7 +370,7 @@ export class ActionManager {
const allocationManager =
this.allocationManagers[network.specification.networkIdentifier]

let results
let results: AllocationResult[]
try {
// TODO: we should lift the batch execution (graph-node, then contracts) up to here so we can
// mark the actions appropriately
Expand Down
Loading
Loading