-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from airchains-network/varanasi-test
feat: Integrate Wasm module into Junction chain by migrating from Deepinject to traditional app wiring
- Loading branch information
Showing
519 changed files
with
35,909 additions
and
208,878 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,56 @@ | ||
# | ||
# 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/" | ||
modules: | ||
paths: | ||
- "x/" | ||
- "!x/**/client/" # ignore client package | ||
client: | ||
paths: | ||
- "x/**/client/" | ||
|
||
ignore: | ||
- "cmd/" | ||
- "docs/" | ||
- "docker/" | ||
- "scripts/" | ||
- "*.md" | ||
- "*.rst" | ||
- "x/**/*.pb.go" | ||
- "x/**/*.pb.gw.go" | ||
- "x/**/test_common.go" | ||
- "x/**/testdata/" |
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,2 @@ | ||
# Folders we don't want to copy to Docker daemon in `docker build . -t junction/junctiond:latest` | ||
build/ |
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,16 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{Makefile,*.go}] | ||
indent_style = tab | ||
indent_size = 4 |
Empty file.
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 |
---|---|---|
@@ -1,12 +1,48 @@ | ||
vue/node_modules | ||
vue/dist | ||
release/ | ||
.idea/ | ||
.vscode/ | ||
# OS | ||
.DS_Store | ||
*.dot | ||
*.swp | ||
*.swo | ||
*.swl | ||
*.swm | ||
*.swn | ||
.vscode | ||
.idea | ||
|
||
# Build | ||
vendor | ||
build | ||
tools/bin/* | ||
examples/build/* | ||
docs/_build | ||
docs/client | ||
docs/tutorial | ||
dist | ||
tools-stamp | ||
docs/node_modules | ||
|
||
# Data - ideally these don't exist | ||
baseapp/data/* | ||
client/lcd/keys/* | ||
mytestnet | ||
|
||
# Testing | ||
coverage.txt | ||
profile.out | ||
|
||
# Vagrant | ||
.vagrant/ | ||
*.box | ||
*.log | ||
*.ign | ||
/.trunk | ||
/.idea | ||
build | ||
vagrant | ||
|
||
# IDE | ||
.idea/ | ||
*.iml | ||
|
||
# Graphviz | ||
dependency-graph.png | ||
|
||
# Latex | ||
*.aux | ||
*.out | ||
*.synctex.gz |
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,148 @@ | ||
run: | ||
tests: true | ||
timeout: 15m | ||
sort-results: true | ||
allow-parallel-runners: true | ||
exclude-dir: testutil/testdata | ||
skip-files: | ||
- server/grpc/gogoreflection/fix_registration.go | ||
- ".*\\.pb\\.go$" | ||
- ".*\\.pb\\.gw\\.\\.go$" | ||
- ".*\\.pulsar\\.go$" | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- errcheck | ||
- dogsled | ||
- exportloopref | ||
- goconst | ||
- gocritic | ||
- gci | ||
- gofumpt | ||
- gosec | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- misspell | ||
- nakedret | ||
- nolintlint | ||
- staticcheck | ||
- revive | ||
- stylecheck | ||
- typecheck | ||
# - thelper # too many positives with table tests that have custom setup(*testing.T) | ||
- unconvert | ||
- unused | ||
|
||
issues: | ||
exclude-rules: | ||
- text: 'Use of weak random number generator' | ||
linters: | ||
- gosec | ||
- text: 'ST1003:' | ||
linters: | ||
- stylecheck | ||
# FIXME: Disabled until golangci-lint updates stylecheck with this fix: | ||
# https://github.com/dominikh/go-tools/issues/389 | ||
- text: 'ST1016:' | ||
linters: | ||
- stylecheck | ||
- path: 'migrations' | ||
text: 'SA1019:' | ||
linters: | ||
- staticcheck | ||
- text: 'SA1019: codec.NewAminoCodec is deprecated' # TODO remove once migration path is set out | ||
linters: | ||
- staticcheck | ||
- text: 'SA1019: legacybech32.MustMarshalPubKey' # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: 'SA1019: legacybech32.MarshalPubKey' # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: 'SA1019: legacybech32.UnmarshalPubKey' # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: 'SA1019: params.SendEnabled is deprecated' # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: 'leading space' | ||
linters: | ||
- nolintlint | ||
max-issues-per-linter: 10000 | ||
max-same-issues: 10000 | ||
|
||
linters-settings: | ||
gci: | ||
custom-order: true | ||
sections: | ||
- standard # Standard section: captures all standard packages. | ||
- default # Default section: contains all imports that could not be matched to another section type. | ||
- prefix(cosmossdk.io) | ||
- prefix(github.com/cosmos/cosmos-sdk) | ||
- prefix(github.com/airchains-network/junction) | ||
revive: | ||
rules: | ||
- name: redefines-builtin-id | ||
disabled: true | ||
|
||
gosec: | ||
# To select a subset of rules to run. | ||
# Available rules: https://github.com/securego/gosec#available-rules | ||
# Default: [] - means include all rules | ||
includes: | ||
# - G101 # Look for hard coded credentials | ||
- G102 # Bind to all interfaces | ||
- G103 # Audit the use of unsafe block | ||
- G104 # Audit errors not checked | ||
- G106 # Audit the use of ssh.InsecureIgnoreHostKey | ||
- G107 # Url provided to HTTP request as taint input | ||
- G108 # Profiling endpoint automatically exposed on /debug/pprof | ||
- G109 # Potential Integer overflow made by strconv.Atoi result conversion to int16/32 | ||
- G110 # Potential DoS vulnerability via decompression bomb | ||
- G111 # Potential directory traversal | ||
- G112 # Potential slowloris attack | ||
- G113 # Usage of Rat.SetString in math/big with an overflow (CVE-2022-23772) | ||
- G114 # Use of net/http serve function that has no support for setting timeouts | ||
- G201 # SQL query construction using format string | ||
- G202 # SQL query construction using string concatenation | ||
- G203 # Use of unescaped data in HTML templates | ||
- G204 # Audit use of command execution | ||
- G301 # Poor file permissions used when creating a directory | ||
- G302 # Poor file permissions used with chmod | ||
- G303 # Creating tempfile using a predictable path | ||
- G304 # File path provided as taint input | ||
- G305 # File traversal when extracting zip/tar archive | ||
- G306 # Poor file permissions used when writing to a new file | ||
- G307 # Deferring a method which returns an error | ||
- G401 # Detect the usage of DES, RC4, MD5 or SHA1 | ||
- G402 # Look for bad TLS connection settings | ||
- G403 # Ensure minimum RSA key length of 2048 bits | ||
- G404 # Insecure random number source (rand) | ||
- G501 # Import blocklist: crypto/md5 | ||
- G502 # Import blocklist: crypto/des | ||
- G503 # Import blocklist: crypto/rc4 | ||
- G504 # Import blocklist: net/http/cgi | ||
- G505 # Import blocklist: crypto/sha1 | ||
- G601 # Implicit memory aliasing of items from a range statement | ||
misspell: | ||
locale: US | ||
gofumpt: | ||
extra-rules: true | ||
dogsled: | ||
max-blank-identifiers: 6 | ||
maligned: | ||
suggest-new: true | ||
nolintlint: | ||
allow-unused: false | ||
allow-leading-space: true | ||
require-explanation: false | ||
require-specific: false | ||
gosimple: | ||
checks: ['all'] | ||
gocritic: | ||
disabled-checks: | ||
- regexpMust | ||
- appendAssign | ||
- ifElseChain |
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,30 @@ | ||
queue_rules: | ||
- name: default | ||
conditions: | ||
- "#approved-reviews-by>0" | ||
|
||
pull_request_rules: | ||
- name: backport patches to main branch | ||
conditions: | ||
- base=releases/v0.4x | ||
- label=backport/main | ||
actions: | ||
backport: | ||
branches: | ||
- main | ||
- name: backport patches to sdk45 release branch | ||
conditions: | ||
- base=main | ||
- label=backport/v0.3x | ||
actions: | ||
backport: | ||
branches: | ||
- releases/v0.3x | ||
- name: backport patches to sdk47 release branch | ||
conditions: | ||
- base=main | ||
- label=backport/v0.4x | ||
actions: | ||
backport: | ||
branches: | ||
- releases/v0.4x |
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 @@ | ||
# see https://docs.sonarcloud.io/advanced-setup/automatic-analysis/ | ||
sonar.sources=. | ||
sonar.exclusions=**/tests/**,**/benchmarks/**,**/ibctesting/**,**/wasmtesting/**,**/simulation/**,**/testdata/**,**/*.pb.go,**/*.pb.gw.go,**/*.test.go,**/test_*.go,**/*_fixtures.go,**/mock_*.go,**/*_mock.go | ||
|
||
sonar.tests=. |
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 |
---|---|---|
@@ -1,4 +1,47 @@ | ||
FROM ubuntu:latest | ||
LABEL authors="deadlium, computerKeeda, Hitisha-G, saatvik333" | ||
# docker build . -t junction/junctiond:latest | ||
# docker run --rm -it junction/junctiond:latest /bin/sh | ||
|
||
ENTRYPOINT ["top", "-b"] | ||
# Using Alpine 3.19+ as the build system is currently broken, | ||
# see https://github.com/CosmWasm/wasmvm/issues/523 | ||
FROM golang:1.21-alpine3.18 AS go-builder | ||
|
||
# this comes from standard alpine nightly file | ||
# https://github.com/rust-lang/docker-rust-nightly/blob/master/alpine3.12/Dockerfile | ||
# with some changes to support our toolchain, etc | ||
RUN set -eux; apk add --no-cache ca-certificates build-base; | ||
|
||
RUN apk add git | ||
# NOTE: add these to run with LEDGER_ENABLED=true | ||
# RUN apk add libusb-dev linux-headers | ||
|
||
WORKDIR /code | ||
COPY . /code/ | ||
# See https://github.com/CosmWasm/wasmvm/releases | ||
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.4/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a | ||
ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.4/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a | ||
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 090b97641157fae1ae45e7ed368a1a8c091f3fef67958d3bc7c2fa7e7c54b6b4 | ||
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep a4a3d09b36fabb65b119d5ba23442c23694401fcbee4451fe6b7e22e325a4bac | ||
|
||
# force it to use static lib (from above) not standard libgo_cosmwasm.so file | ||
RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build | ||
RUN echo "Ensuring binary is statically linked ..." \ | ||
&& (file /code/build/junctiond | grep "statically linked") | ||
|
||
# -------------------------------------------------------- | ||
FROM alpine:3.18 | ||
|
||
COPY --from=go-builder /code/build/wasmd /usr/bin/wasmd | ||
|
||
COPY docker/* /opt/ | ||
RUN chmod +x /opt/*.sh | ||
|
||
WORKDIR /opt | ||
|
||
# rest server | ||
EXPOSE 1317 | ||
# tendermint p2p | ||
EXPOSE 26656 | ||
# tendermint rpc | ||
EXPOSE 26657 | ||
|
||
CMD ["/usr/bin/wasmd", "version"] |
Oops, something went wrong.