From e2edad6748d5a4c11b2c4bde4fba8190e27a693e Mon Sep 17 00:00:00 2001 From: Angela Gilhotra Date: Mon, 23 Dec 2024 15:59:55 -0800 Subject: [PATCH] add cw descriptions --- README.md | 16 ++++++++-------- contracts.json | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2726061..e76ed97 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,14 @@ docker run --rm -v "$(pwd)":/code \ | Polytone Voice | Receiver of messages over IBC, executes on the destination chain. Maintains access control through the proxy (see above). | [v1.1.0](https://github.com/DA0-DA0/polytone/releases/tag/v1.1.0) | [DAO DAO](https://daodao.zone/) | `3` | `3AA8F962BADEB899DB4BC6E5931C852473B5719DBA5AFF5DC26C66CDE1ED250E` | Genesis | | Polytone Note | Sends messages to be executed on other chains over IBC. Handles channel management and packet routing. | [v1.1.0](https://github.com/DA0-DA0/polytone/releases/tag/v1.1.0) | [DAO DAO](https://daodao.zone/) | `4` | `CD13C487B820CE79BC7932F41497274635477845C2DCAF5CD4B06332175F53EC` | Genesis | | MetaAccount | Xion's MetaAccount implementation | [pr40](https://github.com/burnt-labs/contracts/pull/40) | [Burnt Labs](https://burnt.com) | `5` | `FEFA4D0C57F6CA47A5D89C6F077A176D26027DB4EEFA758A929DD4C4AAF17D1B` | Genesis | -| cw1 Subkeys | cw1 Subkeys | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `6` | `0DEE80010FB15A7A03FC1153389DC1EEC36482B8D872B0640B8762C14E5C3CF8` | Genesis | -| cw1 Whitelist | cw1 Whitelist | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `7` | `86C0008909BEB14147FA99F66CA1AFB674FDCD737CCAD89C47EA2C95966F747E` | Genesis | -| cw3 Fixed Multisig | cw3 Fixed Multisig | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `8` | `734A8B5B958D9F3A9D97CAAEA93AAE409BD7FF21648B35B3F9A40F6DF0C39C00` | Genesis | -| cw3 Flex Multisig | cw3 Flex Multisig | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `9` | `8047BC30ED7129F24D4A89E7527C4926D3363A6BA038830A592A2041301553CF` | Genesis | -| cw4 Group | cw4 Group | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `10` | `4604A284E209C2FE320F223B9FD29805A0E8F2CF8EA7B01FAC28C3EFC4EE63F0` | Genesis | -| cw4 Stake | cw4 Stake | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `12` | `DCA8257AD67CCB15B4A61A882131B9D3FDD0DD178B121BB51BBDA35B682C6653` | Genesis | -| cw20 Base | cw20 Base | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `13` | `4D8E90DD340993033F1B9E8E3A3EE7F8673C582CA9BCDD8C8CF3C7470D6537D5` | Genesis | -| cw20 ics20 | cw20 ics20 | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `14` | `A63BA1554095B6AC04D2F08246ABCCFA7F1C2276BF19F52A943EE5B85FD7749B` | Genesis | +| cw1 Subkeys | A Proxy contract that extends the functionality of cw1-whitelist. Allows admins to grant allowances and set permissions to 'subkeys' | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `6` | `0DEE80010FB15A7A03FC1153389DC1EEC36482B8D872B0640B8762C14E5C3CF8` | Genesis | +| cw1 Whitelist | Proxy contract maintaining a list of admin addresses that can execute messages through it. Admin list defined at contract creation. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `7` | `86C0008909BEB14147FA99F66CA1AFB674FDCD737CCAD89C47EA2C95966F747E` | Genesis | +| cw3 Fixed Multisig | Implements a multisig wallet with a fixed set of voters defined at instantiation, each voter can have different voting weights. Allows voters to create, vote on, and execute proposals containing arbitrary messages. Supports different voting thresholds & configurable voting periods. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `8` | `734A8B5B958D9F3A9D97CAAEA93AAE409BD7FF21648B35B3F9A40F6DF0C39C00` | Genesis | +| cw3 Flex Multisig | An advanced multisig using a separate cw4 (group) contract to manage its voter set, allowing multiple multisigs to share the same group of voters with different voting thresholds. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `9` | `8047BC30ED7129F24D4A89E7527C4926D3363A6BA038830A592A2041301553CF` | Genesis | +| cw4 Group | Manages group membership with weighted voting power. Maintains a list of members, controlled by an admin with rights to add or remove members. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `10` | `4604A284E209C2FE320F223B9FD29805A0E8F2CF8EA7B01FAC28C3EFC4EE63F0` | Genesis | +| cw4 Stake | Determines group membership and voting weights based on the amount of tokens (native or cw20) that users have staked, with configurable parameters like minimum bond amount and tokens-per-weight ratio. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `12` | `DCA8257AD67CCB15B4A61A882131B9D3FDD0DD178B121BB51BBDA35B682C6653` | Genesis | +| cw20 Base | Implementation of the CW20 token standard in CosmWasm. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `13` | `4D8E90DD340993033F1B9E8E3A3EE7F8673C582CA9BCDD8C8CF3C7470D6537D5` | Genesis | +| cw20 ics20 | Enables CW20 tokens to be sent over IBC using the ICS20 protocol, allowing custom CW20 tokens from one chain to be used like native tokens on other chains. | [v2.0.0](https://github.com/CosmWasm/cw-plus/releases/tag/v2.0.0) | [CosmWasm](https://cosmwasm.com/) | `14` | `A63BA1554095B6AC04D2F08246ABCCFA7F1C2276BF19F52A943EE5B85FD7749B` | Genesis | | Treasury | Treasury | [v0.1.0](https://github.com/burnt-labs/contracts/commit/8224140b66da51fcdef25227a195d2dee16cc422) | [Burnt Labs](https://burnt.com) | `15` | `6A30325831651208E07F9A9F6FE5B29ADD99D6EDBDF5601C4AF9856D287E56E6` | Genesis | | Abstract Account | Abstract Account | [v0.25.0](https://github.com/AbstractSDK/abstract/releases/tag/v0.25.0) | [Abstract Money](https://abstract.money/) | `16` | `D3D18E16A185FD5D82A510D2D51E8849E1135A1EF23090738ED90CE1F2E377DA` | Genesis | | Abstract Acccount (XION) | Abstract Acccount (XION) | [v0.25.0](https://github.com/AbstractSDK/abstract/releases/tag/v0.25.0) | [Abstract Money](https://abstract.money/) | `17` | `A46BECDFECDECF94837B3D424826E78A483AF4F1E248EA378BFD5D702C5761AD` | Genesis | diff --git a/contracts.json b/contracts.json index a312f7c..fd4ad3b 100644 --- a/contracts.json +++ b/contracts.json @@ -65,7 +65,7 @@ }, { "name": "cw1 Subkeys", - "description": "cw1 Subkeys", + "description": "A Proxy contract that extends the functionality of cw1-whitelist. Allows admins to grant allowances and set permissions to 'subkeys'", "code_id": "6", "hash": "0DEE80010FB15A7A03FC1153389DC1EEC36482B8D872B0640B8762C14E5C3CF8", "release": { @@ -81,7 +81,7 @@ }, { "name": "cw1 Whitelist", - "description": "cw1 Whitelist", + "description": "Proxy contract maintaining a list of admin addresses that can execute messages through it. Admin list defined at contract creation.", "code_id": "7", "hash": "86C0008909BEB14147FA99F66CA1AFB674FDCD737CCAD89C47EA2C95966F747E", "release": { @@ -97,7 +97,7 @@ }, { "name": "cw3 Fixed Multisig", - "description": "cw3 Fixed Multisig", + "description": "Implements a multisig wallet with a fixed set of voters defined at instantiation, each voter can have different voting weights. Allows voters to create, vote on, and execute proposals containing arbitrary messages. Supports different voting thresholds & configurable voting periods.", "code_id": "8", "hash": "734A8B5B958D9F3A9D97CAAEA93AAE409BD7FF21648B35B3F9A40F6DF0C39C00", "release": { @@ -113,7 +113,7 @@ }, { "name": "cw3 Flex Multisig", - "description": "cw3 Flex Multisig", + "description": "An advanced multisig using a separate cw4 (group) contract to manage its voter set, allowing multiple multisigs to share the same group of voters with different voting thresholds.", "code_id": "9", "hash": "8047BC30ED7129F24D4A89E7527C4926D3363A6BA038830A592A2041301553CF", "release": { @@ -129,7 +129,7 @@ }, { "name": "cw4 Group", - "description": "cw4 Group", + "description": "Manages group membership with weighted voting power. Maintains a list of members, controlled by an admin with rights to add or remove members.", "code_id": "10", "hash": "4604A284E209C2FE320F223B9FD29805A0E8F2CF8EA7B01FAC28C3EFC4EE63F0", "release": { @@ -145,7 +145,7 @@ }, { "name": "cw4 Stake", - "description": "cw4 Stake", + "description": "Determines group membership and voting weights based on the amount of tokens (native or cw20) that users have staked, with configurable parameters like minimum bond amount and tokens-per-weight ratio.", "code_id": "12", "hash": "DCA8257AD67CCB15B4A61A882131B9D3FDD0DD178B121BB51BBDA35B682C6653", "release": { @@ -161,7 +161,7 @@ }, { "name": "cw20 Base", - "description": "cw20 Base", + "description": "Implementation of the CW20 token standard in CosmWasm.", "code_id": "13", "hash": "4D8E90DD340993033F1B9E8E3A3EE7F8673C582CA9BCDD8C8CF3C7470D6537D5", "release": { @@ -177,7 +177,7 @@ }, { "name": "cw20 ics20", - "description": "cw20 ics20", + "description": "Enables CW20 tokens to be sent over IBC using the ICS20 protocol, allowing custom CW20 tokens from one chain to be used like native tokens on other chains.", "code_id": "14", "hash": "A63BA1554095B6AC04D2F08246ABCCFA7F1C2276BF19F52A943EE5B85FD7749B", "release": {