From 19df7dc8b6da8af40107a573ef3f11bd5502ff2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 13:59:22 +0000 Subject: [PATCH 1/2] RELEASING: Releasing 5 package(s) Releases: @celo/governance@5.1.11 @celo/actions@0.2.2 @celo/dev-utils@0.2.1 @celo/explorer@5.1.1 @celo/celocli@9.0.1 [skip ci] --- .../fix-propose-proxy-log-and-proposalid.md | 44 ------------------ packages/actions/CHANGELOG.md | 41 +++++++++++++++++ packages/actions/package.json | 2 +- packages/cli/CHANGELOG.md | 45 +++++++++++++++++++ packages/cli/package.json | 8 ++-- packages/dev-utils/CHANGELOG.md | 41 +++++++++++++++++ packages/dev-utils/package.json | 2 +- packages/sdk/explorer/CHANGELOG.md | 41 +++++++++++++++++ packages/sdk/explorer/package.json | 2 +- packages/sdk/governance/CHANGELOG.md | 43 ++++++++++++++++++ packages/sdk/governance/package.json | 4 +- 11 files changed, 220 insertions(+), 53 deletions(-) delete mode 100644 .changeset/fix-propose-proxy-log-and-proposalid.md diff --git a/.changeset/fix-propose-proxy-log-and-proposalid.md b/.changeset/fix-propose-proxy-log-and-proposalid.md deleted file mode 100644 index 8bd79d0c58..0000000000 --- a/.changeset/fix-propose-proxy-log-and-proposalid.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -'@celo/governance': patch -'@celo/actions': patch -'@celo/dev-utils': patch -'@celo/explorer': patch -'@celo/celocli': patch ---- - -Fix several `governance`/`celocli` command output & safety issues: -- `governance:propose` logged `undefined is a proxy, repointing to ...` for - core-contract proxy repoints (logged `tx.address` which is undefined when the - tx is keyed by `contract`); now logs the real proxy id. -- `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and - the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on - submit, `Confirmation` on a later signer) plus the proposal id when the submit - reaches threshold and executes in the same receipt. -- `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` - (was `>= 0`, which returned every group); fixes `election:activate` selecting - groups with no pending votes. -- `governance:execute` now checks the proposal is approved before sending, so it - fails the precondition cleanly instead of reverting with "Proposal not approved". -- `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now - decode and print their on-chain events (proposal id / transaction id). -- `governance:propose` can now build a core-contract call whose method is added - by an earlier upgrade tx in the same proposal: when the method is absent from - the bundled ABI, it is resolved from the implementation a prior tx repoints the - proxy to (verified metadata), with a raw `function: "name(uint256)"` signature - fallback. -- `governance:propose` now simulates the proposal by default against a - self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, - applying the transactions in order so a transaction that depends on an earlier - one (e.g. a method added by a prior upgrade tx) simulates correctly. Use - `--simulate ` to target an external fork, or `--no-simulate` to fall - back to the previous independent per-transaction `eth_call` checks. -- `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin - in an infinite loop when no pending withdrawal is available, and re-fetch - between withdrawals to avoid stale indices. -- `@celo/dev-utils` anvil test harness now resolves the foundry-installed - `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, - so packages that bundle a newer anvil don't break the devchain state load. -- `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API - has been sunset / returns 503), so contract ABI resolution (used by - `governance:propose` to build calls to verified contracts, including - implementations added by an in-proposal upgrade) works again. diff --git a/packages/actions/CHANGELOG.md b/packages/actions/CHANGELOG.md index cf2d3ded14..dc7f5f8075 100644 --- a/packages/actions/CHANGELOG.md +++ b/packages/actions/CHANGELOG.md @@ -1,5 +1,46 @@ # @celo/actions +## 0.2.2 + +### Patch Changes + +- [#782](https://github.com/celo-org/developer-tooling/pull/782) [`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d) Thanks [@pahor167](https://github.com/pahor167)! - Fix several `governance`/`celocli` command output & safety issues: + - `governance:propose` logged `undefined is a proxy, repointing to ...` for + core-contract proxy repoints (logged `tx.address` which is undefined when the + tx is keyed by `contract`); now logs the real proxy id. + - `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and + the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on + submit, `Confirmation` on a later signer) plus the proposal id when the submit + reaches threshold and executes in the same receipt. + - `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` + (was `>= 0`, which returned every group); fixes `election:activate` selecting + groups with no pending votes. + - `governance:execute` now checks the proposal is approved before sending, so it + fails the precondition cleanly instead of reverting with "Proposal not approved". + - `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now + decode and print their on-chain events (proposal id / transaction id). + - `governance:propose` can now build a core-contract call whose method is added + by an earlier upgrade tx in the same proposal: when the method is absent from + the bundled ABI, it is resolved from the implementation a prior tx repoints the + proxy to (verified metadata), with a raw `function: "name(uint256)"` signature + fallback. + - `governance:propose` now simulates the proposal by default against a + self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, + applying the transactions in order so a transaction that depends on an earlier + one (e.g. a method added by a prior upgrade tx) simulates correctly. Use + `--simulate ` to target an external fork, or `--no-simulate` to fall + back to the previous independent per-transaction `eth_call` checks. + - `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin + in an infinite loop when no pending withdrawal is available, and re-fetch + between withdrawals to avoid stale indices. + - `@celo/dev-utils` anvil test harness now resolves the foundry-installed + `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, + so packages that bundle a newer anvil don't break the devchain state load. + - `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API + has been sunset / returns 503), so contract ABI resolution (used by + `governance:propose` to build calls to verified contracts, including + implementations added by an in-proposal upgrade) works again. + ## 0.2.1 ### Patch Changes diff --git a/packages/actions/package.json b/packages/actions/package.json index 4c44e9b4b9..7e5350ed54 100644 --- a/packages/actions/package.json +++ b/packages/actions/package.json @@ -1,6 +1,6 @@ { "name": "@celo/actions", - "version": "0.2.1", + "version": "0.2.2", "description": "Celo actions for use with Viem. Easily interact with Celo core contracts", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2928d48ad8..29988fd3c3 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,50 @@ # Changelog +## 9.0.1 + +### Patch Changes + +- [#782](https://github.com/celo-org/developer-tooling/pull/782) [`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d) Thanks [@pahor167](https://github.com/pahor167)! - Fix several `governance`/`celocli` command output & safety issues: + - `governance:propose` logged `undefined is a proxy, repointing to ...` for + core-contract proxy repoints (logged `tx.address` which is undefined when the + tx is keyed by `contract`); now logs the real proxy id. + - `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and + the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on + submit, `Confirmation` on a later signer) plus the proposal id when the submit + reaches threshold and executes in the same receipt. + - `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` + (was `>= 0`, which returned every group); fixes `election:activate` selecting + groups with no pending votes. + - `governance:execute` now checks the proposal is approved before sending, so it + fails the precondition cleanly instead of reverting with "Proposal not approved". + - `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now + decode and print their on-chain events (proposal id / transaction id). + - `governance:propose` can now build a core-contract call whose method is added + by an earlier upgrade tx in the same proposal: when the method is absent from + the bundled ABI, it is resolved from the implementation a prior tx repoints the + proxy to (verified metadata), with a raw `function: "name(uint256)"` signature + fallback. + - `governance:propose` now simulates the proposal by default against a + self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, + applying the transactions in order so a transaction that depends on an earlier + one (e.g. a method added by a prior upgrade tx) simulates correctly. Use + `--simulate ` to target an external fork, or `--no-simulate` to fall + back to the previous independent per-transaction `eth_call` checks. + - `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin + in an infinite loop when no pending withdrawal is available, and re-fetch + between withdrawals to avoid stale indices. + - `@celo/dev-utils` anvil test harness now resolves the foundry-installed + `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, + so packages that bundle a newer anvil don't break the devchain state load. + - `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API + has been sunset / returns 503), so contract ABI resolution (used by + `governance:propose` to build calls to verified contracts, including + implementations added by an in-proposal upgrade) works again. +- Updated dependencies [[`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d)]: + - @celo/governance@5.1.11 + - @celo/actions@0.2.2 + - @celo/explorer@5.1.1 + ## 9.0.0 ### Major Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 7ef9bb00bf..ecb5409606 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@celo/celocli", "description": "CLI Tool for interacting with the Celo protocol", - "version": "9.0.0", + "version": "9.0.1", "author": "Celo", "license": "Apache-2.0", "repository": { @@ -40,14 +40,14 @@ }, "dependencies": { "@celo/abis": "13.0.0-post-audit.0", - "@celo/actions": "0.2.1", + "@celo/actions": "0.2.2", "@celo/base": "^7.0.4", "@celo/compliance": "1.0.28", "@celo/connect": "^8.0.0", "@celo/contractkit": "^11.0.0", "@celo/cryptographic-utils": "^6.0.0", - "@celo/explorer": "^5.1.0", - "@celo/governance": "^5.1.10", + "@celo/explorer": "^5.1.1", + "@celo/governance": "^5.1.11", "@celo/metadata-claims": "^1.0.4", "@celo/utils": "^8.0.3", "@celo/viem-account-ledger": "^1.2.3", diff --git a/packages/dev-utils/CHANGELOG.md b/packages/dev-utils/CHANGELOG.md index 03550331da..1ab54f429b 100644 --- a/packages/dev-utils/CHANGELOG.md +++ b/packages/dev-utils/CHANGELOG.md @@ -1,5 +1,46 @@ # @celo/dev-utils +## 0.2.1 + +### Patch Changes + +- [#782](https://github.com/celo-org/developer-tooling/pull/782) [`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d) Thanks [@pahor167](https://github.com/pahor167)! - Fix several `governance`/`celocli` command output & safety issues: + - `governance:propose` logged `undefined is a proxy, repointing to ...` for + core-contract proxy repoints (logged `tx.address` which is undefined when the + tx is keyed by `contract`); now logs the real proxy id. + - `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and + the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on + submit, `Confirmation` on a later signer) plus the proposal id when the submit + reaches threshold and executes in the same receipt. + - `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` + (was `>= 0`, which returned every group); fixes `election:activate` selecting + groups with no pending votes. + - `governance:execute` now checks the proposal is approved before sending, so it + fails the precondition cleanly instead of reverting with "Proposal not approved". + - `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now + decode and print their on-chain events (proposal id / transaction id). + - `governance:propose` can now build a core-contract call whose method is added + by an earlier upgrade tx in the same proposal: when the method is absent from + the bundled ABI, it is resolved from the implementation a prior tx repoints the + proxy to (verified metadata), with a raw `function: "name(uint256)"` signature + fallback. + - `governance:propose` now simulates the proposal by default against a + self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, + applying the transactions in order so a transaction that depends on an earlier + one (e.g. a method added by a prior upgrade tx) simulates correctly. Use + `--simulate ` to target an external fork, or `--no-simulate` to fall + back to the previous independent per-transaction `eth_call` checks. + - `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin + in an infinite loop when no pending withdrawal is available, and re-fetch + between withdrawals to avoid stale indices. + - `@celo/dev-utils` anvil test harness now resolves the foundry-installed + `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, + so packages that bundle a newer anvil don't break the devchain state load. + - `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API + has been sunset / returns 503), so contract ABI resolution (used by + `governance:propose` to build calls to verified contracts, including + implementations added by an in-proposal upgrade) works again. + ## 0.2.0 ### Minor Changes diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json index 3e5527a743..f08da09c5c 100644 --- a/packages/dev-utils/package.json +++ b/packages/dev-utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/dev-utils", - "version": "0.2.0", + "version": "0.2.1", "description": "util package for celo packages that should only be a devDependency", "exports": { "./*": { diff --git a/packages/sdk/explorer/CHANGELOG.md b/packages/sdk/explorer/CHANGELOG.md index 189306bcf3..f1026dff51 100644 --- a/packages/sdk/explorer/CHANGELOG.md +++ b/packages/sdk/explorer/CHANGELOG.md @@ -1,5 +1,46 @@ # @celo/explorer +## 5.1.1 + +### Patch Changes + +- [#782](https://github.com/celo-org/developer-tooling/pull/782) [`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d) Thanks [@pahor167](https://github.com/pahor167)! - Fix several `governance`/`celocli` command output & safety issues: + - `governance:propose` logged `undefined is a proxy, repointing to ...` for + core-contract proxy repoints (logged `tx.address` which is undefined when the + tx is keyed by `contract`); now logs the real proxy id. + - `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and + the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on + submit, `Confirmation` on a later signer) plus the proposal id when the submit + reaches threshold and executes in the same receipt. + - `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` + (was `>= 0`, which returned every group); fixes `election:activate` selecting + groups with no pending votes. + - `governance:execute` now checks the proposal is approved before sending, so it + fails the precondition cleanly instead of reverting with "Proposal not approved". + - `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now + decode and print their on-chain events (proposal id / transaction id). + - `governance:propose` can now build a core-contract call whose method is added + by an earlier upgrade tx in the same proposal: when the method is absent from + the bundled ABI, it is resolved from the implementation a prior tx repoints the + proxy to (verified metadata), with a raw `function: "name(uint256)"` signature + fallback. + - `governance:propose` now simulates the proposal by default against a + self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, + applying the transactions in order so a transaction that depends on an earlier + one (e.g. a method added by a prior upgrade tx) simulates correctly. Use + `--simulate ` to target an external fork, or `--no-simulate` to fall + back to the previous independent per-transaction `eth_call` checks. + - `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin + in an infinite loop when no pending withdrawal is available, and re-fetch + between withdrawals to avoid stale indices. + - `@celo/dev-utils` anvil test harness now resolves the foundry-installed + `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, + so packages that bundle a newer anvil don't break the devchain state load. + - `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API + has been sunset / returns 503), so contract ABI resolution (used by + `governance:propose` to build calls to verified contracts, including + implementations added by an in-proposal upgrade) works again. + ## 5.1.0 ### Minor Changes diff --git a/packages/sdk/explorer/package.json b/packages/sdk/explorer/package.json index 1a98a2b588..3d1830d93a 100644 --- a/packages/sdk/explorer/package.json +++ b/packages/sdk/explorer/package.json @@ -1,6 +1,6 @@ { "name": "@celo/explorer", - "version": "5.1.0", + "version": "5.1.1", "description": "Celo's block explorer consumer", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/packages/sdk/governance/CHANGELOG.md b/packages/sdk/governance/CHANGELOG.md index 594dcff793..4cec18012b 100644 --- a/packages/sdk/governance/CHANGELOG.md +++ b/packages/sdk/governance/CHANGELOG.md @@ -1,5 +1,48 @@ # @celo/governance +## 5.1.11 + +### Patch Changes + +- [#782](https://github.com/celo-org/developer-tooling/pull/782) [`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d) Thanks [@pahor167](https://github.com/pahor167)! - Fix several `governance`/`celocli` command output & safety issues: + - `governance:propose` logged `undefined is a proxy, repointing to ...` for + core-contract proxy repoints (logged `tx.address` which is undefined when the + tx is keyed by `contract`); now logs the real proxy id. + - `governance:propose` now surfaces the new proposal id (`ProposalQueued`), and + the `--useMultiSig` path surfaces the multisig transaction id (`Submission` on + submit, `Confirmation` on a later signer) plus the proposal id when the submit + reaches threshold and executes in the same receipt. + - `@celo/actions` `getGroupsWithPendingVotes` now filters on pending votes `> 0` + (was `>= 0`, which returned every group); fixes `election:activate` selecting + groups with no pending votes. + - `governance:execute` now checks the proposal is approved before sending, so it + fails the precondition cleanly instead of reverting with "Proposal not approved". + - `governance:upvote`/`revokeupvote`/`votePartially` and `multisig:approve` now + decode and print their on-chain events (proposal id / transaction id). + - `governance:propose` can now build a core-contract call whose method is added + by an earlier upgrade tx in the same proposal: when the method is absent from + the bundled ABI, it is resolved from the implementation a prior tx repoints the + proxy to (verified metadata), with a raw `function: "name(uint256)"` signature + fallback. + - `governance:propose` now simulates the proposal by default against a + self-contained local fork (bundled `@foundry-rs/anvil`) of the connected node, + applying the transactions in order so a transaction that depends on an earlier + one (e.g. a method added by a prior upgrade tx) simulates correctly. Use + `--simulate ` to target an external fork, or `--no-simulate` to fall + back to the previous independent per-transaction `eth_call` checks. + - `lockedcelo:withdraw` (and `releasecelo:locked-gold` withdraw) no longer spin + in an infinite loop when no pending withdrawal is available, and re-fetch + between withdrawals to avoid stale indices. + - `@celo/dev-utils` anvil test harness now resolves the foundry-installed + `anvil` (snapshot-compatible) instead of a package-manager `anvil` bin shim, + so packages that bundle a newer anvil don't break the devchain state load. + - `@celo/explorer` `fetchMetadata` now uses the Sourcify v2 API (the v1 repo API + has been sunset / returns 503), so contract ABI resolution (used by + `governance:propose` to build calls to verified contracts, including + implementations added by an in-proposal upgrade) works again. +- Updated dependencies [[`9d19100`](https://github.com/celo-org/developer-tooling/commit/9d19100ac14476814fdbf8e6e3ce80f2bfe1822d)]: + - @celo/explorer@5.1.1 + ## 5.1.10 ### Patch Changes diff --git a/packages/sdk/governance/package.json b/packages/sdk/governance/package.json index 5c8484f276..2683ec41cf 100644 --- a/packages/sdk/governance/package.json +++ b/packages/sdk/governance/package.json @@ -1,6 +1,6 @@ { "name": "@celo/governance", - "version": "5.1.10", + "version": "5.1.11", "description": "Celo's governance proposals", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -28,7 +28,7 @@ "@celo/base": "^7.0.3", "@celo/connect": "^8.0.0", "@celo/contractkit": "^11.0.0", - "@celo/explorer": "^5.1.0", + "@celo/explorer": "^5.1.1", "@celo/utils": "^8.0.3", "@noble/hashes": "1.3.3", "@types/debug": "^4.1.5", From 2cb081726156c50bf5f2573237cff27604da0d65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:02:59 +0000 Subject: [PATCH 2/2] Version Packages --- docs/command-line-interface/account.md | 58 ++++++------- docs/command-line-interface/bridge.md | 10 +-- docs/command-line-interface/config.md | 4 +- docs/command-line-interface/election.md | 14 +-- docs/command-line-interface/epochs.md | 12 +-- docs/command-line-interface/governance.md | 46 +++++----- docs/command-line-interface/identity.md | 2 +- docs/command-line-interface/lockedcelo.md | 18 ++-- docs/command-line-interface/multisig.md | 8 +- docs/command-line-interface/network.md | 8 +- docs/command-line-interface/node.md | 2 +- docs/command-line-interface/oracle.md | 8 +- docs/command-line-interface/releasecelo.md | 30 +++---- docs/command-line-interface/rewards.md | 10 ++- docs/command-line-interface/transfer.md | 12 +-- docs/command-line-interface/validator.md | 16 ++-- docs/command-line-interface/validatorgroup.md | 16 ++-- docs/sdk/explorer/README.md | 4 +- docs/sdk/explorer/classes/BlockExplorer.md | 85 +++++++++++++++---- docs/sdk/explorer/classes/LogExplorer.md | 2 +- docs/sdk/explorer/functions/mapFromPairs.md | 2 +- .../explorer/functions/newBlockExplorer.md | 4 +- docs/sdk/explorer/functions/newLogExplorer.md | 2 +- .../functions/obtainKitContractDetails.md | 2 +- docs/sdk/explorer/interfaces/CallDetails.md | 16 ++-- .../explorer/interfaces/ContractDetails.md | 2 +- .../explorer/interfaces/ContractMapping.md | 2 +- .../interfaces/ContractNameAndMethodAbi.md | 10 +-- docs/sdk/explorer/interfaces/ParsedBlock.md | 8 +- docs/sdk/explorer/interfaces/ParsedTx.md | 8 +- .../getContractDetailsFromContract.md | 2 +- docs/sdk/governance/README.md | 4 +- .../classes/InteractiveProposalBuilder.md | 2 +- .../sdk/governance/classes/ProposalBuilder.md | 58 +++++++++---- .../functions/hotfixToEncodedParams.md | 2 +- docs/sdk/governance/functions/hotfixToHash.md | 2 +- .../functions/isProxySetAndInitFunction.md | 2 +- .../functions/isProxySetFunction.md | 2 +- .../governance/functions/isRegistryRepoint.md | 2 +- .../governance/functions/proposalToJSON.md | 2 +- .../functions/registryRepointArgs.md | 2 +- .../interfaces/ProposalTransactionJSON.md | 2 +- .../interfaces/RegistryAdditions.md | 2 +- .../ExternalProposalTransactionJSON.md | 2 +- .../type-aliases/ProposalTxParams.md | 2 +- docs/sdk/governance/variables/debug.md | 2 +- .../governance/variables/hotfixExecuteAbi.md | 2 +- packages/actions/docs/README.md | 2 +- packages/actions/docs/modules.md | 4 +- .../stake/README.md | 2 +- .../stake/functions/getElectedRpcNodes.md | 2 +- .../stake/functions/vote.md | 2 +- yarn.lock | 14 +-- 53 files changed, 310 insertions(+), 229 deletions(-) diff --git a/docs/command-line-interface/account.md b/docs/command-line-interface/account.md index d911a3a145..1fc23df24a 100644 --- a/docs/command-line-interface/account.md +++ b/docs/command-line-interface/account.md @@ -93,7 +93,7 @@ DESCRIPTION EXAMPLES authorize --from 0x5409ED021D9299bf6814279A6A1411A7e866A631 --role vote --signer 0x6ecbe1db9ef729cbe972c83fb886247691fb6beb --signature 0x1b9fca4bbb5bfb1dbe69ef1cddbd9b4202dcb6b134c5170611e1e36ecfa468d7b46c85328d504934fce6c2a1571603a50ae224d2b32685e84d4d1a1eebad8452eb - authorize --from 0x5409ED021D9299bf6814279A6A1411A7e866A631 --role validator --signer 0x6ecbe1db9ef729cbe972c83fb886247691fb6beb --signature 0x1b9fca4bbb5bfb1dbe69ef1cddbd9b4202dcb6b134c5170611e1e36ecfa468d7b46c85328d504934fce6c2a1571603a50ae224d2b32685e84d4d1a1eebad8452eb --blsKey 0x4fa3f67fc913878b068d1fa1cdddc54913d3bf988dbe5a36a20fa888f20d4894c408a6773f3d7bde11154f2a3076b700d345a42fd25a0e5e83f4db5586ac7979ac2053cd95d8f2efd3e959571ceccaa743e02cf4be3f5d7aaddb0b06fc9aff00 --blsPop 0xcdb77255037eb68897cd487fdd85388cbda448f617f874449d4b11588b0b7ad8ddc20d9bb450b513bb35664ea3923900 + authorize --from 0x5409ED021D9299bf6814279A6A1411A7e866A631 --role validator --signer 0x6ecbe1db9ef729cbe972c83fb886247691fb6beb --signature 0x1b9fca4bbb5bfb1dbe69ef1cddbd9b4202dcb6b134c5170611e1e36ecfa468d7b46c85328d504934fce6c2a1571603a50ae224d2b32685e84d4d1a1eebad8452eb FLAG DESCRIPTIONS -n, --node= URL of the node to run commands against or an alias @@ -106,7 +106,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/authorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/authorize.ts)_ +_See code: [src/commands/account/authorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/authorize.ts)_ ## `celocli account:balance ARG1` @@ -146,7 +146,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/balance.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/balance.ts)_ +_See code: [src/commands/account/balance.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/balance.ts)_ ## `celocli account:claim-account ARG1` @@ -216,7 +216,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-account.ts)_ +_See code: [src/commands/account/claim-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-account.ts)_ ## `celocli account:claim-domain ARG1` @@ -282,7 +282,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-domain.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-domain.ts)_ +_See code: [src/commands/account/claim-domain.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-domain.ts)_ ## `celocli account:claim-keybase ARG1` @@ -348,7 +348,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-keybase.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-keybase.ts)_ +_See code: [src/commands/account/claim-keybase.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-keybase.ts)_ ## `celocli account:claim-name ARG1` @@ -414,7 +414,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-name.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-name.ts)_ +_See code: [src/commands/account/claim-name.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-name.ts)_ ## `celocli account:claim-rpc-url ARG1` @@ -480,7 +480,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-rpc-url.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-rpc-url.ts)_ +_See code: [src/commands/account/claim-rpc-url.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-rpc-url.ts)_ ## `celocli account:claim-storage ARG1` @@ -546,7 +546,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/claim-storage.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/claim-storage.ts)_ +_See code: [src/commands/account/claim-storage.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/claim-storage.ts)_ ## `celocli account:create-metadata ARG1` @@ -611,7 +611,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/create-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/create-metadata.ts)_ +_See code: [src/commands/account/create-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/create-metadata.ts)_ ## `celocli account:deauthorize` @@ -678,7 +678,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/deauthorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/deauthorize.ts)_ +_See code: [src/commands/account/deauthorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/deauthorize.ts)_ ## `celocli account:delete-payment-delegation` @@ -737,7 +737,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/delete-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/delete-payment-delegation.ts)_ +_See code: [src/commands/account/delete-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/delete-payment-delegation.ts)_ ## `celocli account:get-metadata ARG1` @@ -823,7 +823,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/get-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/get-metadata.ts)_ +_See code: [src/commands/account/get-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/get-metadata.ts)_ ## `celocli account:get-payment-delegation` @@ -910,7 +910,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/get-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/get-payment-delegation.ts)_ +_See code: [src/commands/account/get-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/get-payment-delegation.ts)_ ## `celocli account:list` @@ -966,7 +966,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/list.ts)_ +_See code: [src/commands/account/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/list.ts)_ ## `celocli account:lock ARG1` @@ -1024,7 +1024,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/lock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/lock.ts)_ +_See code: [src/commands/account/lock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/lock.ts)_ ## `celocli account:new` @@ -1115,7 +1115,7 @@ FLAG DESCRIPTIONS path. (use changeIndex, and addressIndex flags to change BIP44 positions 4 and 5) ``` -_See code: [src/commands/account/new.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/new.ts)_ +_See code: [src/commands/account/new.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/new.ts)_ ## `celocli account:proof-of-possession` @@ -1178,7 +1178,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/proof-of-possession.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/proof-of-possession.ts)_ +_See code: [src/commands/account/proof-of-possession.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/proof-of-possession.ts)_ ## `celocli account:register` @@ -1243,7 +1243,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/register.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/register.ts)_ +_See code: [src/commands/account/register.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/register.ts)_ ## `celocli account:register-data-encryption-key` @@ -1306,7 +1306,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/register-data-encryption-key.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/register-data-encryption-key.ts)_ +_See code: [src/commands/account/register-data-encryption-key.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/register-data-encryption-key.ts)_ ## `celocli account:register-metadata` @@ -1399,7 +1399,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/register-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/register-metadata.ts)_ +_See code: [src/commands/account/register-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/register-metadata.ts)_ ## `celocli account:set-name` @@ -1462,7 +1462,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/set-name.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/set-name.ts)_ +_See code: [src/commands/account/set-name.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/set-name.ts)_ ## `celocli account:set-payment-delegation` @@ -1529,7 +1529,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/set-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/set-payment-delegation.ts)_ +_See code: [src/commands/account/set-payment-delegation.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/set-payment-delegation.ts)_ ## `celocli account:set-wallet` @@ -1601,7 +1601,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/set-wallet.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/set-wallet.ts)_ +_See code: [src/commands/account/set-wallet.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/set-wallet.ts)_ ## `celocli account:show ARG1` @@ -1635,7 +1635,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/show.ts)_ +_See code: [src/commands/account/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/show.ts)_ ## `celocli account:show-claimed-accounts ARG1` @@ -1690,7 +1690,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/show-claimed-accounts.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/show-claimed-accounts.ts)_ +_See code: [src/commands/account/show-claimed-accounts.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/show-claimed-accounts.ts)_ ## `celocli account:show-metadata ARG1` @@ -1735,7 +1735,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/show-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/show-metadata.ts)_ +_See code: [src/commands/account/show-metadata.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/show-metadata.ts)_ ## `celocli account:unlock ARG1` @@ -1804,7 +1804,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/unlock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/unlock.ts)_ +_See code: [src/commands/account/unlock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/unlock.ts)_ ## `celocli account:verify-proof-of-possession` @@ -1871,4 +1871,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/account/verify-proof-of-possession.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/account/verify-proof-of-possession.ts)_ +_See code: [src/commands/account/verify-proof-of-possession.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/account/verify-proof-of-possession.ts)_ diff --git a/docs/command-line-interface/bridge.md b/docs/command-line-interface/bridge.md index d1078e8494..6576597397 100644 --- a/docs/command-line-interface/bridge.md +++ b/docs/command-line-interface/bridge.md @@ -87,7 +87,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/bridge/deposit.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/bridge/deposit.ts)_ +_See code: [src/commands/bridge/deposit.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/bridge/deposit.ts)_ ## `celocli bridge:withdraw-finalize` @@ -161,7 +161,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/bridge/withdraw-finalize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/bridge/withdraw-finalize.ts)_ +_See code: [src/commands/bridge/withdraw-finalize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/bridge/withdraw-finalize.ts)_ ## `celocli bridge:withdraw-init` @@ -240,7 +240,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/bridge/withdraw-init.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/bridge/withdraw-init.ts)_ +_See code: [src/commands/bridge/withdraw-init.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/bridge/withdraw-init.ts)_ ## `celocli bridge:withdraw-prove` @@ -314,7 +314,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/bridge/withdraw-prove.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/bridge/withdraw-prove.ts)_ +_See code: [src/commands/bridge/withdraw-prove.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/bridge/withdraw-prove.ts)_ ## `celocli bridge:withdraw-status` @@ -385,4 +385,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/bridge/withdraw-status.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/bridge/withdraw-status.ts)_ +_See code: [src/commands/bridge/withdraw-status.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/bridge/withdraw-status.ts)_ diff --git a/docs/command-line-interface/config.md b/docs/command-line-interface/config.md index 1eb4420f16..32c8b631ea 100644 --- a/docs/command-line-interface/config.md +++ b/docs/command-line-interface/config.md @@ -18,7 +18,7 @@ DESCRIPTION Output network node configuration ``` -_See code: [src/commands/config/get.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/config/get.ts)_ ## `celocli config:set` @@ -75,4 +75,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/config/set.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/config/set.ts)_ +_See code: [src/commands/config/set.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/config/set.ts)_ diff --git a/docs/command-line-interface/election.md b/docs/command-line-interface/election.md index 9688f39d3c..bad133ffc0 100644 --- a/docs/command-line-interface/election.md +++ b/docs/command-line-interface/election.md @@ -81,7 +81,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/activate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/activate.ts)_ +_See code: [src/commands/election/activate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/activate.ts)_ ## `celocli election:current` @@ -165,7 +165,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/current.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/current.ts)_ +_See code: [src/commands/election/current.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/current.ts)_ ## `celocli election:list` @@ -209,7 +209,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/list.ts)_ +_See code: [src/commands/election/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/list.ts)_ ## `celocli election:revoke` @@ -274,7 +274,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/revoke.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/revoke.ts)_ +_See code: [src/commands/election/revoke.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/revoke.ts)_ ## `celocli election:run` @@ -314,7 +314,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/run.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/run.ts)_ +_See code: [src/commands/election/run.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/run.ts)_ ## `celocli election:show ARG1` @@ -352,7 +352,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/show.ts)_ +_See code: [src/commands/election/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/show.ts)_ ## `celocli election:vote` @@ -418,4 +418,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/election/vote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/election/vote.ts)_ +_See code: [src/commands/election/vote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/election/vote.ts)_ diff --git a/docs/command-line-interface/epochs.md b/docs/command-line-interface/epochs.md index a5815f7176..da0a80ae17 100644 --- a/docs/command-line-interface/epochs.md +++ b/docs/command-line-interface/epochs.md @@ -107,7 +107,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/finish.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/finish.ts)_ +_See code: [src/commands/epochs/finish.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/finish.ts)_ ## `celocli epochs:process-groups` @@ -166,7 +166,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/process-groups.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/process-groups.ts)_ +_See code: [src/commands/epochs/process-groups.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/process-groups.ts)_ ## `celocli epochs:send-validator-payment` @@ -232,7 +232,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/send-validator-payment.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/send-validator-payment.ts)_ +_See code: [src/commands/epochs/send-validator-payment.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/send-validator-payment.ts)_ ## `celocli epochs:start` @@ -291,7 +291,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/start.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/start.ts)_ +_See code: [src/commands/epochs/start.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/start.ts)_ ## `celocli epochs:status` @@ -332,7 +332,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/status.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/status.ts)_ +_See code: [src/commands/epochs/status.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/status.ts)_ ## `celocli epochs:switch` @@ -394,4 +394,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/epochs/switch.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/epochs/switch.ts)_ +_See code: [src/commands/epochs/switch.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/epochs/switch.ts)_ diff --git a/docs/command-line-interface/governance.md b/docs/command-line-interface/governance.md index b445f478ed..01b86f8aa8 100644 --- a/docs/command-line-interface/governance.md +++ b/docs/command-line-interface/governance.md @@ -118,7 +118,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/approve.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/approve.ts)_ +_See code: [src/commands/governance/approve.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/approve.ts)_ ## `celocli governance:approvehotfix` @@ -276,7 +276,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/build-proposal.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/build-proposal.ts)_ +_See code: [src/commands/governance/build-proposal.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/build-proposal.ts)_ ## `celocli governance:dequeue` @@ -335,7 +335,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/dequeue.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/dequeue.ts)_ +_See code: [src/commands/governance/dequeue.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/dequeue.ts)_ ## `celocli governance:execute` @@ -397,7 +397,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/execute.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/execute.ts)_ +_See code: [src/commands/governance/execute.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/execute.ts)_ ## `celocli governance:executehotfix` @@ -462,7 +462,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/executehotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/executehotfix.ts)_ +_See code: [src/commands/governance/executehotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/executehotfix.ts)_ ## `celocli governance:hashhotfix` @@ -527,7 +527,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/hashhotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/hashhotfix.ts)_ +_See code: [src/commands/governance/hashhotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/hashhotfix.ts)_ ## `celocli governance:list` @@ -609,7 +609,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/list.ts)_ +_See code: [src/commands/governance/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/list.ts)_ ## `celocli governance:preparehotfix` @@ -671,7 +671,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/preparehotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/preparehotfix.ts)_ +_See code: [src/commands/governance/preparehotfix.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/preparehotfix.ts)_ ## `celocli governance:propose` @@ -685,8 +685,9 @@ USAGE 0x1234567890123456789012345678901234567890] [--ledgerAddresses ] [--ledgerLiveMode ] [--globalHelp] [--for 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d [--useMultiSig | --useSafe]] [--safeAddress - 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d ] [--force | --simulate ] - [--noInfo] [--afterExecutingProposal | --afterExecutingID ] + 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d ] [--noSimulate | [--force | --simulate + ] | ] [--noInfo] [--afterExecutingProposal | --afterExecutingID + ] FLAGS -k, --privateKey= @@ -739,15 +740,20 @@ FLAGS --noInfo Skip printing the proposal info + --noSimulate + Disable the default local fork simulation and fall back to independent + per-transaction eth_call checks (which cannot see the effect of earlier transactions + in the proposal). + --safeAddress=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d Address of the safe. --simulate= RPC URL of a forked node (e.g. anvil) to simulate the proposal against. Each proposal transaction is actually sent (not eth_call) from the Governance contract - address, which the node must have unlocked (e.g. anvil --auto-impersonate). Replaces - the default eth_call simulation. Useful for proposals where the success of one tx - depends on a previous one succeeding. + address, which the node must have unlocked (e.g. anvil --auto-impersonate). + Overrides the default bundled-anvil fork simulation. Useful for proposals where the + success of one tx depends on a previous one succeeding. --useLedger Set it to use a ledger wallet @@ -777,7 +783,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/propose.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/propose.ts)_ +_See code: [src/commands/governance/propose.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/propose.ts)_ ## `celocli governance:revokeupvote` @@ -836,7 +842,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/revokeupvote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/revokeupvote.ts)_ +_See code: [src/commands/governance/revokeupvote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/revokeupvote.ts)_ ## `celocli governance:show` @@ -907,7 +913,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/show.ts)_ +_See code: [src/commands/governance/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/show.ts)_ ## `celocli governance:showaccount` @@ -1107,7 +1113,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/upvote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/upvote.ts)_ +_See code: [src/commands/governance/upvote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/upvote.ts)_ ## `celocli governance:view` @@ -1381,7 +1387,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/vote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/vote.ts)_ +_See code: [src/commands/governance/vote.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/vote.ts)_ ## `celocli governance:votePartially` @@ -1453,7 +1459,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/votePartially.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/votePartially.ts)_ +_See code: [src/commands/governance/votePartially.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/votePartially.ts)_ ## `celocli governance:withdraw` @@ -1526,4 +1532,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/governance/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/governance/withdraw.ts)_ +_See code: [src/commands/governance/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/governance/withdraw.ts)_ diff --git a/docs/command-line-interface/identity.md b/docs/command-line-interface/identity.md index f7984f8040..7f71272504 100644 --- a/docs/command-line-interface/identity.md +++ b/docs/command-line-interface/identity.md @@ -64,4 +64,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/identity/withdraw-attestation-rewards.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/identity/withdraw-attestation-rewards.ts)_ +_See code: [src/commands/identity/withdraw-attestation-rewards.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/identity/withdraw-attestation-rewards.ts)_ diff --git a/docs/command-line-interface/lockedcelo.md b/docs/command-line-interface/lockedcelo.md index 1a170185dc..dd85cc5760 100644 --- a/docs/command-line-interface/lockedcelo.md +++ b/docs/command-line-interface/lockedcelo.md @@ -80,7 +80,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/delegate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/delegate.ts)_ +_See code: [src/commands/lockedcelo/delegate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/delegate.ts)_ ## `celocli lockedcelo:delegate-info` @@ -142,7 +142,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/delegate-info.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/delegate-info.ts)_ +_See code: [src/commands/lockedcelo/delegate-info.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/delegate-info.ts)_ ## `celocli lockedcelo:lock` @@ -207,7 +207,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/lock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/lock.ts)_ +_See code: [src/commands/lockedcelo/lock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/lock.ts)_ ## `celocli lockedcelo:max-delegatees-count` @@ -265,7 +265,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/max-delegatees-count.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/max-delegatees-count.ts)_ +_See code: [src/commands/lockedcelo/max-delegatees-count.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/max-delegatees-count.ts)_ ## `celocli lockedcelo:revoke-delegate` @@ -334,7 +334,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/revoke-delegate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/revoke-delegate.ts)_ +_See code: [src/commands/lockedcelo/revoke-delegate.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/revoke-delegate.ts)_ ## `celocli lockedcelo:show ARG1` @@ -372,7 +372,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/show.ts)_ +_See code: [src/commands/lockedcelo/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/show.ts)_ ## `celocli lockedcelo:unlock` @@ -439,7 +439,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/unlock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/unlock.ts)_ +_See code: [src/commands/lockedcelo/unlock.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/unlock.ts)_ ## `celocli lockedcelo:update-delegated-amount` @@ -506,7 +506,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/update-delegated-amount.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/update-delegated-amount.ts)_ +_See code: [src/commands/lockedcelo/update-delegated-amount.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/update-delegated-amount.ts)_ ## `celocli lockedcelo:withdraw` @@ -569,4 +569,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/lockedcelo/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/lockedcelo/withdraw.ts)_ +_See code: [src/commands/lockedcelo/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/lockedcelo/withdraw.ts)_ diff --git a/docs/command-line-interface/multisig.md b/docs/command-line-interface/multisig.md index 258780f080..76d3829fef 100644 --- a/docs/command-line-interface/multisig.md +++ b/docs/command-line-interface/multisig.md @@ -72,7 +72,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/multisig/approve.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/multisig/approve.ts)_ +_See code: [src/commands/multisig/approve.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/multisig/approve.ts)_ ## `celocli multisig:propose ARG1` @@ -143,7 +143,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/multisig/propose.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/multisig/propose.ts)_ +_See code: [src/commands/multisig/propose.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/multisig/propose.ts)_ ## `celocli multisig:show ARG1` @@ -182,7 +182,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/multisig/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/multisig/show.ts)_ +_See code: [src/commands/multisig/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/multisig/show.ts)_ ## `celocli multisig:transfer ARG1` @@ -258,4 +258,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/multisig/transfer.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/multisig/transfer.ts)_ +_See code: [src/commands/multisig/transfer.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/multisig/transfer.ts)_ diff --git a/docs/command-line-interface/network.md b/docs/command-line-interface/network.md index a4945d8da9..5091298b80 100644 --- a/docs/command-line-interface/network.md +++ b/docs/command-line-interface/network.md @@ -94,7 +94,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/network/contracts.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/network/contracts.ts)_ +_See code: [src/commands/network/contracts.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/network/contracts.ts)_ ## `celocli network:info` @@ -123,7 +123,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/network/info.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/network/info.ts)_ +_See code: [src/commands/network/info.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/network/info.ts)_ ## `celocli network:parameters` @@ -153,7 +153,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/network/parameters.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/network/parameters.ts)_ +_See code: [src/commands/network/parameters.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/network/parameters.ts)_ ## `celocli network:rpc-urls` @@ -242,4 +242,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/network/whitelist.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/network/whitelist.ts)_ +_See code: [src/commands/network/whitelist.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/network/whitelist.ts)_ diff --git a/docs/command-line-interface/node.md b/docs/command-line-interface/node.md index 9436b0ae4e..4678c8f8e8 100644 --- a/docs/command-line-interface/node.md +++ b/docs/command-line-interface/node.md @@ -106,4 +106,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/node/synced.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/node/synced.ts)_ +_See code: [src/commands/node/synced.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/node/synced.ts)_ diff --git a/docs/command-line-interface/oracle.md b/docs/command-line-interface/oracle.md index 5e1c2dc412..6d2582630e 100644 --- a/docs/command-line-interface/oracle.md +++ b/docs/command-line-interface/oracle.md @@ -44,7 +44,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/oracle/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/oracle/list.ts)_ +_See code: [src/commands/oracle/list.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/oracle/list.ts)_ ## `celocli oracle:remove-expired-reports ARG1` @@ -110,7 +110,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/oracle/remove-expired-reports.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/oracle/remove-expired-reports.ts)_ +_See code: [src/commands/oracle/remove-expired-reports.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/oracle/remove-expired-reports.ts)_ ## `celocli oracle:report ARG1` @@ -179,7 +179,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/oracle/report.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/oracle/report.ts)_ +_See code: [src/commands/oracle/report.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/oracle/report.ts)_ ## `celocli oracle:reports ARG1` @@ -268,4 +268,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/oracle/reports.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/oracle/reports.ts)_ +_See code: [src/commands/oracle/reports.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/oracle/reports.ts)_ diff --git a/docs/command-line-interface/releasecelo.md b/docs/command-line-interface/releasecelo.md index dd521b64b1..62c9832b2a 100644 --- a/docs/command-line-interface/releasecelo.md +++ b/docs/command-line-interface/releasecelo.md @@ -94,7 +94,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/authorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/authorize.ts)_ +_See code: [src/commands/releasecelo/authorize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/authorize.ts)_ ## `celocli releasecelo:create-account` @@ -153,7 +153,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/create-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/create-account.ts)_ +_See code: [src/commands/releasecelo/create-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/create-account.ts)_ ## `celocli releasecelo:locked-celo` @@ -305,7 +305,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/locked-gold.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/locked-gold.ts)_ +_See code: [src/commands/releasecelo/locked-gold.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/locked-gold.ts)_ ## `celocli releasecelo:refund-and-finalize` @@ -365,7 +365,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/refund-and-finalize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/refund-and-finalize.ts)_ +_See code: [src/commands/releasecelo/refund-and-finalize.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/refund-and-finalize.ts)_ ## `celocli releasecelo:revoke` @@ -430,7 +430,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/revoke.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/revoke.ts)_ +_See code: [src/commands/releasecelo/revoke.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/revoke.ts)_ ## `celocli releasecelo:revoke-votes` @@ -505,7 +505,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/revoke-votes.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/revoke-votes.ts)_ +_See code: [src/commands/releasecelo/revoke-votes.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/revoke-votes.ts)_ ## `celocli releasecelo:set-account` @@ -576,7 +576,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-account.ts)_ +_See code: [src/commands/releasecelo/set-account.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-account.ts)_ ## `celocli releasecelo:set-account-wallet-address` @@ -642,7 +642,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-account-wallet-address.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-account-wallet-address.ts)_ +_See code: [src/commands/releasecelo/set-account-wallet-address.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-account-wallet-address.ts)_ ## `celocli releasecelo:set-beneficiary` @@ -714,7 +714,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-beneficiary.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-beneficiary.ts)_ +_See code: [src/commands/releasecelo/set-beneficiary.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-beneficiary.ts)_ ## `celocli releasecelo:set-can-expire` @@ -780,7 +780,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-can-expire.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-can-expire.ts)_ +_See code: [src/commands/releasecelo/set-can-expire.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-can-expire.ts)_ ## `celocli releasecelo:set-liquidity-provision` @@ -843,7 +843,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-liquidity-provision.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-liquidity-provision.ts)_ +_See code: [src/commands/releasecelo/set-liquidity-provision.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-liquidity-provision.ts)_ ## `celocli releasecelo:set-max-distribution` @@ -909,7 +909,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/set-max-distribution.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/set-max-distribution.ts)_ +_See code: [src/commands/releasecelo/set-max-distribution.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/set-max-distribution.ts)_ ## `celocli releasecelo:show` @@ -946,7 +946,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/show.ts)_ +_See code: [src/commands/releasecelo/show.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/show.ts)_ ## `celocli releasecelo:transfer-dollars` @@ -1013,7 +1013,7 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/transfer-dollars.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/transfer-dollars.ts)_ +_See code: [src/commands/releasecelo/transfer-dollars.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/transfer-dollars.ts)_ ## `celocli releasecelo:withdraw` @@ -1076,4 +1076,4 @@ FLAG DESCRIPTIONS mainnet, celo, forno => Celo Mainnet chain', ``` -_See code: [src/commands/releasecelo/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.0/packages/cli/src/commands/releasecelo/withdraw.ts)_ +_See code: [src/commands/releasecelo/withdraw.ts](https://github.com/celo-org/developer-tooling/tree/%40celo/celocli%409.0.1/packages/cli/src/commands/releasecelo/withdraw.ts)_ diff --git a/docs/command-line-interface/rewards.md b/docs/command-line-interface/rewards.md index 16dbb06567..b3e3eff2ff 100644 --- a/docs/command-line-interface/rewards.md +++ b/docs/command-line-interface/rewards.md @@ -14,9 +14,9 @@ USAGE $ celocli rewards:show [-n ] [--globalHelp] [--estimate] [--voter 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d] [--validator 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d] [--group - 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d] [--epochs ] [--columns | - -x] [--filter ] [--no-header | [--csv | --no-truncate]] [--output - csv|json|yaml | | ] [--sort ] + 0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d] [--slashing] [--epochs ] + [--columns | -x] [--filter ] [--no-header | [--csv | --no-truncate]] + [--output csv|json|yaml | | ] [--sort ] FLAGS -n, --node= URL of the node to run @@ -45,6 +45,8 @@ FLAGS --output=