diff --git a/src/strategies/botto-dao-base/examples.json b/src/strategies/botto-dao-base/examples.json index 64e23417f..f4fd75d0e 100644 --- a/src/strategies/botto-dao-base/examples.json +++ b/src/strategies/botto-dao-base/examples.json @@ -19,6 +19,6 @@ "0x58787f1659b2fd8853918dab6d4a1565569e6044", "0x7dbc5f88986db946f1d5987edfbf9c6917230fa2" ], - "snapshot": 20190843 + "snapshot": 23250193 } ] diff --git a/src/strategies/botto-dao-base/index.ts b/src/strategies/botto-dao-base/index.ts index a62d8e1eb..969dd1235 100644 --- a/src/strategies/botto-dao-base/index.ts +++ b/src/strategies/botto-dao-base/index.ts @@ -16,7 +16,7 @@ export async function strategy( addresses, options, snapshot -): Promise[]> { +): Promise> { const blockTag = typeof snapshot === 'number' ? snapshot : 'latest'; const _formatUnits = (value) => parseFloat(formatUnits(value, options.decimals)); @@ -43,5 +43,5 @@ export async function strategy( }) ); - return [result]; + return result; }