Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.
Merged
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion src/lib/importer/statement/provider/tally.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const ORGANIZATION_QUERY = {
export default class Tally extends Provider {
static readonly MAPPING = {
's:arbitrumfoundation.eth': 'arbitrum',
'arb1:0x789fC99093B09aD01C34DC7251D0C89ce743e5a4': 'arbitrum',
's:uniswapgovernance.eth': 'uniswap',
's:dopedao.eth': 'dopewars',
's:opcollective.eth': 'optimism',
Expand Down Expand Up @@ -108,7 +109,7 @@ export default class Tally extends Provider {

const _delegates: Delegate[] = [];
results.delegates.nodes.forEach((node: any) => {
const statement = node.statement.statement.trim();
const statement = node.statement?.statement?.trim();

if (!statement) return;

Expand Down
Loading