-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ba338a1
Showing
2,493 changed files
with
610,670 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/bash | ||
|
||
set -ue | ||
|
||
# Expect the following envvars to be set: | ||
# - APP | ||
# - VERSION | ||
# - COMMIT | ||
# - TARGET_OS | ||
# - LEDGER_ENABLED | ||
# - DEBUG | ||
|
||
# Source builder's functions library | ||
. /usr/local/share/tendermint/buildlib.sh | ||
|
||
# These variables are now available | ||
# - BASEDIR | ||
# - OUTDIR | ||
|
||
# Build for each os-architecture pair | ||
for platform in ${TARGET_PLATFORMS} ; do | ||
# This function sets GOOS, GOARCH, and OS_FILE_EXT environment variables | ||
# according to the build target platform. OS_FILE_EXT is empty in all | ||
# cases except when the target platform is 'windows'. | ||
setup_build_env_for_platform "${platform}" | ||
|
||
make clean | ||
echo Building for $(go env GOOS)/$(go env GOARCH) >&2 | ||
GOROOT_FINAL="$(go env GOROOT)" \ | ||
make build \ | ||
LDFLAGS=-buildid=${VERSION} \ | ||
VERSION=${VERSION} \ | ||
COMMIT=${COMMIT} \ | ||
LEDGER_ENABLED=${LEDGER_ENABLED} | ||
mv ./build/${APP}${OS_FILE_EXT} ${OUTDIR}/${APP}-${VERSION}-$(go env GOOS)-$(go env GOARCH)${OS_FILE_EXT} | ||
|
||
# This function restore the build environment variables to their | ||
# original state. | ||
restore_build_env | ||
done | ||
|
||
# Generate and display build report. | ||
generate_build_report | ||
cat ${OUTDIR}/build_report |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
--- | ||
Language: Proto | ||
# BasedOnStyle: LLVM | ||
AccessModifierOffset: -2 | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: true | ||
AlignEscapedNewlines: Right | ||
AlignOperands: true | ||
AlignTrailingComments: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: true | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: false | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: false | ||
AfterNamespace: false | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
AfterExternBlock: false | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Attach | ||
BreakBeforeInheritanceComma: false | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: false | ||
BreakConstructorInitializers: BeforeColon | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: true | ||
ColumnLimit: 120 | ||
CommentPragmas: '^ IWYU pragma:' | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: false | ||
ConstructorInitializerIndentWidth: 4 | ||
ContinuationIndentWidth: 4 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
ExperimentalAutoDetectBinPacking: false | ||
FixNamespaceComments: true | ||
ForEachMacros: | ||
- foreach | ||
- Q_FOREACH | ||
- BOOST_FOREACH | ||
IncludeBlocks: Preserve | ||
IncludeCategories: | ||
- Regex: '^"(llvm|llvm-c|clang|clang-c)/' | ||
Priority: 2 | ||
- Regex: '^(<|"(gtest|gmock|isl|json)/)' | ||
Priority: 3 | ||
- Regex: '.*' | ||
Priority: 1 | ||
IncludeIsMainRegex: '(Test)?$' | ||
IndentCaseLabels: false | ||
IndentPPDirectives: None | ||
IndentWidth: 2 | ||
IndentWrappedFunctionNames: false | ||
JavaScriptQuotes: Leave | ||
JavaScriptWrapImports: true | ||
KeepEmptyLinesAtTheStartOfBlocks: true | ||
MacroBlockBegin: '' | ||
MacroBlockEnd: '' | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
ObjCBlockIndentWidth: 2 | ||
ObjCSpaceAfterProperty: false | ||
ObjCSpaceBeforeProtocolList: true | ||
PenaltyBreakAssignment: 2 | ||
PenaltyBreakBeforeFirstCallParameter: 19 | ||
PenaltyBreakComment: 300 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyBreakString: 1000 | ||
PenaltyExcessCharacter: 1000000 | ||
PenaltyReturnTypeOnItsOwnLine: 60 | ||
PointerAlignment: Right | ||
RawStringFormats: | ||
- Delimiters: | ||
- pb | ||
Language: TextProto | ||
BasedOnStyle: google | ||
ReflowComments: true | ||
SortIncludes: true | ||
SortUsingDeclarations: true | ||
SpaceAfterCStyleCast: false | ||
SpaceAfterTemplateKeyword: true | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Cpp11 | ||
TabWidth: 8 | ||
UseTab: Never | ||
... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# | ||
# This codecov.yml is the default configuration for | ||
# all repositories on Codecov. You may adjust the settings | ||
# below in your own codecov.yml in your repository. | ||
# | ||
coverage: | ||
precision: 2 | ||
round: down | ||
range: 70...100 | ||
|
||
status: | ||
# Learn more at https://docs.codecov.io/docs/commit-status | ||
project: | ||
default: | ||
threshold: 1% # allow this much decrease on project | ||
app: | ||
target: 70% | ||
flags: | ||
- app | ||
modules: | ||
target: 70% | ||
flags: | ||
- modules | ||
client: | ||
flags: | ||
- client | ||
changes: false | ||
|
||
comment: | ||
layout: "reach, diff, files" | ||
behavior: default # update if exists else create new | ||
require_changes: true | ||
|
||
flags: | ||
app: | ||
paths: | ||
- "app/" | ||
- "baseapp/" | ||
modules: | ||
paths: | ||
- "x/" | ||
- "!x/**/client/" # ignore client package | ||
client: | ||
paths: | ||
- "client/" | ||
- "x/**/client/" | ||
|
||
ignore: | ||
- "docs" | ||
- "*.md" | ||
- "*.rst" | ||
- "**/*.pb.go" | ||
- "types/*.pb.go" | ||
- "tests/*" | ||
- "tests/**/*" | ||
- "x/**/*.pb.go" | ||
- "x/**/test_common.go" | ||
- "scripts/" | ||
- "contrib" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version = 1 | ||
|
||
test_patterns = [ | ||
"tests/**", | ||
"**_test.go" | ||
] | ||
|
||
exclude_patterns = [ | ||
"third_party/proto/**", | ||
"testutil/**", | ||
"proto/cosmos/**", | ||
"contrib/**" | ||
] | ||
|
||
[[analyzers]] | ||
name = "go" | ||
enabled = true | ||
|
||
[analyzers.meta] | ||
import_paths = ["github.com/cosmos/cosmos-sdk"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Dockerfile | ||
Vagrantfile | ||
|
||
build/ | ||
coverage.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
client/docs/swagger-ui/* linguist-vendored |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# CODEOWNERS: https://help.github.com/articles/about-codeowners/ | ||
|
||
# NOTE: Order is important; the last matching pattern takes the | ||
# most precedence. | ||
|
||
# Primary repo maintainers | ||
* @cosmos/sdk-core-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us squash bugs! | ||
|
||
--- | ||
|
||
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ | ||
v ✰ Thanks for opening an issue! ✰ | ||
v Before smashing the submit button please review the template. | ||
v Please also ensure that this is not a duplicate issue :) | ||
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> | ||
|
||
<!-- | ||
IMPORTANT: Prior to opening a bug report, check if it affects one of the core modules | ||
and if its elegible for a bug bounty on `SECURITY.md`. Bugs that are not submitted | ||
through the appropriate channels won't receive any bounty. | ||
--> | ||
|
||
## Summary of Bug | ||
|
||
<!-- Concisely describe the issue --> | ||
|
||
## Version | ||
|
||
<!-- git commit hash or release version --> | ||
|
||
## Steps to Reproduce | ||
|
||
<!-- What commands in order should someone run to reproduce your problem? --> | ||
|
||
____ | ||
|
||
## For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: Feature Request | ||
about: Create a proposal to request a feature | ||
|
||
--- | ||
|
||
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ | ||
v ✰ Thanks for opening an issue! ✰ | ||
v Before smashing the submit button please review the template. | ||
v Word of caution: poorly thought-out proposals may be rejected | ||
v without deliberation | ||
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> | ||
|
||
## Summary | ||
|
||
<!-- Short, concise description of the proposed feature --> | ||
|
||
## Problem Definition | ||
|
||
<!-- Why do we need this feature? | ||
What problems may be addressed by introducing this feature? | ||
What benefits does the SDK stand to gain by including this feature? | ||
Are there any disadvantages of including this feature? --> | ||
|
||
## Proposal | ||
|
||
<!-- Detailed description of requirements of implementation --> | ||
|
||
____ | ||
|
||
#### For Admin Use | ||
|
||
- [ ] Not duplicate issue | ||
- [ ] Appropriate labels applied | ||
- [ ] Appropriate contributors tagged | ||
- [ ] Contributor assigned/self-assigned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Module Readiness Checklist | ||
about: Pre-flight checklist that modules must pass in order to be included in a release of the Cosmos SDK | ||
labels: 'module-readiness-checklist' | ||
--- | ||
|
||
## x/{MODULE_NAME} Module Readiness Checklist | ||
|
||
This checklist is to be used for tracking the final internal audit of new Cosmos SDK modules prior to inclusion in a published release. | ||
|
||
### Release Candidate Checklist | ||
|
||
The following checklist should be gone through once the module has been fully implemented. This audit should be performed directly on `main`, or preferably on a `alpha` or `beta` release tag that includes the module. | ||
|
||
The module **should not** be included in any Release Candidate tag until it has passed this checklist. | ||
|
||
- [ ] API audit (at least 1 person) (@assignee) | ||
- [ ] Are Msg and Query methods and types well-named and organized? | ||
- [ ] Is everything well documented (inline godoc as well as [`/spec/` folder](https://github.com/cosmos/cosmos-sdk/blob/main/docs/spec/SPEC-SPEC.md) in module directory) | ||
- [ ] State machine audit (at least 2 people) (@assignee1, @assignee2) | ||
- [ ] Read through MsgServer code and verify correctness upon visual inspection | ||
- [ ] Ensure all state machine code which could be confusing is properly commented | ||
- [ ] Make sure state machine logic matches Msg method documentation | ||
- [ ] Ensure that all state machine edge cases are covered with tests and that test coverage is sufficient (at least 90% coverage on module code) | ||
- [ ] Assess potential threats for each method including spam attacks and ensure that threats have been addressed sufficiently. This should be done by writing up threat assessment for each method | ||
- [ ] Assess potential risks of any new third party dependencies and decide whether a dependency audit is needed | ||
- [ ] Completeness audit, fully implemented with tests (at least 1 person) (@assignee) | ||
- [ ] Genesis import and export of all state | ||
- [ ] Query services | ||
- [ ] CLI methods | ||
- [ ] All necessary migration scripts are present (if this is an upgrade of existing module) | ||
|
||
### Published Release Checklist | ||
|
||
After the above checks have been audited and the module is included in a tagged Release Candidate, the following additional checklist should be undertaken for live testing, and potentially a 3rd party audit (if deemed necessary): | ||
|
||
- [ ] Testnet / devnet testing (2-3 people) (@assignee1, @assignee2, @assignee3) | ||
- [ ] All Msg methods have been tested especially in light of any potential threats identified | ||
- [ ] Genesis import and export has been tested | ||
- [ ] Nice to have (and needed in some cases if threats could be high): Official 3rd party audit |
Oops, something went wrong.