Summary
Allow pOPIUM on BSC and OPIUM on Polygon to participate in voting process
Rationale
OPIUM governance token is bridged to chains like BSC and Polygon and at the moment only holders of the token on Ethereum have possibility to vote on the proposals
I propose to add multichain strategy to the opiumprotocol.eth snapshot via DAO and include following tokens into voting power calculation
- pOPIUM on BSC (https://bscscan.com/token/0x566cedd201f67e542a6851a2959c1a449a041945)
- OPIUM on Polygon (Opium Governance Token (PoS) (OPIUM) Token Tracker | PolygonScan)
TODO
What needs to be done to include aforementioned tokens into voting power is to append snapshot configuration with the following code:
{
"name": "multichain",
"params": {
"symbol": "Polygon OPIUM",
"strategies": [
{
"name": "erc20-balance-of",
"network": "137",
"params": {
"address": "0xe8f157e041df3b28151b667364e9c90789da7923",
"decimals": 18
}
}
],
"graphs": {
"137": "https://api.thegraph.com/subgraphs/name/sameepsi/maticblocks"
}
}
},
{
"name": "multichain",
"params": {
"symbol": "BSC pOPIUM",
"strategies": [
{
"name": "erc20-balance-of",
"network": "56",
"params": {
"address": "0x566cedd201f67e542a6851a2959c1a449a041945",
"decimals": 18
}
}
],
"graphs": {
"56": "https://api.thegraph.com/subgraphs/name/apyvision/block-info"
}
}
}
Updated snapshot configuration is already located here
https://cloudflare-ipfs.com/ipfs/QmXWyPEHiUbiXcSVjZYtJ5WXf5t51JYG4G4rczuA1ssJXB