Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

warden-protocol/wardenprotocol

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Refactor to eliminate duplicate code in method implementations** The methods `CheckActionMethod`, `NewTemplateMethod`, `RevokeActionMethod`, `UpdateTem...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add input validation for Address and Status** In the `newActionsByAddressQuery` function, consider adding validation for `input.Address` and `input.Status` before co...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 2** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (7)</summary><blockquote> <details> <summary>precompiles/common/pagination.go (1)</summary><blockquo...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 2** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (7)</summary><blockquote> <details> <summary>precompiles/common/pagination.go (1)</summary><blockquo...

View on GitHub

backsapc pushed 3 commits to feature/precompile-x/822-act warden-protocol/wardenprotocol
  • Fixed rabbit comments e124a5e
  • Another batch of rabbit comments df0535c
  • Merge branch 'feature/precompile-x/822-act' of github.com:warden-protocol/wardenprotocol into feature/precompile-x/82... 4634a06

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for `res.Space` to prevent potential nil pointer dereference.** In `FromResponse`, `res.Space` could be nil, leading to a panic when passed to `mapSpac...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for `res.SignRequest` to prevent potential nil pointer dereference.** In `FromResponse`, `res.SignRequest` could be nil, which would cause a panic when...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Handle potential nil pointers when processing responses** Ensure that response objects are checked for `nil` before processing to prevent potential `nil` pointer der...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Reuse `queryServer` instance to optimize performance** The `queryServer` is instantiated in each method: ```go queryServer := wardenkeeper.NewQuerySer...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Refactor to reduce code duplication across query methods** The query methods in this file share a similar structure: - Initializing the `queryServer` ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Correct the request type in the method comment** The comment for `SignRequestByIdMethod` mentions `QuerySignRequestByIdResponse` instead of `QuerySignRequestByIdRequ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Correct the request type in the method comment** The comment for `KeysBySpaceIdMethod` incorrectly mentions `QueryKeyByIdRequest` instead of `QueryKeysBySpaceIdReque...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 15** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (12)</summary><blockquote> <details> <summary>precompiles/act/query.go (2)</summary><blockquote> `...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 15** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (12)</summary><blockquote> <details> <summary>precompiles/act/query.go (2)</summary><blockquote> `...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Correct the Inaccurate Function Comment** The comment for the `FulfilSignRequestMethod` function incorrectly refers to `MsgFulfilKeyRequest` instead of `MsgFulfilSig...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Refactor Repeated Code into Helper Functions** The methods `AddKeychainAdminMethod`, `AddKeychainWriterMethod`, `FulfilKeyRequestMethod`, `FulfilSignRe...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure safe type assertions to prevent panics** The function `newMsgVoteForAction` uses unchecked type assertions on `args[0]` and `args[1]`, which can lead to a pan...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure safe type assertions to prevent panics** The function `newMsgCheckAction` uses unchecked type assertions on `args[0]`, which may cause a panic if the argument...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure safe type assertions to prevent panics** The function `newMsgUpdateTemplate` uses unchecked type assertions on `args[0]`, `args[1]`, and `args[2]`, which may ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure safe type assertions to prevent panics** The function `newMsgRevokeAction` uses an unchecked type assertion on `args[0]`, which can cause a panic if the argum...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure safe type assertions to prevent panics** The function `newMsgNewTemplate` uses unchecked type assertions on `args[0]` and `args[1]`, which may cause a panic i...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Avoid using generic import aliases like 'types'** Using generic aliases like `types` can lead to confusion. As per the Uber Go Style Guide, it's recomm...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Fix naming conventions for struct fields to match Go standards** In `newKeyRequestInput`, field `KeybaseId` is missing, and initialisms like `Id` should be capitaliz...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Undefined type 'KeychainFees'** In `updateKeyChainInput`, the `KeychainFees` field is of type `KeychainFees`, but this type is not defined or imported. It should lik...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Handle type assertions to prevent panics** In `newMsgAddKeychainAdmin`, type assertions on `args[0]` and `args[1]` are performed without checks, which may cause a pa...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Fix naming conventions for struct fields to match Go standards** In `newKeyChainInput`, field names `Url` and `KeybaseId` should be `URL` and `KeybaseID` respectivel...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Error handling when unpacking arguments** In `newMsgNewKeyRequest`, if `method.Inputs.Copy(&input, args)` returns an error, the function should handle it appropriate...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Use `ID` instead of `Id` in identifiers** According to Go naming conventions, abbreviations like "ID" should be capitalized consistently. Consider rena...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add validation for `input.Address` and `input.Status`** In the function `newActionsByAddressQuery`, consider adding validation for `input.Address` and `input.Status`...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Consider using pointer receivers for methods on `Precompile`** The methods currently have a value receiver `(p Precompile)`. If the `Precompile` struct...

View on GitHub

Load more