Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix: nested multisig signatures using CLI #20438

Merged
merged 11 commits into from
Jun 14, 2024
Merged

Conversation

facundomedica
Copy link
Member

@facundomedica facundomedica commented May 22, 2024

Description

Closes: #20355 and #20382

This PR enables the CLI to sign nested multisig txs, by modifying how the signer check is done and adding a flag to disable signature verification. Also #20404 was included here.

It was tested with 4 common accounts (alice, bob, carol and dave) forming 3 multisigs: ms1 (alice, bob), ms2 (bob, carol) and ms3 (bob, dave, ms1, ms2). Then a tx from ms3 is created and signed by all the participants.

./build/simd keys add alice --keyring-backend test --home ./.testnets/node0/simd/
./build/simd keys add bob --keyring-backend test --home ./.testnets/node0/simd/
./build/simd keys add carol --keyring-backend test --home ./.testnets/node0/simd/
./build/simd keys add dave --keyring-backend test --home ./.testnets/node0/simd/

./build/simd keys add ms1 --multisig alice,bob --multisig-threshold 2 --home ./.testnets/node0/simd/ --keyring-backend test
./build/simd keys add ms2 --multisig bob,carol --multisig-threshold 2 --home ./.testnets/node0/simd/ --keyring-backend test
./build/simd keys add ms3 --multisig bob,dave,ms1,ms2 --multisig-threshold 4 --home ./.testnets/node0/simd/ --keyring-backend test

./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show alice --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show bob --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show carol --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show dave --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show ms1 --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show ms2 --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/
./build/simd tx bank send $(./build/simd keys show node0 --address  --keyring-backend=test --home ./.testnets/node0/simd/) $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/) 100stake --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/


./build/simd tx bank send $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/)  $(./build/simd keys show ms1 --address  --keyring-backend=test --home ./.testnets/node0/simd/)  3stake --fees 5stake --generate-only --chain-id $CHAINID --keyring-backend test > tx.json

./build/simd tx sign tx.json --home ./.testnets/node0/simd/ --multisig $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/) --chain-id $CHAINID --keyring-backend test  --from alice > sig-alice.json
./build/simd tx sign tx.json --home ./.testnets/node0/simd/ --multisig $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/) --chain-id $CHAINID --keyring-backend test  --from bob > sig-bob.json
./build/simd tx sign tx.json --home ./.testnets/node0/simd/ --multisig $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/) --chain-id $CHAINID --keyring-backend test  --from carol > sig-carol.json
./build/simd tx sign tx.json --home ./.testnets/node0/simd/ --multisig $(./build/simd keys show ms3 --address  --keyring-backend=test --home ./.testnets/node0/simd/) --chain-id $CHAINID --keyring-backend test  --from dave > sig-dave.json

./build/simd tx multisign tx.json ms1 sig-alice.json sig-bob.json --chain-id $CHAINID --home ./.testnets/node0/simd/  --keyring-backend test --signature-only --skip-signature-verification > sig-ms1.json 
./build/simd tx multisign tx.json ms2 sig-bob.json sig-carol.json --chain-id $CHAINID --home ./.testnets/node0/simd/  --keyring-backend test --signature-only --skip-signature-verification > sig-ms2.json 
./build/simd tx multisign tx.json ms3 sig-bob.json sig-dave.json sig-ms1.json sig-ms2.json --chain-id $CHAINID --home ./.testnets/node0/simd/  --keyring-backend test > tx-ms3.json

./build/simd tx broadcast tx-ms3.json --gas auto --fees 5stake --chain-id $CHAINID --keyring-backend test --home ./.testnets/node0/simd/ --from dave

Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

  • New Features

    • Introduced the --skip-signature-verification flag for multisig transactions, allowing users to skip signature verification.
    • Added support for nested multisig transactions, enabling multisig accounts to include other multisig accounts.
  • Bug Fixes

    • Improved the packPubKeys function to correctly unmarshal public keys.
  • Tests

    • Added a new test for nested multisig key outputs.
  • Documentation

    • Updated documentation to reflect new features related to nested multisig transactions and the --skip-signature-verification flag.

@facundomedica facundomedica requested a review from a team as a code owner May 22, 2024 09:39
Copy link
Contributor

coderabbitai bot commented May 22, 2024

Walkthrough

The recent updates primarily address the handling and signing of nested multisig accounts in the Cosmos SDK. Key improvements include adding functions for marshaling and unmarshaling LegacyAminoPubKey, introducing a flag to skip signature verification in CLI commands, and updating the signing logic to better support nested multisigs. These changes aim to resolve issues with signing transactions involving nested multisig accounts, enhancing flexibility and user experience.

Changes

File Path Change Summary
crypto/keys/multisig/multisig.go Added MarshalAmino and UnmarshalAmino functions to LegacyAminoPubKey; updated packPubKeys function to use UnmarshalAmino.
x/auth/client/cli/tx_multisign.go Introduced a new flag flagSkipSignatureVerification to skip signature verification in multisign command.
x/auth/client/cli/tx_sign.go Modified flag names, added flagSkipSignatureVerification, and introduced isMultisigSigner function.
x/auth/client/tx.go Removed logic for checking if an address is a signer in SignTxWithSignerAddress function.
client/keys/output_test.go Added TestBech32KeysOutputNestedMsig to test the output of nested multisig keys.
x/auth/README.md Updated documentation to include nested multisig transaction signing using the new flag.
x/tx/CHANGELOG.md Documented the addition of --skip-signature-verification flag in the unreleased section.

Assessment against linked issues

Objective Addressed Explanation
Enable CLI signing for nested multisigs (Issue #20355)
Allow skipping signature verification with a new flag
Fix errors related to intended signer mismatches and offline keys in nested multisig setup

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

This comment has been minimized.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review Details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits Files that changed from the base of the PR and between a1ae4c3 and 3d4e5ab.
Files selected for processing (4)
  • crypto/keys/multisig/multisig.go (1 hunks)
  • x/auth/client/cli/tx_multisign.go (3 hunks)
  • x/auth/client/cli/tx_sign.go (5 hunks)
  • x/auth/client/tx.go (1 hunks)
Additional Context Used
Path-based Instructions (4)
crypto/keys/multisig/multisig.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/auth/client/tx.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/auth/client/cli/tx_multisign.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/auth/client/cli/tx_sign.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (5)
crypto/keys/multisig/multisig.go (1)

151-154: Ensure that the Marshal method is defined and accessible within the context where MarshalAmino is used.

x/auth/client/cli/tx_multisign.go (2)

60-60: The addition of the flagSkipSignatureVerification flag is appropriate for enabling users to skip signature verification when necessary.


Line range hint 113-167: The modifications to handle the skipping of signature verification based on the flagSkipSignatureVerification are implemented correctly.

x/auth/client/cli/tx_sign.go (2)

278-304: The implementation of isMultisigSigner function is correct and effectively handles the checking of signers in nested multisig structures.


229-262: The modifications to support multisig signing, including error handling and signature verification, are implemented correctly.

Comment on lines 156 to 159
// UnmarshalAmino overrides amino binary marshaling.
func (m *LegacyAminoPubKey) UnmarshalAmino(bz []byte) error {
return m.Unmarshal(bz)
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tip

Codebase Verification

The Unmarshal method is not defined in the LegacyAminoPubKey struct, nor does it embed any other structs or interfaces that provide this method. This will cause the UnmarshalAmino method to fail at runtime.

  • LegacyAminoPubKey struct definition:
    • crypto/keys/multisig/keys.pb.go:31
    • api/cosmos/crypto/multisig/keys.pulsar.go:576

Please ensure that the Unmarshal method is implemented for the LegacyAminoPubKey struct.

Analysis chain

Ensure that the Unmarshal method is defined and accessible within the context where UnmarshalAmino is used.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify the existence of the `Unmarshal` method used in `UnmarshalAmino`.

# Test: Search for the `Unmarshal` method definition. Expect: At least one definition.
ast-grep --lang go --pattern $'func (m *LegacyAminoPubKey) Unmarshal(bz []byte) error { $$$ }'

Length of output: 95



Script:

#!/bin/bash
# Description: Verify the existence of the `Unmarshal` method used in `UnmarshalAmino`.

# Test 1: Search for any `Unmarshal` method definitions in the entire codebase.
ast-grep --lang go --pattern $'func ($_ $_) Unmarshal(bz []byte) error { $$$ }'

# Test 2: Inspect the `LegacyAminoPubKey` struct for any embedded structs or implemented interfaces.
ast-grep --lang go --pattern $'type LegacyAminoPubKey struct { $$$ }'

Length of output: 1733

Copy link
Contributor

@JulianToledano JulianToledano left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

crypto/keys/multisig/multisig.go Outdated Show resolved Hide resolved
@@ -109,6 +110,10 @@ func makeMultiSignCmd() func(cmd *cobra.Command, args []string) (err error) {
return err
}

// avoid signature verification if the sender of the tx is different than
// the multisig key (useful for nested multisigs).
skipSigVerify, _ := cmd.Flags().GetBool(flagSkipSignatureVerification)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should describe this flag somewhere in the docs.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done!

@github-actions github-actions bot added the C:Keys Keybase, KMS and HSMs label Jun 10, 2024
@@ -169,6 +169,9 @@ func packPubKeys(pubKeys []cryptotypes.PubKey) ([]*types.Any, error) {
return nil, err
}
anyPubKeys[i] = any

// sets the compat.aminoBz value
anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes())
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was the necessary fix to allow nested anys

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 3d4e5ab and 661eee7.

Files selected for processing (2)
  • client/keys/output_test.go (1 hunks)
  • crypto/keys/multisig/multisig.go (1 hunks)
Additional context used
Path-based instructions (2)
client/keys/output_test.go (2)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.


Pattern **/*_test.go: "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request"

crypto/keys/multisig/multisig.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

golangci-lint
crypto/keys/multisig/multisig.go

174-174: Error return value of (*github.com/cosmos/gogoproto/types/any.Any).UnmarshalAmino is not checked (errcheck)

GitHub Check: golangci-lint
crypto/keys/multisig/multisig.go

[failure] 174-174:
Error return value of (*github.com/cosmos/gogoproto/types/any.Any).UnmarshalAmino is not checked (errcheck)

Comment on lines +48 to +70
// TestBech32KeysOutputNestedMsig tests that the output of a nested multisig key is correct
func TestBech32KeysOutputNestedMsig(t *testing.T) {
sk := secp256k1.PrivKey{Key: []byte{154, 49, 3, 117, 55, 232, 249, 20, 205, 216, 102, 7, 136, 72, 177, 2, 131, 202, 234, 81, 31, 208, 46, 244, 179, 192, 167, 163, 142, 117, 246, 13}}
tmpKey := sk.PubKey()
nestedMultiSig := kmultisig.NewLegacyAminoPubKey(1, []types.PubKey{tmpKey})
multisigPk := kmultisig.NewLegacyAminoPubKey(2, []types.PubKey{tmpKey, nestedMultiSig})
k, err := keyring.NewMultiRecord("multisig", multisigPk)
require.NotNil(t, k)
require.NoError(t, err)

pubKey, err := k.GetPubKey()
require.NoError(t, err)

accAddr := sdk.AccAddress(pubKey.Address())
expectedOutput, err := NewKeyOutput(k.Name, k.GetType(), accAddr, multisigPk, addresscodec.NewBech32Codec("cosmos"))
require.NoError(t, err)

out, err := MkAccKeyOutput(k, addresscodec.NewBech32Codec("cosmos"))
require.NoError(t, err)

require.Equal(t, expectedOutput, out)
require.Equal(t, "{Name:multisig Type:multi Address:cosmos1nffp6v2j7wva4y4975exlrv8x5vh39axxt3swz PubKey:{\"@type\":\"/cosmos.crypto.multisig.LegacyAminoPubKey\",\"threshold\":2,\"public_keys\":[{\"@type\":\"/cosmos.crypto.secp256k1.PubKey\",\"key\":\"AurroA7jvfPd1AadmmOvWM2rJSwipXfRf8yD6pLbA2DJ\"},{\"@type\":\"/cosmos.crypto.multisig.LegacyAminoPubKey\",\"threshold\":1,\"public_keys\":[{\"@type\":\"/cosmos.crypto.secp256k1.PubKey\",\"key\":\"AurroA7jvfPd1AadmmOvWM2rJSwipXfRf8yD6pLbA2DJ\"}]}]} Mnemonic:}", fmt.Sprintf("%+v", out))
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test TestBech32KeysOutputNestedMsig appears comprehensive and correctly tests the output of a nested multisig key. However, consider adding more assertions to verify the structure of the nested multisig key in more detail, such as checking individual public keys within the nested structure.

@@ -169,6 +169,9 @@
return nil, err
}
anyPubKeys[i] = any

// sets the compat.aminoBz value
anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The error return value of UnmarshalAmino is not checked. It's important to handle potential errors to avoid runtime panics or unexpected behavior.

- anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes())
+ if err := anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes()); err != nil {
+     return nil, err
+ }
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes())
if err := anyPubKeys[i].UnmarshalAmino(pubKeys[i].Bytes()); err != nil {
return nil, err
}
Tools
golangci-lint

174-174: Error return value of (*github.com/cosmos/gogoproto/types/any.Any).UnmarshalAmino is not checked (errcheck)

GitHub Check: golangci-lint

[failure] 174-174:
Error return value of (*github.com/cosmos/gogoproto/types/any.Any).UnmarshalAmino is not checked (errcheck)

@@ -57,6 +57,7 @@ The SIGN_MODE_DIRECT sign mode is not supported.'
Args: cobra.MinimumNArgs(3),
}

cmd.Flags().Bool(flagSkipSignatureVerification, false, "Skip signature verification")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we add this to some docs somewhere? easy to get lost in the immense amount of code

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added docs and changelog 💪

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 661eee7 and 3cab6e8.

Files selected for processing (2)
  • x/auth/README.md (1 hunks)
  • x/tx/CHANGELOG.md (1 hunks)
Additional context used
Path-based instructions (2)
x/tx/CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

x/auth/README.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

LanguageTool
x/tx/CHANGELOG.md

[grammar] ~157-~157: When ‘32-bit’ is used as a modifier, it is usually spelled with a hyphen. (BIT_HYPHEN)
Context: ...mos-sdk/pull/15849) Fix int64 usage for 32 bit platforms. ## v0.5.1 ### Features * ...

x/auth/README.md

[uncategorized] ~40-~40: Possible missing comma found. (AI_HYDRA_LEO_MISSING_COMMA)
Context: ...s to perform actions on behalf of other accounts and enables a granter to grant authoriz...


[style] ~92-~92: Consider a shorter alternative to avoid wordiness. (IN_ORDER_TO_PREMIUM)
Context: ...nt struct conforming to the interface - in order to write the account to the store, the acc...


[style] ~148-~148: The phrase ‘have the ability to’ might be wordy. Consider using “can”. (HAS_THE_ABILITY_TO)
Context: ...verTx`, as CometBFT proposers presently have the ability to include in their proposed block transac...


[uncategorized] ~154-~154: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...lowing order: * SetUpContextDecorator: Sets the GasMeter in the Context an...


[uncategorized] ~156-~156: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...ed. * RejectExtensionOptionsDecorator: Rejects all extension options which can...


[uncategorized] ~158-~158: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...f transactions. * MempoolFeeDecorator: Checks if the tx fee is above local m...


[uncategorized] ~160-~160: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...g CheckTx. * ValidateBasicDecorator: Calls tx.ValidateBasic and returns an...


[uncategorized] ~162-~162: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...nil error. * TxTimeoutHeightDecorator: Check for a tx height timeout. * `Va...


[uncategorized] ~164-~164: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...ight timeout. * ValidateMemoDecorator: Validates tx memo with application pa...


[uncategorized] ~166-~166: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...il error. * ConsumeGasTxSizeDecorator: Consumes gas proportional to the tx s...


[uncategorized] ~168-~168: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...tion parameters. * DeductFeeDecorator: Deducts the FeeAmount from first sign...


[uncategorized] ~170-~170: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...granter account. * SetPubKeyDecorator: Sets the pubkey from a tx's signers t...


[uncategorized] ~172-~172: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ... context. * ValidateSigCountDecorator: Validates the number of signatures in `...


[uncategorized] ~174-~174: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...-parameters. * SigGasConsumeDecorator: Consumes parameter-defined amount of ga...


[uncategorized] ~176-~176: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...ecorator. * SigVerificationDecorator`: Verifies all signatures are valid. This...


[uncategorized] ~178-~178: Loose punctuation mark. (UNLIKELY_OPENING_PUNCTUATION)
Context: ...orator. * IncrementSequenceDecorator`: Increments the account sequence for eac...


[style] ~186-~186: Although a hyphen is possible, it is not necessary in a compound modifier in which the first word is an adverb that ends in ‘ly’. (HYPHENATED_LY_ADVERB_ADJECTIVE)
Context: ... ### Account Keeper Presently only one fully-permissioned account keeper is exposed, which has th...


[uncategorized] ~252-~252: Did you mean “its” (the possessive pronoun)? (ITS_PREMIUM)
Context: ... allow users to query for an account by it's address. ```bash simd query auth accou...


[style] ~403-~403: Consider using a more formal alternative. (MORE_INFO)
Context: ... Use directly the --help flag to get more information about the tx command. ```bash simd t...


[uncategorized] ~436-~436: Possible missing preposition found. (AI_HYDRA_LEO_MISSING_OF)
Context: ...igned.json ``` The result is multiples signed transactions. For combining the signed ...


[grammar] ~436-~436: Please verify that the plural noun “transactions” is in agreement with the quantifier “one”. Did you mean to use the singular form? (ONE_PLURAL)
Context: ... combining the signed transactions into one transactions, use the --append flag. More informa...


[uncategorized] ~507-~507: Did you mean “its” (the possessive pronoun)? (ITS_PREMIUM)
Context: ... allow users to query for an account by it's address. ```bash cosmos.auth.v1beta1.Q...


[uncategorized] ~690-~690: Did you mean “its” (the possessive pronoun)? (ITS_PREMIUM)
Context: ... allow users to query for an account by it's address. ```bash /cosmos/auth/v1beta1/...

Markdownlint
x/tx/CHANGELOG.md

142-142: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


143-143: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


150-150: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


151-151: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


152-152: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


153-153: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation

x/auth/README.md

21-21: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


23-23: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


26-26: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


29-29: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


30-30: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


31-31: Expected: 2; Actual: 4 (MD007, ul-indent)
Unordered list indentation


432-432: Expected: 0 or 2; Actual: 1 (MD009, no-trailing-spaces)
Trailing spaces


71-71: Column: 20 (MD010, no-hard-tabs)
Hard tabs


103-103: Column: 1 (MD010, no-hard-tabs)
Hard tabs


105-105: Column: 1 (MD010, no-hard-tabs)
Hard tabs


106-106: Column: 1 (MD010, no-hard-tabs)
Hard tabs


108-108: Column: 1 (MD010, no-hard-tabs)
Hard tabs


109-109: Column: 1 (MD010, no-hard-tabs)
Hard tabs


111-111: Column: 1 (MD010, no-hard-tabs)
Hard tabs


112-112: Column: 1 (MD010, no-hard-tabs)
Hard tabs


114-114: Column: 1 (MD010, no-hard-tabs)
Hard tabs


115-115: Column: 1 (MD010, no-hard-tabs)
Hard tabs


117-117: Column: 1 (MD010, no-hard-tabs)
Hard tabs


118-118: Column: 1 (MD010, no-hard-tabs)
Hard tabs


192-192: Column: 1 (MD010, no-hard-tabs)
Hard tabs


193-193: Column: 1 (MD010, no-hard-tabs)
Hard tabs


195-195: Column: 1 (MD010, no-hard-tabs)
Hard tabs


196-196: Column: 1 (MD010, no-hard-tabs)
Hard tabs


198-198: Column: 1 (MD010, no-hard-tabs)
Hard tabs


199-199: Column: 1 (MD010, no-hard-tabs)
Hard tabs


201-201: Column: 1 (MD010, no-hard-tabs)
Hard tabs


202-202: Column: 1 (MD010, no-hard-tabs)
Hard tabs


204-204: Column: 1 (MD010, no-hard-tabs)
Hard tabs


205-205: Column: 1 (MD010, no-hard-tabs)
Hard tabs


207-207: Column: 1 (MD010, no-hard-tabs)
Hard tabs


208-208: Column: 1 (MD010, no-hard-tabs)
Hard tabs


210-210: Column: 1 (MD010, no-hard-tabs)
Hard tabs


211-211: Column: 1 (MD010, no-hard-tabs)
Hard tabs


213-213: Column: 1 (MD010, no-hard-tabs)
Hard tabs


214-214: Column: 1 (MD010, no-hard-tabs)
Hard tabs


216-216: Column: 1 (MD010, no-hard-tabs)
Hard tabs


217-217: Column: 1 (MD010, no-hard-tabs)
Hard tabs


219-219: Column: 1 (MD010, no-hard-tabs)
Hard tabs


220-220: Column: 1 (MD010, no-hard-tabs)
Hard tabs


500-500: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines

Additional comments not posted (2)
x/tx/CHANGELOG.md (1)

38-38: The changelog entry is clear and concise, correctly summarizing the addition of the --skip-signature-verification flag.

x/auth/README.md (1)

450-465: The documentation clearly explains the process and necessity of using the --skip-signature-verification flag for nested multisig transactions, including detailed CLI command examples.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 3cab6e8 and fb8506f.

Files selected for processing (1)
  • crypto/keys/multisig/multisig.go (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • crypto/keys/multisig/multisig.go

@facundomedica facundomedica added this pull request to the merge queue Jun 14, 2024
Merged via the queue into main with commit b9ca318 Jun 14, 2024
67 checks passed
@facundomedica facundomedica deleted the facu/fix-nested-ms-main branch June 14, 2024 17:01
@@ -33,6 +33,10 @@ Since v0.13.0, x/tx follows Cosmos SDK semver: https://github.com/cosmos/cosmos-

## [Unreleased]

### Improvements
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changelog is misplaced, this is a x/auth thing

@julienrbrt
Copy link
Member

@Mergifyio backport release/v0.50.x

Copy link
Contributor

mergify bot commented Jun 17, 2024

backport release/v0.50.x

✅ Backports have been created

mergify bot pushed a commit that referenced this pull request Jun 17, 2024
(cherry picked from commit b9ca318)

# Conflicts:
#	x/auth/client/tx.go
#	x/tx/CHANGELOG.md
alpe added a commit that referenced this pull request Jun 17, 2024
* main:
  feat(tx): port simappv2 changes (#20648)
  build(deps): Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#20682)
  chore(proto): fix comments (#20679)
  (serverv2/cometbft) Commands support both json and yaml output (#20670)
  fix(x/staking,x/auth):  regenerate mock to fix test (#20684)
  docs: ADR 074: Msg v2 (#20618)
  fix: nested multisig signatures using CLI (#20438)
  chore: fix spelling errors (#20674)
  fix: align Dockerfile for build-push-action (#20672)
  fix: avoid build fail when make localnet-build-env (#20671)
  build(deps): Bump bufbuild/buf-setup-action from 1.32.2 to 1.33.0 (#20669)
  chore: make function comment match function names (#20666)
  chore(consensus): add cometInfo to consensus  (#20615)
  chore: fix typos (#20662)
  fix: Properly parse json in the wait-tx command. (#20631)
  fix(sims): check before sending RotateConsPubKey (#20659)
  test(types/address): add unit tests for the file types/address.go  (#20237)
julienrbrt pushed a commit that referenced this pull request Jun 19, 2024
Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: Facundo <facundomedica@gmail.com>
Reecepbcups pushed a commit to rollchains/cosmos-sdk that referenced this pull request Jul 19, 2024
* build(deps): Bump github.com/cosmos/gogoproto from 1.4.12 to 1.5.0 (cosmos#20567)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>

* refactor(x/authz,x/feegrant): provide updated keeper in depinject (cosmos#20590)

* docs: Update high level overview and introduction (backport cosmos#20535) (cosmos#20627)

Co-authored-by: samricotta <37125168+samricotta@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>

* fix: Properly parse json in the wait-tx command. (backport cosmos#20631) (cosmos#20660)

Co-authored-by: Daniel Wedul <github@wedul.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>

* docs: remove Ineffective code block (backport cosmos#20703) (cosmos#20711)

* feat(client): Add flag & reading mnemonic from file (backport cosmos#20690) (cosmos#20712)

Co-authored-by: Hieu Vu <72878483+hieuvubk@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>

* fix: nested multisig signatures using CLI (backport cosmos#20438) (cosmos#20692)

Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: Facundo <facundomedica@gmail.com>

* feat(client/v2): get keyring from context (backport cosmos#19646) (cosmos#20727)

Co-authored-by: Julien Robert <julien@rbrt.fr>

* docs(x/group): orm codespace comment (backport cosmos#20749) (cosmos#20751)

* feat: parse home flag earlier (backport cosmos#20771) (cosmos#20777)

Co-authored-by: Julien Robert <julien@rbrt.fr>

* build(deps): Bump github.com/cometbft/cometbft from 0.38.7 to 0.38.8 (cosmos#20805)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>

* build(deps): Bump github.com/cometbft/cometbft from 0.38.8 to 0.38.9 (cosmos#20836)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>

* fix(simulation): fix the problem of `validator set is empty after InitGenesis` in simulation test (backport cosmos#18196) (cosmos#20897)

Co-authored-by: Chenqun Lu <luchenqun@qq.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>

* fix(simulation): Fix all problems `make test-sim-custom-genesis-fast` for simulation test. (backport cosmos#17911) (cosmos#20909)

Co-authored-by: Chenqun Lu <luchenqun@qq.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>

* chore: prepare v0.50.8 (cosmos#20910)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: samricotta <37125168+samricotta@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
Co-authored-by: Daniel Wedul <github@wedul.com>
Co-authored-by: Hieu Vu <72878483+hieuvubk@users.noreply.github.com>
Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
Co-authored-by: Facundo <facundomedica@gmail.com>
Co-authored-by: Chenqun Lu <luchenqun@qq.com>
facundomedica added a commit that referenced this pull request Jul 22, 2024
facundomedica added a commit that referenced this pull request Jul 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: CLI Signing for Nested Multisigs
6 participants