diff --git a/src/strategies/multichain/README.md b/src/strategies/multichain/README.md index 2cfec8c9a..40a51aa4f 100644 --- a/src/strategies/multichain/README.md +++ b/src/strategies/multichain/README.md @@ -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. diff --git a/src/strategies/multichain/index.ts b/src/strategies/multichain/index.ts index 19c2dbed4..d7cf9fa42 100644 --- a/src/strategies/multichain/index.ts +++ b/src/strategies/multichain/index.ts @@ -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, diff --git a/src/strategies/orca-pod/README.md b/src/strategies/orca-pod/README.md index 02b3f5be2..7e403d94b 100644 --- a/src/strategies/orca-pod/README.md +++ b/src/strategies/orca-pod/README.md @@ -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 diff --git a/src/strategies/orca-pod/index.ts b/src/strategies/orca-pod/index.ts index d8320488e..6b356ae97 100644 --- a/src/strategies/orca-pod/index.ts +++ b/src/strategies/orca-pod/index.ts @@ -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, diff --git a/src/strategies/pagination/README.md b/src/strategies/pagination/README.md new file mode 100644 index 000000000..0f95379e9 --- /dev/null +++ b/src/strategies/pagination/README.md @@ -0,0 +1 @@ +# [DEPRECATED] \ No newline at end of file diff --git a/src/strategies/pagination/index.ts b/src/strategies/pagination/index.ts index ea5a3b47b..ec2e655f4 100644 --- a/src/strategies/pagination/index.ts +++ b/src/strategies/pagination/index.ts @@ -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,