Skip to content

Conversation

@Tbaut
Copy link
Collaborator

@Tbaut Tbaut commented Nov 21, 2025

I went the lazy way. Computing the list of existing pure proxies e.g with

query GetPolkadotPureProxiesBeforeBlock {
  proxyAccounts(
    where: {
      creationBlockNumber_lt: 30423691
      delegator: {
        isPureProxy_eq: true
        id_startsWith: "kusama-"
      }
    }
    orderBy: creationBlockNumber_ASC
  ) {
    id
    delegator {
      id
      pubKey
      isPureProxy
    }
    delegatee {
      id
      pubKey
    }
    type
    delay
    createdAt
    creationBlockNumber
    extrinsicIndex
  }
}

And then, at a specific block, where I know there's a multisig event happening (so it'll be indexed) I've applied the migration and created all the pure proxies, for each chain.

@Tbaut Tbaut merged commit 706338f into main Nov 22, 2025
5 checks passed
@Tbaut Tbaut deleted the tbaut-ah-migration-2 branch November 22, 2025 00:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant