Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate multichain, pagination and orca-pod strategies #903

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/strategies/multichain/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# [DEPRECATED]
# multichain

If you want to calculate the balance from various chains like Ethereum, Binance smart chain, polygon etc. and use them for voting using various strategies, you can do it by using a strategy called “multichain strategy”. This allows cross chain voting in which multiple chains can be used together to calculate the voting power.
Expand Down
1 change: 1 addition & 0 deletions src/strategies/multichain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import strategies from '..';

export const author = 'kesar';
export const version = '1.1.0';
export const deprecated = true;

export async function strategy(
space,
Expand Down
1 change: 1 addition & 0 deletions src/strategies/orca-pod/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# [DEPRECATED] https://github.com/snapshot-labs/snapshot-strategies/pull/911
# orca-pod

This strategy give 1 voting power for each holder of a specific tokenId of orca's ERC1155
Expand Down
1 change: 1 addition & 0 deletions src/strategies/orca-pod/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { strategy as erc1155BalanceOfIdsWeightedStrategy } from '../erc1155-bala

export const author = 'snapshot-labs';
export const version = '0.1.0';
export const deprecated = true;

export async function strategy(
space,
Expand Down
1 change: 1 addition & 0 deletions src/strategies/pagination/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# [DEPRECATED]
1 change: 1 addition & 0 deletions src/strategies/pagination/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import strategies from '..';

export const author = 'bonustrack';
export const version = '0.1.0';
export const deprecated = true;

export async function strategy(
space,
Expand Down