├── .editorconfig ├── .env.example ├── .eslintrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── fix-lint.yml │ ├── lint.yml │ ├── strategy.yml │ ├── test.yml │ └── validation.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── renovate.json ├── src ├── constants.ts ├── index.ts ├── strategies │ ├── a51-farming │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── a51-vault-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aave-governance-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── aavegotchi-agip-17 │ │ ├── examples.json │ │ └── index.ts │ ├── aavegotchi-agip-37-gltr-staked-lp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aavegotchi-agip-37-wap-ghst │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aavegotchi-agip │ │ ├── examples.json │ │ └── index.ts │ ├── aavegotchi-wagmi-guild │ │ ├── examples.json │ │ └── index.ts │ ├── aavegotchi │ │ ├── examples.json │ │ └── index.ts │ ├── across-staked-acx │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aelin-council │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── agave │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aks │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── anti-whale │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── apecoin-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── apescape │ │ ├── examples.json │ │ └── index.ts │ ├── api-post │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── api-v2-override │ │ ├── README.md │ │ └── examples.json │ ├── api-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── api │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ari10-staking-locked │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── arrakis-finance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── arrow-vesting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── aura-vault-balance-of-single-asset │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── balance-in-vdfyn-vault │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── balance-of-subgraph │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── balance-of-with-bazaar-batch-auction-linear-vesting-power │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── balance-of-with-linear-vesting-power │ │ ├── examples.json │ │ └── index.ts │ ├── balance-of-with-max │ │ ├── examples.json │ │ └── index.ts │ ├── balance-of-with-min │ │ ├── examples.json │ │ └── index.ts │ ├── balance-of-with-thresholds │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── balancer-poolid │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── balancer-smart-pool │ │ ├── examples.json │ │ └── index.ts │ ├── balancer-unipool │ │ ├── examples.json │ │ └── index.ts │ ├── balancer │ │ ├── examples.json │ │ └── index.ts │ ├── bancor-pool-token-underlying-balance │ │ ├── examples.json │ │ └── index.ts │ ├── bancor-standard-rewards-underlying-balance │ │ ├── examples.json │ │ └── index.ts │ ├── banksy-dao │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── battlefly-vgfly-and-staked-gfly │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── biswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── botto-dao-base │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── botto-dao │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── brightid │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── bsc-mvb │ │ ├── examples.json │ │ └── index.ts │ ├── bubblegum-kids │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── cake │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── candy-auto-vault │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── candy-lock-nft │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── candy-lock-token │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── candy-lockv1-token │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── candy-nft-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── cap-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── celer-sgn-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── chubbykaijudao │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── citydao-square-root │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── clipper-staked-sail │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── coinswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── colony-reputation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── comp-like-votes-inclusive │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── comp-like-votes │ │ ├── examples.json │ │ └── index.ts │ ├── contract-call │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── conv-finance │ │ ├── examples.json │ │ └── index.ts │ ├── cookie-staking │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── credit-lp │ │ ├── examples.json │ │ └── index.ts │ ├── crucible-erc20-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── crucible-erc20-token-and-lp-weighted │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── csv │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── ctoken │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ctsi-staking-pool │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── curio-cards-erc20-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── cyberkongz-v2 │ │ ├── examples.json │ │ └── index.ts │ ├── dappcomposer-getvotingunits │ │ ├── examples.json │ │ └── index.ts │ ├── darkforest-score │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── decentraland-estate-size │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── decentraland-rental-lessors │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── types.ts │ ├── decentraland-wearable-rarity │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── defi-app-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── defidollar │ │ ├── examples.json │ │ └── index.ts │ ├── defiplaza │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── degenzoo-erc721-animals-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── delegate-registry-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── delegated-ape │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── delegatexyz-erc721-balance-of │ │ ├── README.md │ │ ├── constants.ts │ │ ├── examples.json │ │ ├── index.ts │ │ ├── schema.json │ │ ├── types.ts │ │ └── utils.ts │ ├── delegation-with-cap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── delegation-with-overrides │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dextf-staked-in-vaults │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dfyn-staked-in-farms │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dfyn-staked-in-vaults │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dgenesis │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── digitalax-genesis-contribution │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── digitalax-lp-stakers-matic │ │ ├── examples.json │ │ └── index.ts │ ├── digitalax-lp-stakers │ │ ├── examples.json │ │ └── index.ts │ ├── digitalax-mona-quickswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── digitalax-mona-stakers-matic │ │ ├── examples.json │ │ └── index.ts │ ├── dittomoney │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dogs-unchained │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── dps-nft-strategy-nova │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── dps-nft-strategy │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── dss-vest-balance-and-unpaid │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── dss-vest-unpaid │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── earthfund-child-dao-staking-balance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── echelon-wallet-prime-and-cached-key │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── eco-multichain-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── eco-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── eden-online-override │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── egl-vote │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ens-10k-club │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ens-all-club-digits │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ens-domains-owned │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ens-reverse-record │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── eoa-balance-and-staking-pools │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erable-governance-v1 │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc1155-all-balances-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc1155-balance-of-cv │ │ ├── examples.json │ │ └── index.ts │ ├── erc1155-balance-of-ids-weighted │ │ ├── examples.json │ │ └── index.ts │ ├── erc1155-balance-of-ids │ │ ├── examples.json │ │ └── index.ts │ ├── erc1155-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc1155-weighted-by-id │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc1155-with-multiplier │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-at │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-balance-of-coeff │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-contract-multiplier │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-cv │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-delegation │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-fixed-total │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-indexed │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-quadratic-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-saevo │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-balance-of-top-holders │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of-with-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-balance-starknet │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-price │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-received │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-token-and-lp-weighted │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-token-and-single-lp-weighted │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-tokens-per-uni │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-votes-undelegated-balance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-votes-with-override │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc20-votes │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc20-with-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc3525-flexible-voucher │ │ ├── examples.json │ │ ├── index.ts │ │ └── utils.ts │ ├── erc4626-assets-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc721-collateral-held │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── erc721-enumerable │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-multi-registry-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-multi-registry │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-pair-weights │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-metadata-by-ownerof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-metadata │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-multiplier │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-tokenid-range-weights-simple │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── types.d.ts │ ├── erc721-with-tokenid-range-weights │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-tokenid-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721-with-tokenid │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── erc721 │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── eth-balance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── eth-wallet-age │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── eth-with-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ethalend-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── ethercats-founders-series │ │ ├── examples.json │ │ └── index.ts │ ├── ethermon-erc721 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── etherorcs-combo-balanceof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── faraland-staking │ │ ├── examples.json │ │ └── index.ts │ ├── fight-club │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── flashstake │ │ ├── examples.json │ │ └── index.ts │ ├── flexa-capacity-staking │ │ ├── examples.json │ │ └── index.ts │ ├── floki │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── forta-shares │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── forte-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── fountainhead │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── frax-finance-fraxtal │ │ ├── examples.json │ │ └── index.ts │ ├── frax-finance │ │ ├── examples.json │ │ └── index.ts │ ├── friend-tech │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── galaxy-nft-with-score │ │ ├── examples.json │ │ └── index.ts │ ├── galxe-loyalty-points │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── galxe-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── gamium-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── garden-stakes │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── gatenet-total-staked │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── gelato-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── genart │ │ ├── examples.json │ │ └── index.ts │ ├── genomesdao │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── genzees-from-subgraph │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── giveth-balancer-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── giveth-balances-supply-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── giveth-gnosis-balance-supply-weighted-v3 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── giveth-gnosis-balance-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── glide │ │ ├── examples.json │ │ └── index.ts │ ├── gno │ │ ├── examples.json │ │ └── index.ts │ ├── goldfinch-membership │ │ ├── examples.json │ │ └── index.ts │ ├── goldfinch-voting-power │ │ ├── examples.json │ │ └── index.ts │ ├── gooddollar-multichain │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── governor-alpha │ │ ├── examples.json │ │ └── index.ts │ ├── governor-delegator │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── gysr-lp-staking-balance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── gysr-staking-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── h2o │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── harmony-staking │ │ ├── examples.json │ │ └── index.ts │ ├── has-rock │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── hashes-voting │ │ ├── examples.json │ │ └── index.ts │ ├── hashflow-vehft │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── hats-protocol-hat-id │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── hats-protocol-hat-ids │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── hats-protocol-single-vote-per-org │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ ├── schema.json │ │ └── utils.ts │ ├── hats-strategy │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── hedgey-delegate │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── hedgey │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── helix │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── holds-tokens │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── honeyswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── hopr-bridged-balance │ │ ├── examples.json │ │ └── index.ts │ ├── hopr-stake-and-balance-qv │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── utils.ts │ ├── hopr-staking-by-season │ │ ├── examples.json │ │ └── index.ts │ ├── hopr-staking-s2 │ │ ├── examples.json │ │ └── index.ts │ ├── hopr-uni-lp-farm │ │ ├── examples.json │ │ └── index.ts │ ├── ilv │ │ ├── README.md │ │ └── index.ts │ ├── impossible-finance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── index.ts │ ├── infinityprotocol-liquidity-pools │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── inverse-xinv │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── iotex-staked-balance │ │ ├── examples.json │ │ └── index.ts │ ├── izumi-veizi │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── jpegd-locked-jpeg-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── juicebox │ │ ├── examples.json │ │ └── index.ts │ ├── karma-discord-roles │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── l2-deversifi │ │ ├── examples.json │ │ └── index.ts │ ├── landdao-token-tiers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── liftkitchen │ │ ├── examples.json │ │ └── index.ts │ ├── linear-vesting-power │ │ ├── examples.json │ │ └── index.ts │ ├── liquidity-token-provide │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lit-dao-governance │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── livepeer │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lizcoin-strategy-2024 │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── lodestar-staked-lp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lodestar-vesting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── loot-character-guilds │ │ ├── examples.json │ │ └── index.ts │ ├── lqty-proxy-stakers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lrc-l2-nft-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lrc-l2-subgraph-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lrc-lp-subgraph-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lrc-nft-search-mult │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── lydia-gov-vault │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── maker-ds-chief │ │ ├── examples.json │ │ └── index.ts │ ├── mangrove-station-qv-scaled-to-mgv │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── marsecosystem │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── masterchef-pool-balance-no-rewarddebt │ │ ├── examples.json │ │ └── index.ts │ ├── masterchef-pool-balance-price │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── masterchef-pool-balance │ │ ├── examples.json │ │ └── index.ts │ ├── masterchef │ │ ├── examples.json │ │ └── index.ts │ ├── math │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── options.ts │ ├── mcb-balance-from-graph │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── mcn-farm │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── meebitsdao-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── meebitsdao │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── membership │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── metropolis-pod │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── minime-balance-vs-supply-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── minotaur-money │ │ ├── examples.json │ │ └── index.ts │ ├── mithcash │ │ ├── examples.json │ │ └── index.ts │ ├── moca-staking │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── modefi-staking │ │ ├── examples.json │ │ └── index.ts │ ├── modefi │ │ ├── examples.json │ │ └── index.ts │ ├── moloch-all │ │ ├── examples.json │ │ └── index.ts │ ├── moloch-loot │ │ ├── examples.json │ │ └── index.ts │ ├── moloch │ │ ├── examples.json │ │ └── index.ts │ ├── moonbase │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── moonbeam-free-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── morpho-delegation │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── moxie │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── mstable │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── multichain │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── multisig-owners │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── mushrooms │ │ ├── examples.json │ │ └── index.ts │ ├── mutant-cats-stakers-and-holders │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── nation3-passport-coop-with-delegations │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── nation3-votes-with-delegations │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── nayms-staking │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── nedao │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── nexon-army-nft │ │ ├── examples.json │ │ └── index.ts │ ├── ninechronicles-staked-and-dcc │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── niu-staked │ │ ├── examples.json │ │ └── index.ts │ ├── nouns-rfp-power │ │ ├── examples.json │ │ └── index.ts │ ├── occ-stake-of │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ocean-dao-brightid │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ocean-marketplace │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── oceanUtils.ts │ ├── offchain-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ogn │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── oolongswap │ │ ├── examples.json │ │ └── index.ts │ ├── opium │ │ ├── examples.json │ │ └── index.ts │ ├── orange-reputation-based-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── orange-reputation-nft-based-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── orbs-network-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── orca-pod │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── orderly-staked-order │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── otterspace-badges │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── overtime │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── pagination │ │ ├── examples.json │ │ └── index.ts │ ├── pancake-profile │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── pancake │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── path-balance-staked-and-locked │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── pdn-balances-and-vests │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── pepemon │ │ ├── examples.json │ │ └── index.ts │ ├── planet-finance-v2 │ │ ├── examples.json │ │ └── index.ts │ ├── plearn │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── poap-with-weight-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── poap-with-weight │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── poap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── pob-hash │ │ ├── examples.json │ │ └── index.ts │ ├── pokt-network-pda │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── polis-balance │ │ ├── examples.json │ │ └── index.ts │ ├── polygon-self-staked-pol │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── pom │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── posichain-staking │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── posichain-total-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── position-governance-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── potion │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── prepo-vesting │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── printer-financial │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── prl-in-sprl2-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── proof-of-humanity │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── proxyprotocol-erc721-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── psp-in-sepsp2-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── puffer-getpastvotes │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── push-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── quickswap-v3 │ │ ├── README.md │ │ ├── examples.json │ │ ├── helper.ts │ │ └── index.ts │ ├── rari-fuse │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── razor-network-voting │ │ ├── examples.json │ │ └── index.ts │ ├── rdnt-capital-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── realt │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── recusal-list │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── reliquary │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ren-nodes │ │ ├── examples.json │ │ └── index.ts │ ├── rep3-badges │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── reverse-voting-escrow │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── revest │ │ ├── examples.json │ │ └── index.ts │ ├── rnbw-balance │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-delegate-v4 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-delegate-v5 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-delegate-v6 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-delegate-v7 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-delegate-v8 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-v3 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-v4 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator-v7 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rocketpool-node-operator │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── rowdy-roos │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ruler-staked-lp │ │ ├── examples.json │ │ └── index.ts │ ├── sablier-v1-deposit │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── sablier-v2 │ │ ├── README.md │ │ ├── configuration.ts │ │ ├── examples.json │ │ ├── index.ts │ │ ├── queries.ts │ │ └── schema.json │ ├── sacra-subgraph │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── safe-vested │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── saffron-finance-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── saffron-finance │ │ ├── examples.json │ │ └── index.ts │ ├── samurailegends-generals-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sandman-dao │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-boost-twavp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-boost │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-gauge-less-vote-boost-crosschain-spectra │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-gauge-less-vote-boost-crosschain │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-gauge-less-vote-boost │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-balanceof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-v2 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-v3 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-v4-ynd │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-v4 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-vsdcrv-crosschain │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp-vsdtoken │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost-twavp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sd-vote-boost │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sdvote-balanceof-twavp-pool │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── seedify-cumulative-voting-power-hodl-staking-farming │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ ├── schema.json │ │ └── utils.ts │ ├── shroomy-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── single-staking-autocompound-balanceof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── single-staking-longtermstaking-balanceof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── single-staking-pools-balanceof │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── skale-delegation-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── snet-farmers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── snet-liquidity-providers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── snet-stakers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── snote │ │ ├── examples.json │ │ └── index.ts │ ├── snx-multichain │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── spacefi-blp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── spaceid │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── spacey2025 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── split-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── spooky-lp-sonic │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── spookyswap │ │ ├── examples.json │ │ └── index.ts │ ├── spreadsheet │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── squid-dao │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── stablexswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── stake-mine-liquid-helios │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staked-balancer │ │ ├── examples.json │ │ └── index.ts │ ├── staked-daomaker │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── staked-defi-balance │ │ ├── ABI │ │ │ ├── openStakingABI.json │ │ │ └── standardStakingABI.json │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ ├── schema.json │ │ └── types.ts │ ├── staked-keep │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── staked-morekudasai │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staked-psp-balance │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── staked-uniswap-modifiable │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── staked-uniswap │ │ ├── examples.json │ │ └── index.ts │ ├── stakedotlink-vesting │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── stakers-and-holders │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── staking-amount-duration-exponential │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staking-amount-duration-linear │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staking-balance-of-v1 │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staking-balance-of-v2 │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── staking-claimed-unclaimed │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── starcatchers-top-window │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── starlay-ve-balance-of-locker-id │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── starsharks │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── station-constant-if-badge │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── station-score-if-badge │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── streamr │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── subgraph-split-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sunrisegaming-staking │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── sunrisegaming-univ2-lp │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── superboring │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── superfluid-vesting │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── sushiswap │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── swarm-staking │ │ ├── README.md │ │ ├── creator-to-proxy-map.ts │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── sybil-protection │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── synapse │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── synthetic-nouns-with-claimer │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── synthetix-non-quadratic_1 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── synthetix-quadratic │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── synthetix-quadratic_1 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── synthetix │ │ ├── README.md │ │ ├── examples.json │ │ ├── helper.ts │ │ └── index.ts │ ├── synthetix_1 │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── taraxa-delegation │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── tech-quadratic-ranked-choice │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── thales │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── the-graph-balance │ │ ├── README.md │ │ ├── balances.ts │ │ ├── examples.json │ │ └── index.ts │ ├── the-graph-delegation │ │ ├── README.md │ │ ├── delegators.ts │ │ ├── examples.json │ │ └── index.ts │ ├── the-graph-indexing │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── indexers.ts │ ├── the-graph │ │ ├── README.md │ │ ├── baseStrategy.ts │ │ ├── graphUtils.ts │ │ └── tokenLockWallets.ts │ ├── thresholds │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ticket-validity │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ticket │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── tokenlon │ │ ├── examples.json │ │ └── index.ts │ ├── tomb-finance │ │ ├── examples.json │ │ └── index.ts │ ├── total-axion-shares │ │ ├── examples.json │ │ └── index.ts │ ├── tpro-staking │ │ ├── examples.json │ │ └── index.ts │ ├── tranche-staking-lp │ │ ├── examples.json │ │ └── index.ts │ ├── tranche-staking-slice │ │ ├── examples.json │ │ └── index.ts │ ├── tranche-staking │ │ ├── examples.json │ │ └── index.ts │ ├── tutellus-protocol │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── typhoon │ │ ├── examples.json │ │ └── index.ts │ ├── umami-voting │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── uni │ │ ├── examples.json │ │ └── index.ts │ ├── unipilot-vault-pilot-balance │ │ ├── examples.json │ │ └── index.ts │ ├── unipool-same-token │ │ ├── examples.json │ │ └── index.ts │ ├── unipool-univ2-lp │ │ ├── examples.json │ │ └── index.ts │ ├── unipool-xsushi │ │ ├── examples.json │ │ └── index.ts │ ├── uniswap-v3-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── helper.ts │ │ └── index.ts │ ├── uniswap-v3 │ │ ├── README.md │ │ ├── examples.json │ │ ├── helper.ts │ │ └── index.ts │ ├── uniswap │ │ ├── examples.json │ │ └── index.ts │ ├── unstackedtoadz-and-stackedtoadz-stakers │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── urbit-galaxies │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── validation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── ve-balance-of-at-nft │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── ve-balance-of-at │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── ve-ribbon-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── ve-ribbon │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── vendor-v2-borrower-collateral-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── vesper │ │ ├── examples.json │ │ └── index.ts │ ├── vested-deversifi │ │ ├── examples.json │ │ └── index.ts │ ├── vesting-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── volt-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── vote-power-and-share │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── wagdie-subgraph │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── wanakafarm-land-ingame │ │ ├── examples.json │ │ └── index.ts │ ├── wanakafarm-staking │ │ ├── examples.json │ │ └── index.ts │ ├── whitelist-weighted-json │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── whitelist-weighted │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── whitelist │ │ ├── examples.json │ │ └── index.ts │ ├── winr-staking │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── with-delegation │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ ├── work │ │ ├── examples.json │ │ └── index.ts │ ├── world-liberty-financial-erc20-balance-of-votes │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json │ ├── xaqua-vaults-treasury │ │ ├── examples.json │ │ └── index.ts │ ├── xcover │ │ ├── examples.json │ │ └── index.ts │ ├── xdai-easy-staking │ │ ├── examples.json │ │ ├── index.ts │ │ └── utils.ts │ ├── xdai-posdao-staking │ │ ├── examples.json │ │ └── index.ts │ ├── xdai-stake-delegation │ │ ├── examples.json │ │ └── index.ts │ ├── xdai-stake-holders │ │ ├── examples.json │ │ └── index.ts │ ├── xdai-stakers-and-holders │ │ ├── examples.json │ │ └── index.ts │ ├── xrc20-balance-of │ │ ├── examples.json │ │ └── index.ts │ ├── xseen │ │ ├── examples.json │ │ └── index.ts │ ├── yearn-vault │ │ ├── examples.json │ │ └── index.ts │ ├── zrx-voting-power │ │ ├── README.md │ │ ├── examples.json │ │ └── index.ts │ └── zunami-pool-gauge-aggregated-balance-of │ │ ├── README.md │ │ ├── examples.json │ │ ├── index.ts │ │ └── schema.json ├── types.ts ├── utils.ts ├── utils │ └── delegation.ts └── validations │ ├── arbitrum │ ├── README.md │ ├── examples.json │ └── index.ts │ ├── basic │ ├── examples.json │ ├── index.ts │ └── schema.json │ ├── index.ts │ ├── karma-eas-attestation │ ├── README.md │ ├── examples.json │ ├── index.ts │ └── schema.json │ ├── passport-gated │ ├── README.md │ ├── examples.json │ ├── index.ts │ ├── schema.json │ └── stampsMetadata.json │ └── validation.ts ├── test ├── addresses-starknet.json ├── addresses.json ├── examples │ ├── delegation.ts │ └── scores.ts ├── integration │ ├── __snapshots__ │ │ └── utils.test.ts.snap │ ├── fixtures │ │ └── vp-fixtures.ts │ ├── utils.test.ts │ └── validation │ │ └── basic.test.ts ├── strategy-with-params.test.ts ├── strategy.test.ts ├── unit │ └── validation.test.ts └── validation.test.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fix-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/fix-lint.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/strategy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/strategy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.github/workflows/validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/renovate.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/strategies/a51-farming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/a51-farming/README.md -------------------------------------------------------------------------------- /src/strategies/a51-farming/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/a51-farming/examples.json -------------------------------------------------------------------------------- /src/strategies/a51-farming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/a51-farming/index.ts -------------------------------------------------------------------------------- /src/strategies/a51-vault-balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/a51-vault-balance/README.md -------------------------------------------------------------------------------- /src/strategies/a51-vault-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/a51-vault-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/aavegotchi-agip-17/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aavegotchi-agip-17/index.ts -------------------------------------------------------------------------------- /src/strategies/aavegotchi-agip/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aavegotchi-agip/examples.json -------------------------------------------------------------------------------- /src/strategies/aavegotchi-agip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aavegotchi-agip/index.ts -------------------------------------------------------------------------------- /src/strategies/aavegotchi/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aavegotchi/examples.json -------------------------------------------------------------------------------- /src/strategies/aavegotchi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aavegotchi/index.ts -------------------------------------------------------------------------------- /src/strategies/across-staked-acx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/across-staked-acx/README.md -------------------------------------------------------------------------------- /src/strategies/across-staked-acx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/across-staked-acx/index.ts -------------------------------------------------------------------------------- /src/strategies/aelin-council/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aelin-council/README.md -------------------------------------------------------------------------------- /src/strategies/aelin-council/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aelin-council/examples.json -------------------------------------------------------------------------------- /src/strategies/aelin-council/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aelin-council/index.ts -------------------------------------------------------------------------------- /src/strategies/agave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/agave/README.md -------------------------------------------------------------------------------- /src/strategies/agave/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/agave/examples.json -------------------------------------------------------------------------------- /src/strategies/agave/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/agave/index.ts -------------------------------------------------------------------------------- /src/strategies/aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aks/README.md -------------------------------------------------------------------------------- /src/strategies/aks/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aks/examples.json -------------------------------------------------------------------------------- /src/strategies/aks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/aks/index.ts -------------------------------------------------------------------------------- /src/strategies/anti-whale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/anti-whale/README.md -------------------------------------------------------------------------------- /src/strategies/anti-whale/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/anti-whale/examples.json -------------------------------------------------------------------------------- /src/strategies/anti-whale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/anti-whale/index.ts -------------------------------------------------------------------------------- /src/strategies/apecoin-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apecoin-staking/README.md -------------------------------------------------------------------------------- /src/strategies/apecoin-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apecoin-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/apecoin-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apecoin-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/apecoin-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apecoin-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/apescape/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apescape/examples.json -------------------------------------------------------------------------------- /src/strategies/apescape/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/apescape/index.ts -------------------------------------------------------------------------------- /src/strategies/api-post/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-post/README.md -------------------------------------------------------------------------------- /src/strategies/api-post/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-post/examples.json -------------------------------------------------------------------------------- /src/strategies/api-post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-post/index.ts -------------------------------------------------------------------------------- /src/strategies/api-v2-override/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-v2-override/README.md -------------------------------------------------------------------------------- /src/strategies/api-v2-override/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-v2-override/examples.json -------------------------------------------------------------------------------- /src/strategies/api-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-v2/README.md -------------------------------------------------------------------------------- /src/strategies/api-v2/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-v2/examples.json -------------------------------------------------------------------------------- /src/strategies/api-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api/README.md -------------------------------------------------------------------------------- /src/strategies/api/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api/examples.json -------------------------------------------------------------------------------- /src/strategies/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/api/index.ts -------------------------------------------------------------------------------- /src/strategies/ari10-staking-locked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ari10-staking-locked/index.ts -------------------------------------------------------------------------------- /src/strategies/arrakis-finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrakis-finance/README.md -------------------------------------------------------------------------------- /src/strategies/arrakis-finance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrakis-finance/examples.json -------------------------------------------------------------------------------- /src/strategies/arrakis-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrakis-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/arrakis-finance/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrakis-finance/schema.json -------------------------------------------------------------------------------- /src/strategies/arrow-vesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrow-vesting/README.md -------------------------------------------------------------------------------- /src/strategies/arrow-vesting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrow-vesting/examples.json -------------------------------------------------------------------------------- /src/strategies/arrow-vesting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/arrow-vesting/index.ts -------------------------------------------------------------------------------- /src/strategies/balance-of-subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balance-of-subgraph/README.md -------------------------------------------------------------------------------- /src/strategies/balance-of-subgraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balance-of-subgraph/index.ts -------------------------------------------------------------------------------- /src/strategies/balance-of-with-max/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balance-of-with-max/index.ts -------------------------------------------------------------------------------- /src/strategies/balance-of-with-min/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balance-of-with-min/index.ts -------------------------------------------------------------------------------- /src/strategies/balancer-poolid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer-poolid/README.md -------------------------------------------------------------------------------- /src/strategies/balancer-poolid/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer-poolid/examples.json -------------------------------------------------------------------------------- /src/strategies/balancer-poolid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer-poolid/index.ts -------------------------------------------------------------------------------- /src/strategies/balancer-smart-pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer-smart-pool/index.ts -------------------------------------------------------------------------------- /src/strategies/balancer-unipool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer-unipool/index.ts -------------------------------------------------------------------------------- /src/strategies/balancer/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer/examples.json -------------------------------------------------------------------------------- /src/strategies/balancer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/balancer/index.ts -------------------------------------------------------------------------------- /src/strategies/banksy-dao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/banksy-dao/README.md -------------------------------------------------------------------------------- /src/strategies/banksy-dao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/banksy-dao/examples.json -------------------------------------------------------------------------------- /src/strategies/banksy-dao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/banksy-dao/index.ts -------------------------------------------------------------------------------- /src/strategies/biswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/biswap/README.md -------------------------------------------------------------------------------- /src/strategies/biswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/biswap/examples.json -------------------------------------------------------------------------------- /src/strategies/biswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/biswap/index.ts -------------------------------------------------------------------------------- /src/strategies/botto-dao-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao-base/README.md -------------------------------------------------------------------------------- /src/strategies/botto-dao-base/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao-base/examples.json -------------------------------------------------------------------------------- /src/strategies/botto-dao-base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao-base/index.ts -------------------------------------------------------------------------------- /src/strategies/botto-dao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao/README.md -------------------------------------------------------------------------------- /src/strategies/botto-dao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao/examples.json -------------------------------------------------------------------------------- /src/strategies/botto-dao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/botto-dao/index.ts -------------------------------------------------------------------------------- /src/strategies/brightid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/brightid/README.md -------------------------------------------------------------------------------- /src/strategies/brightid/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/brightid/examples.json -------------------------------------------------------------------------------- /src/strategies/brightid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/brightid/index.ts -------------------------------------------------------------------------------- /src/strategies/bsc-mvb/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/bsc-mvb/examples.json -------------------------------------------------------------------------------- /src/strategies/bsc-mvb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/bsc-mvb/index.ts -------------------------------------------------------------------------------- /src/strategies/bubblegum-kids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/bubblegum-kids/README.md -------------------------------------------------------------------------------- /src/strategies/bubblegum-kids/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/bubblegum-kids/examples.json -------------------------------------------------------------------------------- /src/strategies/bubblegum-kids/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/bubblegum-kids/index.ts -------------------------------------------------------------------------------- /src/strategies/cake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cake/README.md -------------------------------------------------------------------------------- /src/strategies/cake/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cake/examples.json -------------------------------------------------------------------------------- /src/strategies/cake/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cake/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-auto-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-auto-vault/README.md -------------------------------------------------------------------------------- /src/strategies/candy-auto-vault/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-auto-vault/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-auto-vault/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-auto-vault/schema.json -------------------------------------------------------------------------------- /src/strategies/candy-lock-nft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-nft/README.md -------------------------------------------------------------------------------- /src/strategies/candy-lock-nft/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-nft/examples.json -------------------------------------------------------------------------------- /src/strategies/candy-lock-nft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-nft/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-lock-nft/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-nft/schema.json -------------------------------------------------------------------------------- /src/strategies/candy-lock-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-token/README.md -------------------------------------------------------------------------------- /src/strategies/candy-lock-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-token/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-lock-token/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lock-token/schema.json -------------------------------------------------------------------------------- /src/strategies/candy-lockv1-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lockv1-token/README.md -------------------------------------------------------------------------------- /src/strategies/candy-lockv1-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-lockv1-token/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-nft-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-nft-staking/README.md -------------------------------------------------------------------------------- /src/strategies/candy-nft-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-nft-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/candy-nft-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/candy-nft-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/cap-voting-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cap-voting-power/README.md -------------------------------------------------------------------------------- /src/strategies/cap-voting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cap-voting-power/index.ts -------------------------------------------------------------------------------- /src/strategies/celer-sgn-delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/celer-sgn-delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/chubbykaijudao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/chubbykaijudao/README.md -------------------------------------------------------------------------------- /src/strategies/chubbykaijudao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/chubbykaijudao/examples.json -------------------------------------------------------------------------------- /src/strategies/chubbykaijudao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/chubbykaijudao/index.ts -------------------------------------------------------------------------------- /src/strategies/citydao-square-root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/citydao-square-root/README.md -------------------------------------------------------------------------------- /src/strategies/citydao-square-root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/citydao-square-root/index.ts -------------------------------------------------------------------------------- /src/strategies/clipper-staked-sail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/clipper-staked-sail/README.md -------------------------------------------------------------------------------- /src/strategies/clipper-staked-sail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/clipper-staked-sail/index.ts -------------------------------------------------------------------------------- /src/strategies/coinswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/coinswap/README.md -------------------------------------------------------------------------------- /src/strategies/coinswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/coinswap/examples.json -------------------------------------------------------------------------------- /src/strategies/coinswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/coinswap/index.ts -------------------------------------------------------------------------------- /src/strategies/colony-reputation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/colony-reputation/README.md -------------------------------------------------------------------------------- /src/strategies/colony-reputation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/colony-reputation/index.ts -------------------------------------------------------------------------------- /src/strategies/comp-like-votes/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/comp-like-votes/examples.json -------------------------------------------------------------------------------- /src/strategies/comp-like-votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/comp-like-votes/index.ts -------------------------------------------------------------------------------- /src/strategies/contract-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/contract-call/README.md -------------------------------------------------------------------------------- /src/strategies/contract-call/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/contract-call/examples.json -------------------------------------------------------------------------------- /src/strategies/contract-call/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/contract-call/index.ts -------------------------------------------------------------------------------- /src/strategies/conv-finance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/conv-finance/examples.json -------------------------------------------------------------------------------- /src/strategies/conv-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/conv-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/cookie-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cookie-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/cookie-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cookie-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/cookie-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cookie-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/credit-lp/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/credit-lp/examples.json -------------------------------------------------------------------------------- /src/strategies/credit-lp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/credit-lp/index.ts -------------------------------------------------------------------------------- /src/strategies/csv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/csv/README.md -------------------------------------------------------------------------------- /src/strategies/csv/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/csv/examples.json -------------------------------------------------------------------------------- /src/strategies/csv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/csv/index.ts -------------------------------------------------------------------------------- /src/strategies/csv/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/csv/schema.json -------------------------------------------------------------------------------- /src/strategies/ctoken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctoken/README.md -------------------------------------------------------------------------------- /src/strategies/ctoken/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctoken/examples.json -------------------------------------------------------------------------------- /src/strategies/ctoken/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctoken/index.ts -------------------------------------------------------------------------------- /src/strategies/ctsi-staking-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctsi-staking-pool/README.md -------------------------------------------------------------------------------- /src/strategies/ctsi-staking-pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctsi-staking-pool/index.ts -------------------------------------------------------------------------------- /src/strategies/ctsi-staking-pool/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ctsi-staking-pool/schema.json -------------------------------------------------------------------------------- /src/strategies/cyberkongz-v2/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cyberkongz-v2/examples.json -------------------------------------------------------------------------------- /src/strategies/cyberkongz-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/cyberkongz-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/darkforest-score/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/darkforest-score/README.md -------------------------------------------------------------------------------- /src/strategies/darkforest-score/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/darkforest-score/index.ts -------------------------------------------------------------------------------- /src/strategies/defi-app-voting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defi-app-voting/README.md -------------------------------------------------------------------------------- /src/strategies/defi-app-voting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defi-app-voting/examples.json -------------------------------------------------------------------------------- /src/strategies/defi-app-voting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defi-app-voting/index.ts -------------------------------------------------------------------------------- /src/strategies/defidollar/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defidollar/examples.json -------------------------------------------------------------------------------- /src/strategies/defidollar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defidollar/index.ts -------------------------------------------------------------------------------- /src/strategies/defiplaza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defiplaza/README.md -------------------------------------------------------------------------------- /src/strategies/defiplaza/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defiplaza/examples.json -------------------------------------------------------------------------------- /src/strategies/defiplaza/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defiplaza/index.ts -------------------------------------------------------------------------------- /src/strategies/defiplaza/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/defiplaza/schema.json -------------------------------------------------------------------------------- /src/strategies/delegate-registry-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegate-registry-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/delegated-ape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegated-ape/README.md -------------------------------------------------------------------------------- /src/strategies/delegated-ape/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegated-ape/examples.json -------------------------------------------------------------------------------- /src/strategies/delegated-ape/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegated-ape/index.ts -------------------------------------------------------------------------------- /src/strategies/delegated-ape/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegated-ape/schema.json -------------------------------------------------------------------------------- /src/strategies/delegation-with-cap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegation-with-cap/README.md -------------------------------------------------------------------------------- /src/strategies/delegation-with-cap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegation-with-cap/index.ts -------------------------------------------------------------------------------- /src/strategies/delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegation/README.md -------------------------------------------------------------------------------- /src/strategies/delegation/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegation/examples.json -------------------------------------------------------------------------------- /src/strategies/delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/dfyn-staked-in-farms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dfyn-staked-in-farms/index.ts -------------------------------------------------------------------------------- /src/strategies/dgenesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dgenesis/README.md -------------------------------------------------------------------------------- /src/strategies/dgenesis/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dgenesis/examples.json -------------------------------------------------------------------------------- /src/strategies/dgenesis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dgenesis/index.ts -------------------------------------------------------------------------------- /src/strategies/digitalax-lp-stakers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/digitalax-lp-stakers/index.ts -------------------------------------------------------------------------------- /src/strategies/dittomoney/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dittomoney/README.md -------------------------------------------------------------------------------- /src/strategies/dittomoney/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dittomoney/examples.json -------------------------------------------------------------------------------- /src/strategies/dittomoney/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dittomoney/index.ts -------------------------------------------------------------------------------- /src/strategies/dogs-unchained/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dogs-unchained/README.md -------------------------------------------------------------------------------- /src/strategies/dogs-unchained/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dogs-unchained/examples.json -------------------------------------------------------------------------------- /src/strategies/dogs-unchained/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dogs-unchained/index.ts -------------------------------------------------------------------------------- /src/strategies/dps-nft-strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dps-nft-strategy/README.md -------------------------------------------------------------------------------- /src/strategies/dps-nft-strategy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dps-nft-strategy/index.ts -------------------------------------------------------------------------------- /src/strategies/dps-nft-strategy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dps-nft-strategy/schema.json -------------------------------------------------------------------------------- /src/strategies/dss-vest-unpaid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dss-vest-unpaid/README.md -------------------------------------------------------------------------------- /src/strategies/dss-vest-unpaid/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dss-vest-unpaid/examples.json -------------------------------------------------------------------------------- /src/strategies/dss-vest-unpaid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dss-vest-unpaid/index.ts -------------------------------------------------------------------------------- /src/strategies/dss-vest-unpaid/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/dss-vest-unpaid/schema.json -------------------------------------------------------------------------------- /src/strategies/eco-voting-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eco-voting-power/README.md -------------------------------------------------------------------------------- /src/strategies/eco-voting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eco-voting-power/index.ts -------------------------------------------------------------------------------- /src/strategies/eco-voting-power/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eco-voting-power/schema.json -------------------------------------------------------------------------------- /src/strategies/eden-online-override/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eden-online-override/index.ts -------------------------------------------------------------------------------- /src/strategies/egl-vote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/egl-vote/README.md -------------------------------------------------------------------------------- /src/strategies/egl-vote/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/egl-vote/examples.json -------------------------------------------------------------------------------- /src/strategies/egl-vote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/egl-vote/index.ts -------------------------------------------------------------------------------- /src/strategies/ens-10k-club/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-10k-club/README.md -------------------------------------------------------------------------------- /src/strategies/ens-10k-club/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-10k-club/examples.json -------------------------------------------------------------------------------- /src/strategies/ens-10k-club/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-10k-club/index.ts -------------------------------------------------------------------------------- /src/strategies/ens-all-club-digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-all-club-digits/README.md -------------------------------------------------------------------------------- /src/strategies/ens-all-club-digits/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-all-club-digits/index.ts -------------------------------------------------------------------------------- /src/strategies/ens-domains-owned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-domains-owned/README.md -------------------------------------------------------------------------------- /src/strategies/ens-domains-owned/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-domains-owned/index.ts -------------------------------------------------------------------------------- /src/strategies/ens-reverse-record/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-reverse-record/README.md -------------------------------------------------------------------------------- /src/strategies/ens-reverse-record/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ens-reverse-record/index.ts -------------------------------------------------------------------------------- /src/strategies/erable-governance-v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erable-governance-v1/index.ts -------------------------------------------------------------------------------- /src/strategies/erc1155-balance-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc1155-balance-of/README.md -------------------------------------------------------------------------------- /src/strategies/erc1155-balance-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc1155-balance-of/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of-at/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of-at/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of-at/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of-at/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of-cv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of-cv/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-balance-of/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-balance-of/schema.json -------------------------------------------------------------------------------- /src/strategies/erc20-price/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-price/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-price/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-price/examples.json -------------------------------------------------------------------------------- /src/strategies/erc20-price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-price/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-received/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-received/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-received/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-received/examples.json -------------------------------------------------------------------------------- /src/strategies/erc20-received/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-received/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-tokens-per-uni/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-tokens-per-uni/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-votes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-votes/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-votes/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-votes/examples.json -------------------------------------------------------------------------------- /src/strategies/erc20-votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-votes/index.ts -------------------------------------------------------------------------------- /src/strategies/erc20-votes/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-votes/schema.json -------------------------------------------------------------------------------- /src/strategies/erc20-with-balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-with-balance/README.md -------------------------------------------------------------------------------- /src/strategies/erc20-with-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc20-with-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/erc4626-assets-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc4626-assets-of/README.md -------------------------------------------------------------------------------- /src/strategies/erc4626-assets-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc4626-assets-of/index.ts -------------------------------------------------------------------------------- /src/strategies/erc4626-assets-of/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc4626-assets-of/schema.json -------------------------------------------------------------------------------- /src/strategies/erc721-enumerable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-enumerable/index.ts -------------------------------------------------------------------------------- /src/strategies/erc721-pair-weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-pair-weights/README.md -------------------------------------------------------------------------------- /src/strategies/erc721-pair-weights/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-pair-weights/index.ts -------------------------------------------------------------------------------- /src/strategies/erc721-with-metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-with-metadata/index.ts -------------------------------------------------------------------------------- /src/strategies/erc721-with-tokenid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-with-tokenid/README.md -------------------------------------------------------------------------------- /src/strategies/erc721-with-tokenid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721-with-tokenid/index.ts -------------------------------------------------------------------------------- /src/strategies/erc721/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721/README.md -------------------------------------------------------------------------------- /src/strategies/erc721/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721/examples.json -------------------------------------------------------------------------------- /src/strategies/erc721/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721/index.ts -------------------------------------------------------------------------------- /src/strategies/erc721/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/erc721/schema.json -------------------------------------------------------------------------------- /src/strategies/eth-balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-balance/README.md -------------------------------------------------------------------------------- /src/strategies/eth-balance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-balance/examples.json -------------------------------------------------------------------------------- /src/strategies/eth-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/eth-balance/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-balance/schema.json -------------------------------------------------------------------------------- /src/strategies/eth-wallet-age/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-wallet-age/README.md -------------------------------------------------------------------------------- /src/strategies/eth-wallet-age/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-wallet-age/examples.json -------------------------------------------------------------------------------- /src/strategies/eth-wallet-age/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-wallet-age/index.ts -------------------------------------------------------------------------------- /src/strategies/eth-with-balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-with-balance/README.md -------------------------------------------------------------------------------- /src/strategies/eth-with-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/eth-with-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/ethalend-balance-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ethalend-balance-of/README.md -------------------------------------------------------------------------------- /src/strategies/ethalend-balance-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ethalend-balance-of/index.ts -------------------------------------------------------------------------------- /src/strategies/ethermon-erc721/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ethermon-erc721/README.md -------------------------------------------------------------------------------- /src/strategies/ethermon-erc721/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ethermon-erc721/examples.json -------------------------------------------------------------------------------- /src/strategies/ethermon-erc721/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ethermon-erc721/index.ts -------------------------------------------------------------------------------- /src/strategies/faraland-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/faraland-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/fight-club/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fight-club/README.md -------------------------------------------------------------------------------- /src/strategies/fight-club/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fight-club/examples.json -------------------------------------------------------------------------------- /src/strategies/fight-club/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fight-club/index.ts -------------------------------------------------------------------------------- /src/strategies/flashstake/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/flashstake/examples.json -------------------------------------------------------------------------------- /src/strategies/flashstake/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/flashstake/index.ts -------------------------------------------------------------------------------- /src/strategies/floki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/floki/README.md -------------------------------------------------------------------------------- /src/strategies/floki/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/floki/examples.json -------------------------------------------------------------------------------- /src/strategies/floki/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/floki/index.ts -------------------------------------------------------------------------------- /src/strategies/floki/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/floki/schema.json -------------------------------------------------------------------------------- /src/strategies/forta-shares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forta-shares/README.md -------------------------------------------------------------------------------- /src/strategies/forta-shares/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forta-shares/examples.json -------------------------------------------------------------------------------- /src/strategies/forta-shares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forta-shares/index.ts -------------------------------------------------------------------------------- /src/strategies/forte-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forte-staking/README.md -------------------------------------------------------------------------------- /src/strategies/forte-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forte-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/forte-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forte-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/forte-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/forte-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/fountainhead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fountainhead/README.md -------------------------------------------------------------------------------- /src/strategies/fountainhead/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fountainhead/examples.json -------------------------------------------------------------------------------- /src/strategies/fountainhead/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fountainhead/index.ts -------------------------------------------------------------------------------- /src/strategies/fountainhead/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/fountainhead/schema.json -------------------------------------------------------------------------------- /src/strategies/frax-finance-fraxtal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/frax-finance-fraxtal/index.ts -------------------------------------------------------------------------------- /src/strategies/frax-finance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/frax-finance/examples.json -------------------------------------------------------------------------------- /src/strategies/frax-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/frax-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/friend-tech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/friend-tech/README.md -------------------------------------------------------------------------------- /src/strategies/friend-tech/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/friend-tech/examples.json -------------------------------------------------------------------------------- /src/strategies/friend-tech/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/friend-tech/index.ts -------------------------------------------------------------------------------- /src/strategies/friend-tech/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/friend-tech/schema.json -------------------------------------------------------------------------------- /src/strategies/galxe-loyalty-points/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/galxe-loyalty-points/index.ts -------------------------------------------------------------------------------- /src/strategies/galxe-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/galxe-staking/README.md -------------------------------------------------------------------------------- /src/strategies/galxe-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/galxe-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/galxe-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/galxe-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/galxe-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/galxe-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/gamium-voting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gamium-voting/README.md -------------------------------------------------------------------------------- /src/strategies/gamium-voting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gamium-voting/examples.json -------------------------------------------------------------------------------- /src/strategies/gamium-voting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gamium-voting/index.ts -------------------------------------------------------------------------------- /src/strategies/garden-stakes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/garden-stakes/README.md -------------------------------------------------------------------------------- /src/strategies/garden-stakes/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/garden-stakes/examples.json -------------------------------------------------------------------------------- /src/strategies/garden-stakes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/garden-stakes/index.ts -------------------------------------------------------------------------------- /src/strategies/garden-stakes/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/garden-stakes/schema.json -------------------------------------------------------------------------------- /src/strategies/gatenet-total-staked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gatenet-total-staked/index.ts -------------------------------------------------------------------------------- /src/strategies/gelato-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gelato-staking/README.md -------------------------------------------------------------------------------- /src/strategies/gelato-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gelato-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/gelato-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gelato-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/gelato-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gelato-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/genart/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genart/examples.json -------------------------------------------------------------------------------- /src/strategies/genart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genart/index.ts -------------------------------------------------------------------------------- /src/strategies/genomesdao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genomesdao/README.md -------------------------------------------------------------------------------- /src/strategies/genomesdao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genomesdao/examples.json -------------------------------------------------------------------------------- /src/strategies/genomesdao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genomesdao/index.ts -------------------------------------------------------------------------------- /src/strategies/genomesdao/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/genomesdao/schema.json -------------------------------------------------------------------------------- /src/strategies/glide/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/glide/examples.json -------------------------------------------------------------------------------- /src/strategies/glide/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/glide/index.ts -------------------------------------------------------------------------------- /src/strategies/gno/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gno/examples.json -------------------------------------------------------------------------------- /src/strategies/gno/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gno/index.ts -------------------------------------------------------------------------------- /src/strategies/goldfinch-membership/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/goldfinch-membership/index.ts -------------------------------------------------------------------------------- /src/strategies/governor-alpha/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/governor-alpha/examples.json -------------------------------------------------------------------------------- /src/strategies/governor-alpha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/governor-alpha/index.ts -------------------------------------------------------------------------------- /src/strategies/governor-delegator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/governor-delegator/README.md -------------------------------------------------------------------------------- /src/strategies/governor-delegator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/governor-delegator/index.ts -------------------------------------------------------------------------------- /src/strategies/gysr-staking-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/gysr-staking-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/h2o/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/h2o/README.md -------------------------------------------------------------------------------- /src/strategies/h2o/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/h2o/examples.json -------------------------------------------------------------------------------- /src/strategies/h2o/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/h2o/index.ts -------------------------------------------------------------------------------- /src/strategies/h2o/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/h2o/schema.json -------------------------------------------------------------------------------- /src/strategies/harmony-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/harmony-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/harmony-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/harmony-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/has-rock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/has-rock/README.md -------------------------------------------------------------------------------- /src/strategies/has-rock/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/has-rock/examples.json -------------------------------------------------------------------------------- /src/strategies/has-rock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/has-rock/index.ts -------------------------------------------------------------------------------- /src/strategies/hashes-voting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashes-voting/examples.json -------------------------------------------------------------------------------- /src/strategies/hashes-voting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashes-voting/index.ts -------------------------------------------------------------------------------- /src/strategies/hashflow-vehft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashflow-vehft/README.md -------------------------------------------------------------------------------- /src/strategies/hashflow-vehft/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashflow-vehft/examples.json -------------------------------------------------------------------------------- /src/strategies/hashflow-vehft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashflow-vehft/index.ts -------------------------------------------------------------------------------- /src/strategies/hashflow-vehft/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hashflow-vehft/schema.json -------------------------------------------------------------------------------- /src/strategies/hats-protocol-hat-id/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hats-protocol-hat-id/index.ts -------------------------------------------------------------------------------- /src/strategies/hats-strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hats-strategy/README.md -------------------------------------------------------------------------------- /src/strategies/hats-strategy/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hats-strategy/examples.json -------------------------------------------------------------------------------- /src/strategies/hats-strategy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hats-strategy/index.ts -------------------------------------------------------------------------------- /src/strategies/hats-strategy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hats-strategy/schema.json -------------------------------------------------------------------------------- /src/strategies/hedgey-delegate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey-delegate/README.md -------------------------------------------------------------------------------- /src/strategies/hedgey-delegate/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey-delegate/examples.json -------------------------------------------------------------------------------- /src/strategies/hedgey-delegate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey-delegate/index.ts -------------------------------------------------------------------------------- /src/strategies/hedgey-delegate/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey-delegate/schema.json -------------------------------------------------------------------------------- /src/strategies/hedgey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey/README.md -------------------------------------------------------------------------------- /src/strategies/hedgey/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey/examples.json -------------------------------------------------------------------------------- /src/strategies/hedgey/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hedgey/index.ts -------------------------------------------------------------------------------- /src/strategies/helix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/helix/README.md -------------------------------------------------------------------------------- /src/strategies/helix/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/helix/examples.json -------------------------------------------------------------------------------- /src/strategies/helix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/helix/index.ts -------------------------------------------------------------------------------- /src/strategies/holds-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/holds-tokens/README.md -------------------------------------------------------------------------------- /src/strategies/holds-tokens/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/holds-tokens/examples.json -------------------------------------------------------------------------------- /src/strategies/holds-tokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/holds-tokens/index.ts -------------------------------------------------------------------------------- /src/strategies/honeyswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/honeyswap/README.md -------------------------------------------------------------------------------- /src/strategies/honeyswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/honeyswap/examples.json -------------------------------------------------------------------------------- /src/strategies/honeyswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/honeyswap/index.ts -------------------------------------------------------------------------------- /src/strategies/hopr-bridged-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hopr-bridged-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/hopr-staking-s2/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hopr-staking-s2/examples.json -------------------------------------------------------------------------------- /src/strategies/hopr-staking-s2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hopr-staking-s2/index.ts -------------------------------------------------------------------------------- /src/strategies/hopr-uni-lp-farm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/hopr-uni-lp-farm/index.ts -------------------------------------------------------------------------------- /src/strategies/ilv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ilv/README.md -------------------------------------------------------------------------------- /src/strategies/ilv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ilv/index.ts -------------------------------------------------------------------------------- /src/strategies/impossible-finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/impossible-finance/README.md -------------------------------------------------------------------------------- /src/strategies/impossible-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/impossible-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/index.ts -------------------------------------------------------------------------------- /src/strategies/inverse-xinv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/inverse-xinv/README.md -------------------------------------------------------------------------------- /src/strategies/inverse-xinv/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/inverse-xinv/examples.json -------------------------------------------------------------------------------- /src/strategies/inverse-xinv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/inverse-xinv/index.ts -------------------------------------------------------------------------------- /src/strategies/iotex-staked-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/iotex-staked-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/izumi-veizi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/izumi-veizi/README.md -------------------------------------------------------------------------------- /src/strategies/izumi-veizi/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/izumi-veizi/examples.json -------------------------------------------------------------------------------- /src/strategies/izumi-veizi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/izumi-veizi/index.ts -------------------------------------------------------------------------------- /src/strategies/izumi-veizi/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/izumi-veizi/schema.json -------------------------------------------------------------------------------- /src/strategies/jpegd-locked-jpeg-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/jpegd-locked-jpeg-of/index.ts -------------------------------------------------------------------------------- /src/strategies/juicebox/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/juicebox/examples.json -------------------------------------------------------------------------------- /src/strategies/juicebox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/juicebox/index.ts -------------------------------------------------------------------------------- /src/strategies/karma-discord-roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/karma-discord-roles/README.md -------------------------------------------------------------------------------- /src/strategies/karma-discord-roles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/karma-discord-roles/index.ts -------------------------------------------------------------------------------- /src/strategies/l2-deversifi/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/l2-deversifi/examples.json -------------------------------------------------------------------------------- /src/strategies/l2-deversifi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/l2-deversifi/index.ts -------------------------------------------------------------------------------- /src/strategies/landdao-token-tiers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/landdao-token-tiers/README.md -------------------------------------------------------------------------------- /src/strategies/landdao-token-tiers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/landdao-token-tiers/index.ts -------------------------------------------------------------------------------- /src/strategies/liftkitchen/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/liftkitchen/examples.json -------------------------------------------------------------------------------- /src/strategies/liftkitchen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/liftkitchen/index.ts -------------------------------------------------------------------------------- /src/strategies/linear-vesting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/linear-vesting-power/index.ts -------------------------------------------------------------------------------- /src/strategies/lit-dao-governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lit-dao-governance/README.md -------------------------------------------------------------------------------- /src/strategies/lit-dao-governance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lit-dao-governance/index.ts -------------------------------------------------------------------------------- /src/strategies/livepeer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/livepeer/README.md -------------------------------------------------------------------------------- /src/strategies/livepeer/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/livepeer/examples.json -------------------------------------------------------------------------------- /src/strategies/livepeer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/livepeer/index.ts -------------------------------------------------------------------------------- /src/strategies/lodestar-staked-lp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lodestar-staked-lp/README.md -------------------------------------------------------------------------------- /src/strategies/lodestar-staked-lp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lodestar-staked-lp/index.ts -------------------------------------------------------------------------------- /src/strategies/lodestar-vesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lodestar-vesting/README.md -------------------------------------------------------------------------------- /src/strategies/lodestar-vesting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lodestar-vesting/index.ts -------------------------------------------------------------------------------- /src/strategies/lqty-proxy-stakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lqty-proxy-stakers/README.md -------------------------------------------------------------------------------- /src/strategies/lqty-proxy-stakers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lqty-proxy-stakers/index.ts -------------------------------------------------------------------------------- /src/strategies/lrc-nft-search-mult/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lrc-nft-search-mult/README.md -------------------------------------------------------------------------------- /src/strategies/lrc-nft-search-mult/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lrc-nft-search-mult/index.ts -------------------------------------------------------------------------------- /src/strategies/lydia-gov-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lydia-gov-vault/README.md -------------------------------------------------------------------------------- /src/strategies/lydia-gov-vault/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lydia-gov-vault/examples.json -------------------------------------------------------------------------------- /src/strategies/lydia-gov-vault/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/lydia-gov-vault/index.ts -------------------------------------------------------------------------------- /src/strategies/maker-ds-chief/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/maker-ds-chief/examples.json -------------------------------------------------------------------------------- /src/strategies/maker-ds-chief/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/maker-ds-chief/index.ts -------------------------------------------------------------------------------- /src/strategies/marsecosystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/marsecosystem/README.md -------------------------------------------------------------------------------- /src/strategies/marsecosystem/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/marsecosystem/examples.json -------------------------------------------------------------------------------- /src/strategies/marsecosystem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/marsecosystem/index.ts -------------------------------------------------------------------------------- /src/strategies/masterchef/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/masterchef/examples.json -------------------------------------------------------------------------------- /src/strategies/masterchef/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/masterchef/index.ts -------------------------------------------------------------------------------- /src/strategies/math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/math/README.md -------------------------------------------------------------------------------- /src/strategies/math/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/math/examples.json -------------------------------------------------------------------------------- /src/strategies/math/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/math/index.ts -------------------------------------------------------------------------------- /src/strategies/math/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/math/options.ts -------------------------------------------------------------------------------- /src/strategies/mcn-farm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mcn-farm/README.md -------------------------------------------------------------------------------- /src/strategies/mcn-farm/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mcn-farm/examples.json -------------------------------------------------------------------------------- /src/strategies/mcn-farm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mcn-farm/index.ts -------------------------------------------------------------------------------- /src/strategies/meebitsdao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/meebitsdao/README.md -------------------------------------------------------------------------------- /src/strategies/meebitsdao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/meebitsdao/examples.json -------------------------------------------------------------------------------- /src/strategies/meebitsdao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/meebitsdao/index.ts -------------------------------------------------------------------------------- /src/strategies/membership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/membership/README.md -------------------------------------------------------------------------------- /src/strategies/membership/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/membership/examples.json -------------------------------------------------------------------------------- /src/strategies/membership/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/membership/index.ts -------------------------------------------------------------------------------- /src/strategies/metropolis-pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/metropolis-pod/README.md -------------------------------------------------------------------------------- /src/strategies/metropolis-pod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/metropolis-pod/index.ts -------------------------------------------------------------------------------- /src/strategies/metropolis-pod/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/metropolis-pod/schema.json -------------------------------------------------------------------------------- /src/strategies/minotaur-money/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/minotaur-money/index.ts -------------------------------------------------------------------------------- /src/strategies/mithcash/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mithcash/examples.json -------------------------------------------------------------------------------- /src/strategies/mithcash/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mithcash/index.ts -------------------------------------------------------------------------------- /src/strategies/moca-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moca-staking/README.md -------------------------------------------------------------------------------- /src/strategies/moca-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moca-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/moca-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moca-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/modefi-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/modefi-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/modefi/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/modefi/examples.json -------------------------------------------------------------------------------- /src/strategies/modefi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/modefi/index.ts -------------------------------------------------------------------------------- /src/strategies/moloch-all/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch-all/examples.json -------------------------------------------------------------------------------- /src/strategies/moloch-all/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch-all/index.ts -------------------------------------------------------------------------------- /src/strategies/moloch-loot/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch-loot/examples.json -------------------------------------------------------------------------------- /src/strategies/moloch-loot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch-loot/index.ts -------------------------------------------------------------------------------- /src/strategies/moloch/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch/examples.json -------------------------------------------------------------------------------- /src/strategies/moloch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moloch/index.ts -------------------------------------------------------------------------------- /src/strategies/moonbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moonbase/README.md -------------------------------------------------------------------------------- /src/strategies/moonbase/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moonbase/examples.json -------------------------------------------------------------------------------- /src/strategies/moonbase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moonbase/index.ts -------------------------------------------------------------------------------- /src/strategies/morpho-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/morpho-delegation/README.md -------------------------------------------------------------------------------- /src/strategies/morpho-delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/morpho-delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/moxie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moxie/README.md -------------------------------------------------------------------------------- /src/strategies/moxie/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moxie/examples.json -------------------------------------------------------------------------------- /src/strategies/moxie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/moxie/index.ts -------------------------------------------------------------------------------- /src/strategies/mstable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mstable/README.md -------------------------------------------------------------------------------- /src/strategies/mstable/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mstable/examples.json -------------------------------------------------------------------------------- /src/strategies/mstable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mstable/index.ts -------------------------------------------------------------------------------- /src/strategies/multichain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/multichain/README.md -------------------------------------------------------------------------------- /src/strategies/multichain/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/multichain/examples.json -------------------------------------------------------------------------------- /src/strategies/multichain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/multichain/index.ts -------------------------------------------------------------------------------- /src/strategies/multisig-owners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/multisig-owners/README.md -------------------------------------------------------------------------------- /src/strategies/multisig-owners/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/multisig-owners/index.ts -------------------------------------------------------------------------------- /src/strategies/mushrooms/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mushrooms/examples.json -------------------------------------------------------------------------------- /src/strategies/mushrooms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/mushrooms/index.ts -------------------------------------------------------------------------------- /src/strategies/nayms-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nayms-staking/README.md -------------------------------------------------------------------------------- /src/strategies/nayms-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nayms-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/nayms-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nayms-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/nedao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nedao/README.md -------------------------------------------------------------------------------- /src/strategies/nedao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nedao/examples.json -------------------------------------------------------------------------------- /src/strategies/nedao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nedao/index.ts -------------------------------------------------------------------------------- /src/strategies/nedao/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nedao/schema.json -------------------------------------------------------------------------------- /src/strategies/nexon-army-nft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nexon-army-nft/index.ts -------------------------------------------------------------------------------- /src/strategies/niu-staked/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/niu-staked/examples.json -------------------------------------------------------------------------------- /src/strategies/niu-staked/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/niu-staked/index.ts -------------------------------------------------------------------------------- /src/strategies/nouns-rfp-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/nouns-rfp-power/index.ts -------------------------------------------------------------------------------- /src/strategies/occ-stake-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/occ-stake-of/README.md -------------------------------------------------------------------------------- /src/strategies/occ-stake-of/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/occ-stake-of/examples.json -------------------------------------------------------------------------------- /src/strategies/occ-stake-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/occ-stake-of/index.ts -------------------------------------------------------------------------------- /src/strategies/ocean-dao-brightid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ocean-dao-brightid/index.ts -------------------------------------------------------------------------------- /src/strategies/ocean-marketplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ocean-marketplace/README.md -------------------------------------------------------------------------------- /src/strategies/ocean-marketplace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ocean-marketplace/index.ts -------------------------------------------------------------------------------- /src/strategies/ogn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ogn/README.md -------------------------------------------------------------------------------- /src/strategies/ogn/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ogn/examples.json -------------------------------------------------------------------------------- /src/strategies/ogn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ogn/index.ts -------------------------------------------------------------------------------- /src/strategies/oolongswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/oolongswap/examples.json -------------------------------------------------------------------------------- /src/strategies/oolongswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/oolongswap/index.ts -------------------------------------------------------------------------------- /src/strategies/opium/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/opium/examples.json -------------------------------------------------------------------------------- /src/strategies/opium/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/opium/index.ts -------------------------------------------------------------------------------- /src/strategies/orca-pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/orca-pod/README.md -------------------------------------------------------------------------------- /src/strategies/orca-pod/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/orca-pod/examples.json -------------------------------------------------------------------------------- /src/strategies/orca-pod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/orca-pod/index.ts -------------------------------------------------------------------------------- /src/strategies/orca-pod/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/orca-pod/schema.json -------------------------------------------------------------------------------- /src/strategies/otterspace-badges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/otterspace-badges/README.md -------------------------------------------------------------------------------- /src/strategies/otterspace-badges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/otterspace-badges/index.ts -------------------------------------------------------------------------------- /src/strategies/overtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/overtime/README.md -------------------------------------------------------------------------------- /src/strategies/overtime/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/overtime/examples.json -------------------------------------------------------------------------------- /src/strategies/overtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/overtime/index.ts -------------------------------------------------------------------------------- /src/strategies/pagination/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pagination/examples.json -------------------------------------------------------------------------------- /src/strategies/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pagination/index.ts -------------------------------------------------------------------------------- /src/strategies/pancake-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake-profile/README.md -------------------------------------------------------------------------------- /src/strategies/pancake-profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake-profile/index.ts -------------------------------------------------------------------------------- /src/strategies/pancake-profile/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake-profile/schema.json -------------------------------------------------------------------------------- /src/strategies/pancake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake/README.md -------------------------------------------------------------------------------- /src/strategies/pancake/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake/examples.json -------------------------------------------------------------------------------- /src/strategies/pancake/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pancake/index.ts -------------------------------------------------------------------------------- /src/strategies/pepemon/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pepemon/examples.json -------------------------------------------------------------------------------- /src/strategies/pepemon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pepemon/index.ts -------------------------------------------------------------------------------- /src/strategies/planet-finance-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/planet-finance-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/plearn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/plearn/README.md -------------------------------------------------------------------------------- /src/strategies/plearn/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/plearn/examples.json -------------------------------------------------------------------------------- /src/strategies/plearn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/plearn/index.ts -------------------------------------------------------------------------------- /src/strategies/poap-with-weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/poap-with-weight/README.md -------------------------------------------------------------------------------- /src/strategies/poap-with-weight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/poap-with-weight/index.ts -------------------------------------------------------------------------------- /src/strategies/poap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/poap/README.md -------------------------------------------------------------------------------- /src/strategies/poap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/poap/examples.json -------------------------------------------------------------------------------- /src/strategies/poap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/poap/index.ts -------------------------------------------------------------------------------- /src/strategies/pob-hash/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pob-hash/examples.json -------------------------------------------------------------------------------- /src/strategies/pob-hash/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pob-hash/index.ts -------------------------------------------------------------------------------- /src/strategies/pokt-network-pda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pokt-network-pda/README.md -------------------------------------------------------------------------------- /src/strategies/pokt-network-pda/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pokt-network-pda/index.ts -------------------------------------------------------------------------------- /src/strategies/polis-balance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/polis-balance/examples.json -------------------------------------------------------------------------------- /src/strategies/polis-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/polis-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/pom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pom/README.md -------------------------------------------------------------------------------- /src/strategies/pom/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pom/examples.json -------------------------------------------------------------------------------- /src/strategies/pom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pom/index.ts -------------------------------------------------------------------------------- /src/strategies/pom/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/pom/schema.json -------------------------------------------------------------------------------- /src/strategies/posichain-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/posichain-staking/README.md -------------------------------------------------------------------------------- /src/strategies/posichain-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/posichain-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/potion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/potion/README.md -------------------------------------------------------------------------------- /src/strategies/potion/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/potion/examples.json -------------------------------------------------------------------------------- /src/strategies/potion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/potion/index.ts -------------------------------------------------------------------------------- /src/strategies/prepo-vesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/prepo-vesting/README.md -------------------------------------------------------------------------------- /src/strategies/prepo-vesting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/prepo-vesting/examples.json -------------------------------------------------------------------------------- /src/strategies/prepo-vesting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/prepo-vesting/index.ts -------------------------------------------------------------------------------- /src/strategies/prepo-vesting/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/prepo-vesting/schema.json -------------------------------------------------------------------------------- /src/strategies/printer-financial/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/printer-financial/index.ts -------------------------------------------------------------------------------- /src/strategies/proof-of-humanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/proof-of-humanity/README.md -------------------------------------------------------------------------------- /src/strategies/proof-of-humanity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/proof-of-humanity/index.ts -------------------------------------------------------------------------------- /src/strategies/push-voting-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/push-voting-power/README.md -------------------------------------------------------------------------------- /src/strategies/push-voting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/push-voting-power/index.ts -------------------------------------------------------------------------------- /src/strategies/quickswap-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/quickswap-v3/README.md -------------------------------------------------------------------------------- /src/strategies/quickswap-v3/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/quickswap-v3/examples.json -------------------------------------------------------------------------------- /src/strategies/quickswap-v3/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/quickswap-v3/helper.ts -------------------------------------------------------------------------------- /src/strategies/quickswap-v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/quickswap-v3/index.ts -------------------------------------------------------------------------------- /src/strategies/rari-fuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rari-fuse/README.md -------------------------------------------------------------------------------- /src/strategies/rari-fuse/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rari-fuse/examples.json -------------------------------------------------------------------------------- /src/strategies/rari-fuse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rari-fuse/index.ts -------------------------------------------------------------------------------- /src/strategies/rari-fuse/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rari-fuse/schema.json -------------------------------------------------------------------------------- /src/strategies/realt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/realt/README.md -------------------------------------------------------------------------------- /src/strategies/realt/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/realt/examples.json -------------------------------------------------------------------------------- /src/strategies/realt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/realt/index.ts -------------------------------------------------------------------------------- /src/strategies/realt/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/realt/schema.json -------------------------------------------------------------------------------- /src/strategies/recusal-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/recusal-list/README.md -------------------------------------------------------------------------------- /src/strategies/recusal-list/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/recusal-list/examples.json -------------------------------------------------------------------------------- /src/strategies/recusal-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/recusal-list/index.ts -------------------------------------------------------------------------------- /src/strategies/reliquary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/reliquary/README.md -------------------------------------------------------------------------------- /src/strategies/reliquary/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/reliquary/examples.json -------------------------------------------------------------------------------- /src/strategies/reliquary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/reliquary/index.ts -------------------------------------------------------------------------------- /src/strategies/ren-nodes/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ren-nodes/examples.json -------------------------------------------------------------------------------- /src/strategies/ren-nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ren-nodes/index.ts -------------------------------------------------------------------------------- /src/strategies/rep3-badges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rep3-badges/README.md -------------------------------------------------------------------------------- /src/strategies/rep3-badges/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rep3-badges/examples.json -------------------------------------------------------------------------------- /src/strategies/rep3-badges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rep3-badges/index.ts -------------------------------------------------------------------------------- /src/strategies/revest/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/revest/examples.json -------------------------------------------------------------------------------- /src/strategies/revest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/revest/index.ts -------------------------------------------------------------------------------- /src/strategies/rnbw-balance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rnbw-balance/examples.json -------------------------------------------------------------------------------- /src/strategies/rnbw-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rnbw-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/rowdy-roos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rowdy-roos/README.md -------------------------------------------------------------------------------- /src/strategies/rowdy-roos/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rowdy-roos/examples.json -------------------------------------------------------------------------------- /src/strategies/rowdy-roos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/rowdy-roos/index.ts -------------------------------------------------------------------------------- /src/strategies/ruler-staked-lp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ruler-staked-lp/index.ts -------------------------------------------------------------------------------- /src/strategies/sablier-v1-deposit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v1-deposit/index.ts -------------------------------------------------------------------------------- /src/strategies/sablier-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/README.md -------------------------------------------------------------------------------- /src/strategies/sablier-v2/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/configuration.ts -------------------------------------------------------------------------------- /src/strategies/sablier-v2/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/examples.json -------------------------------------------------------------------------------- /src/strategies/sablier-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/sablier-v2/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/queries.ts -------------------------------------------------------------------------------- /src/strategies/sablier-v2/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sablier-v2/schema.json -------------------------------------------------------------------------------- /src/strategies/sacra-subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sacra-subgraph/README.md -------------------------------------------------------------------------------- /src/strategies/sacra-subgraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sacra-subgraph/index.ts -------------------------------------------------------------------------------- /src/strategies/safe-vested/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/safe-vested/README.md -------------------------------------------------------------------------------- /src/strategies/safe-vested/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/safe-vested/examples.json -------------------------------------------------------------------------------- /src/strategies/safe-vested/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/safe-vested/index.ts -------------------------------------------------------------------------------- /src/strategies/saffron-finance-v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/saffron-finance-v2/index.ts -------------------------------------------------------------------------------- /src/strategies/saffron-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/saffron-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/sandman-dao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sandman-dao/README.md -------------------------------------------------------------------------------- /src/strategies/sandman-dao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sandman-dao/examples.json -------------------------------------------------------------------------------- /src/strategies/sandman-dao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sandman-dao/index.ts -------------------------------------------------------------------------------- /src/strategies/sd-boost-twavp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-boost-twavp/README.md -------------------------------------------------------------------------------- /src/strategies/sd-boost-twavp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-boost-twavp/index.ts -------------------------------------------------------------------------------- /src/strategies/sd-boost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-boost/README.md -------------------------------------------------------------------------------- /src/strategies/sd-boost/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-boost/examples.json -------------------------------------------------------------------------------- /src/strategies/sd-boost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-boost/index.ts -------------------------------------------------------------------------------- /src/strategies/sd-vote-boost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-vote-boost/README.md -------------------------------------------------------------------------------- /src/strategies/sd-vote-boost/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-vote-boost/examples.json -------------------------------------------------------------------------------- /src/strategies/sd-vote-boost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sd-vote-boost/index.ts -------------------------------------------------------------------------------- /src/strategies/snet-farmers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-farmers/README.md -------------------------------------------------------------------------------- /src/strategies/snet-farmers/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-farmers/examples.json -------------------------------------------------------------------------------- /src/strategies/snet-farmers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-farmers/index.ts -------------------------------------------------------------------------------- /src/strategies/snet-stakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-stakers/README.md -------------------------------------------------------------------------------- /src/strategies/snet-stakers/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-stakers/examples.json -------------------------------------------------------------------------------- /src/strategies/snet-stakers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snet-stakers/index.ts -------------------------------------------------------------------------------- /src/strategies/snote/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snote/examples.json -------------------------------------------------------------------------------- /src/strategies/snote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snote/index.ts -------------------------------------------------------------------------------- /src/strategies/snx-multichain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snx-multichain/README.md -------------------------------------------------------------------------------- /src/strategies/snx-multichain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/snx-multichain/index.ts -------------------------------------------------------------------------------- /src/strategies/spacefi-blp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacefi-blp/README.md -------------------------------------------------------------------------------- /src/strategies/spacefi-blp/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacefi-blp/examples.json -------------------------------------------------------------------------------- /src/strategies/spacefi-blp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacefi-blp/index.ts -------------------------------------------------------------------------------- /src/strategies/spaceid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spaceid/README.md -------------------------------------------------------------------------------- /src/strategies/spaceid/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spaceid/examples.json -------------------------------------------------------------------------------- /src/strategies/spaceid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spaceid/index.ts -------------------------------------------------------------------------------- /src/strategies/spaceid/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spaceid/schema.json -------------------------------------------------------------------------------- /src/strategies/spacey2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacey2025/README.md -------------------------------------------------------------------------------- /src/strategies/spacey2025/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacey2025/examples.json -------------------------------------------------------------------------------- /src/strategies/spacey2025/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spacey2025/index.ts -------------------------------------------------------------------------------- /src/strategies/split-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/split-delegation/README.md -------------------------------------------------------------------------------- /src/strategies/split-delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/split-delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/spooky-lp-sonic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spooky-lp-sonic/README.md -------------------------------------------------------------------------------- /src/strategies/spooky-lp-sonic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spooky-lp-sonic/index.ts -------------------------------------------------------------------------------- /src/strategies/spookyswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spookyswap/examples.json -------------------------------------------------------------------------------- /src/strategies/spookyswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spookyswap/index.ts -------------------------------------------------------------------------------- /src/strategies/spreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spreadsheet/README.md -------------------------------------------------------------------------------- /src/strategies/spreadsheet/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spreadsheet/examples.json -------------------------------------------------------------------------------- /src/strategies/spreadsheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spreadsheet/index.ts -------------------------------------------------------------------------------- /src/strategies/spreadsheet/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/spreadsheet/schema.json -------------------------------------------------------------------------------- /src/strategies/squid-dao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/squid-dao/README.md -------------------------------------------------------------------------------- /src/strategies/squid-dao/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/squid-dao/examples.json -------------------------------------------------------------------------------- /src/strategies/squid-dao/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/squid-dao/index.ts -------------------------------------------------------------------------------- /src/strategies/squid-dao/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/squid-dao/schema.json -------------------------------------------------------------------------------- /src/strategies/stablexswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/stablexswap/README.md -------------------------------------------------------------------------------- /src/strategies/stablexswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/stablexswap/examples.json -------------------------------------------------------------------------------- /src/strategies/stablexswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/stablexswap/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-balancer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-balancer/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-daomaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-daomaker/README.md -------------------------------------------------------------------------------- /src/strategies/staked-daomaker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-daomaker/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-keep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-keep/README.md -------------------------------------------------------------------------------- /src/strategies/staked-keep/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-keep/examples.json -------------------------------------------------------------------------------- /src/strategies/staked-keep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-keep/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-morekudasai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-morekudasai/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-psp-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-psp-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/staked-uniswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/staked-uniswap/index.ts -------------------------------------------------------------------------------- /src/strategies/starsharks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/starsharks/README.md -------------------------------------------------------------------------------- /src/strategies/starsharks/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/starsharks/examples.json -------------------------------------------------------------------------------- /src/strategies/starsharks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/starsharks/index.ts -------------------------------------------------------------------------------- /src/strategies/streamr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/streamr/README.md -------------------------------------------------------------------------------- /src/strategies/streamr/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/streamr/examples.json -------------------------------------------------------------------------------- /src/strategies/streamr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/streamr/index.ts -------------------------------------------------------------------------------- /src/strategies/streamr/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/streamr/schema.json -------------------------------------------------------------------------------- /src/strategies/superboring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/superboring/README.md -------------------------------------------------------------------------------- /src/strategies/superboring/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/superboring/examples.json -------------------------------------------------------------------------------- /src/strategies/superboring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/superboring/index.ts -------------------------------------------------------------------------------- /src/strategies/superboring/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/superboring/schema.json -------------------------------------------------------------------------------- /src/strategies/superfluid-vesting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/superfluid-vesting/index.ts -------------------------------------------------------------------------------- /src/strategies/sushiswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sushiswap/README.md -------------------------------------------------------------------------------- /src/strategies/sushiswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sushiswap/examples.json -------------------------------------------------------------------------------- /src/strategies/sushiswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sushiswap/index.ts -------------------------------------------------------------------------------- /src/strategies/swarm-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/swarm-staking/README.md -------------------------------------------------------------------------------- /src/strategies/swarm-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/swarm-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/swarm-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/swarm-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/swarm-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/swarm-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/sybil-protection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sybil-protection/README.md -------------------------------------------------------------------------------- /src/strategies/sybil-protection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/sybil-protection/index.ts -------------------------------------------------------------------------------- /src/strategies/synapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synapse/README.md -------------------------------------------------------------------------------- /src/strategies/synapse/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synapse/examples.json -------------------------------------------------------------------------------- /src/strategies/synapse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synapse/index.ts -------------------------------------------------------------------------------- /src/strategies/synapse/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synapse/schema.json -------------------------------------------------------------------------------- /src/strategies/synthetix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix/README.md -------------------------------------------------------------------------------- /src/strategies/synthetix/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix/examples.json -------------------------------------------------------------------------------- /src/strategies/synthetix/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix/helper.ts -------------------------------------------------------------------------------- /src/strategies/synthetix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix/index.ts -------------------------------------------------------------------------------- /src/strategies/synthetix_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix_1/README.md -------------------------------------------------------------------------------- /src/strategies/synthetix_1/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix_1/examples.json -------------------------------------------------------------------------------- /src/strategies/synthetix_1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/synthetix_1/index.ts -------------------------------------------------------------------------------- /src/strategies/taraxa-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/taraxa-delegation/README.md -------------------------------------------------------------------------------- /src/strategies/taraxa-delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/taraxa-delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/thales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thales/README.md -------------------------------------------------------------------------------- /src/strategies/thales/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thales/examples.json -------------------------------------------------------------------------------- /src/strategies/thales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thales/index.ts -------------------------------------------------------------------------------- /src/strategies/the-graph-balance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph-balance/README.md -------------------------------------------------------------------------------- /src/strategies/the-graph-balance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph-balance/index.ts -------------------------------------------------------------------------------- /src/strategies/the-graph-indexing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph-indexing/index.ts -------------------------------------------------------------------------------- /src/strategies/the-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph/README.md -------------------------------------------------------------------------------- /src/strategies/the-graph/baseStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph/baseStrategy.ts -------------------------------------------------------------------------------- /src/strategies/the-graph/graphUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/the-graph/graphUtils.ts -------------------------------------------------------------------------------- /src/strategies/thresholds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thresholds/README.md -------------------------------------------------------------------------------- /src/strategies/thresholds/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thresholds/examples.json -------------------------------------------------------------------------------- /src/strategies/thresholds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/thresholds/index.ts -------------------------------------------------------------------------------- /src/strategies/ticket-validity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket-validity/README.md -------------------------------------------------------------------------------- /src/strategies/ticket-validity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket-validity/index.ts -------------------------------------------------------------------------------- /src/strategies/ticket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket/README.md -------------------------------------------------------------------------------- /src/strategies/ticket/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket/examples.json -------------------------------------------------------------------------------- /src/strategies/ticket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket/index.ts -------------------------------------------------------------------------------- /src/strategies/ticket/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ticket/schema.json -------------------------------------------------------------------------------- /src/strategies/tokenlon/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tokenlon/examples.json -------------------------------------------------------------------------------- /src/strategies/tokenlon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tokenlon/index.ts -------------------------------------------------------------------------------- /src/strategies/tomb-finance/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tomb-finance/examples.json -------------------------------------------------------------------------------- /src/strategies/tomb-finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tomb-finance/index.ts -------------------------------------------------------------------------------- /src/strategies/total-axion-shares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/total-axion-shares/index.ts -------------------------------------------------------------------------------- /src/strategies/tpro-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tpro-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/tpro-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tpro-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/tranche-staking-lp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tranche-staking-lp/index.ts -------------------------------------------------------------------------------- /src/strategies/tranche-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tranche-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/tutellus-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tutellus-protocol/README.md -------------------------------------------------------------------------------- /src/strategies/tutellus-protocol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/tutellus-protocol/index.ts -------------------------------------------------------------------------------- /src/strategies/typhoon/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/typhoon/examples.json -------------------------------------------------------------------------------- /src/strategies/typhoon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/typhoon/index.ts -------------------------------------------------------------------------------- /src/strategies/umami-voting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/umami-voting/README.md -------------------------------------------------------------------------------- /src/strategies/umami-voting/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/umami-voting/examples.json -------------------------------------------------------------------------------- /src/strategies/umami-voting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/umami-voting/index.ts -------------------------------------------------------------------------------- /src/strategies/uni/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uni/examples.json -------------------------------------------------------------------------------- /src/strategies/uni/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uni/index.ts -------------------------------------------------------------------------------- /src/strategies/unipool-same-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/unipool-same-token/index.ts -------------------------------------------------------------------------------- /src/strategies/unipool-univ2-lp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/unipool-univ2-lp/index.ts -------------------------------------------------------------------------------- /src/strategies/unipool-xsushi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/unipool-xsushi/index.ts -------------------------------------------------------------------------------- /src/strategies/uniswap-v3-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap-v3-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/uniswap-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap-v3/README.md -------------------------------------------------------------------------------- /src/strategies/uniswap-v3/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap-v3/examples.json -------------------------------------------------------------------------------- /src/strategies/uniswap-v3/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap-v3/helper.ts -------------------------------------------------------------------------------- /src/strategies/uniswap-v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap-v3/index.ts -------------------------------------------------------------------------------- /src/strategies/uniswap/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap/examples.json -------------------------------------------------------------------------------- /src/strategies/uniswap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/uniswap/index.ts -------------------------------------------------------------------------------- /src/strategies/urbit-galaxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/urbit-galaxies/README.md -------------------------------------------------------------------------------- /src/strategies/urbit-galaxies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/urbit-galaxies/index.ts -------------------------------------------------------------------------------- /src/strategies/validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/validation/README.md -------------------------------------------------------------------------------- /src/strategies/validation/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/validation/examples.json -------------------------------------------------------------------------------- /src/strategies/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/validation/index.ts -------------------------------------------------------------------------------- /src/strategies/ve-balance-of-at/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-balance-of-at/README.md -------------------------------------------------------------------------------- /src/strategies/ve-balance-of-at/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-balance-of-at/index.ts -------------------------------------------------------------------------------- /src/strategies/ve-ribbon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-ribbon/README.md -------------------------------------------------------------------------------- /src/strategies/ve-ribbon/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-ribbon/examples.json -------------------------------------------------------------------------------- /src/strategies/ve-ribbon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-ribbon/index.ts -------------------------------------------------------------------------------- /src/strategies/ve-ribbon/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/ve-ribbon/schema.json -------------------------------------------------------------------------------- /src/strategies/vesper/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/vesper/examples.json -------------------------------------------------------------------------------- /src/strategies/vesper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/vesper/index.ts -------------------------------------------------------------------------------- /src/strategies/vested-deversifi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/vested-deversifi/index.ts -------------------------------------------------------------------------------- /src/strategies/vesting-balance-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/vesting-balance-of/index.ts -------------------------------------------------------------------------------- /src/strategies/volt-voting-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/volt-voting-power/README.md -------------------------------------------------------------------------------- /src/strategies/volt-voting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/volt-voting-power/index.ts -------------------------------------------------------------------------------- /src/strategies/wagdie-subgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/wagdie-subgraph/README.md -------------------------------------------------------------------------------- /src/strategies/wagdie-subgraph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/wagdie-subgraph/index.ts -------------------------------------------------------------------------------- /src/strategies/wanakafarm-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/wanakafarm-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/whitelist-weighted/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/whitelist-weighted/index.ts -------------------------------------------------------------------------------- /src/strategies/whitelist/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/whitelist/examples.json -------------------------------------------------------------------------------- /src/strategies/whitelist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/whitelist/index.ts -------------------------------------------------------------------------------- /src/strategies/winr-staking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/winr-staking/README.md -------------------------------------------------------------------------------- /src/strategies/winr-staking/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/winr-staking/examples.json -------------------------------------------------------------------------------- /src/strategies/winr-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/winr-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/winr-staking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/winr-staking/schema.json -------------------------------------------------------------------------------- /src/strategies/with-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/with-delegation/README.md -------------------------------------------------------------------------------- /src/strategies/with-delegation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/with-delegation/index.ts -------------------------------------------------------------------------------- /src/strategies/work/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/work/examples.json -------------------------------------------------------------------------------- /src/strategies/work/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/work/index.ts -------------------------------------------------------------------------------- /src/strategies/xcover/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xcover/examples.json -------------------------------------------------------------------------------- /src/strategies/xcover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xcover/index.ts -------------------------------------------------------------------------------- /src/strategies/xdai-easy-staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xdai-easy-staking/index.ts -------------------------------------------------------------------------------- /src/strategies/xdai-easy-staking/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xdai-easy-staking/utils.ts -------------------------------------------------------------------------------- /src/strategies/xdai-stake-holders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xdai-stake-holders/index.ts -------------------------------------------------------------------------------- /src/strategies/xrc20-balance-of/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xrc20-balance-of/index.ts -------------------------------------------------------------------------------- /src/strategies/xseen/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xseen/examples.json -------------------------------------------------------------------------------- /src/strategies/xseen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/xseen/index.ts -------------------------------------------------------------------------------- /src/strategies/yearn-vault/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/yearn-vault/examples.json -------------------------------------------------------------------------------- /src/strategies/yearn-vault/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/yearn-vault/index.ts -------------------------------------------------------------------------------- /src/strategies/zrx-voting-power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/zrx-voting-power/README.md -------------------------------------------------------------------------------- /src/strategies/zrx-voting-power/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/strategies/zrx-voting-power/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/utils/delegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/utils/delegation.ts -------------------------------------------------------------------------------- /src/validations/arbitrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/arbitrum/README.md -------------------------------------------------------------------------------- /src/validations/arbitrum/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/arbitrum/examples.json -------------------------------------------------------------------------------- /src/validations/arbitrum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/arbitrum/index.ts -------------------------------------------------------------------------------- /src/validations/basic/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/basic/examples.json -------------------------------------------------------------------------------- /src/validations/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/basic/index.ts -------------------------------------------------------------------------------- /src/validations/basic/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/basic/schema.json -------------------------------------------------------------------------------- /src/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/index.ts -------------------------------------------------------------------------------- /src/validations/passport-gated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/passport-gated/README.md -------------------------------------------------------------------------------- /src/validations/passport-gated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/passport-gated/index.ts -------------------------------------------------------------------------------- /src/validations/passport-gated/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/passport-gated/schema.json -------------------------------------------------------------------------------- /src/validations/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/src/validations/validation.ts -------------------------------------------------------------------------------- /test/addresses-starknet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/addresses-starknet.json -------------------------------------------------------------------------------- /test/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/addresses.json -------------------------------------------------------------------------------- /test/examples/delegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/examples/delegation.ts -------------------------------------------------------------------------------- /test/examples/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/examples/scores.ts -------------------------------------------------------------------------------- /test/integration/fixtures/vp-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/integration/fixtures/vp-fixtures.ts -------------------------------------------------------------------------------- /test/integration/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/integration/utils.test.ts -------------------------------------------------------------------------------- /test/integration/validation/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/integration/validation/basic.test.ts -------------------------------------------------------------------------------- /test/strategy-with-params.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/strategy-with-params.test.ts -------------------------------------------------------------------------------- /test/strategy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/strategy.test.ts -------------------------------------------------------------------------------- /test/unit/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/unit/validation.test.ts -------------------------------------------------------------------------------- /test/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/test/validation.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/snapshot-strategies/HEAD/yarn.lock --------------------------------------------------------------------------------