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

Develop cosmos v0.50 upgrade #437

Merged
merged 14 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[codespell]
skip = *.rs,*.json,*.js,*.html,*.d,*.sum,go.mod,*/statik.go,./x/claims/migrations/v2/legacy_types.go,./docs/swagger-ui/*,./yarn.lock
quiet-level = 2
ignore-words = .github/workflows/ignore-words.txt
25 changes: 16 additions & 9 deletions .dockerignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
.git
vendor
docs
# dist

node_modules
docs
# .infra
.github
node_modules/
assets/
build/
docs/
networks/
proto/
tools/
tests/localrelayer/
tests/cl-genesis-positions
tests/cl-go-client
.github/
.git/
.vscode/
go.work
go.work.sum
*.md
Empty file modified .github/CODEOWNERS
100644 → 100755
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/bug.md
100644 → 100755
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/config.yaml
100644 → 100755
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/feature_request.md
100644 → 100755
Empty file.
Empty file modified .github/ISSUE_TEMPLATE/issue.md
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ _(example:)_
Where is the change documented?

- [ ] Specification (`x/{module}/README.md`)
- [ ] Osmosis documentation site
- [ ] Ixo documentation site
- [ ] Code comments?
- [ ] N/A
Empty file modified .github/assets/readme_banner.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified .github/dependabot.yml
100644 → 100755
Empty file.
Empty file modified .github/prerelease-config.yaml
100644 → 100755
Empty file.
Empty file modified .github/release-config.yaml
100644 → 100755
Empty file.
Empty file modified .github/workflows/build.yml
100644 → 100755
Empty file.
28 changes: 28 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Spell Check

on:
pull_request:
push:
branches:
- main
- master

jobs:
spellcheck:
name: Run codespell
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install codespell
run: pip install codespell

- name: Run codespell
run: codespell
Empty file modified .github/workflows/ibc-e2e.yaml
100644 → 100755
Empty file.
Empty file.
Empty file modified .github/workflows/lint.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/prepare_release.yaml
100644 → 100755
Empty file.
Empty file modified .github/workflows/release.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/test_pull_request.yaml
100644 → 100755
Empty file.
272 changes: 260 additions & 12 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,15 +1,263 @@
.idea/
build/*
*/utils/node_modules/
*/utils/package-lock.json

vendor
node_modules
lefthook-local.yaml
coverage.out
dist

.DS_STORE

# docker-compose volume mapping for chain config and data
.data
.data2
.data3

# Created by https://www.toptal.com/developers/gitignore/api/intellij,vscode,macos,windows
# Edit at https://www.toptal.com/developers/gitignore?templates=intellij,vscode,macos,windows

build
**/*/node_modules

### Go ###

## go work sum
go.work.sum

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Go sum
go.work.sum

# Dependency directories (remove the comment below to include it)
# vendor/

### Go Patch ###
/vendor/
/Godeps/

### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### Intellij Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr

# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
.idea/**/sonarlint/

# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
.idea/**/sonarIssues.xml

# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
.idea/**/markdown-navigator.xml
.idea/**/markdown-navigator-enh.xml
.idea/**/markdown-navigator/

# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
.idea/$CACHE_FILE$

# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
.idea/codestream.xml

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### vscode ###
# .vscode/*
# !.vscode/settings.json
# !.vscode/tasks.json
# !.vscode/launch.json
# !.vscode/extensions.json
# *.code-workspace

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/intellij,vscode,macos,windows

/ixod
/.idea/
/artifacts/
/scripts/local/
/x/incentives/keeper/ixo_testing/
tools-stamp
/tests/localixo/.ixod/*
*.save
*.save.*

mutation_test_result.txt
go_mutation_test_result.txt

# Rust ignores. Generated by Cargo
# will have compiled files and executables
debug/
target/

# Generated by rust-optimizer
artifacts/

# These are backup files generated by rustfmt
**/*.rs.bk
# Don't commit lock files for test utils
x/ibc-hooks/testutils/Cargo.lock
# Ignore wasm files in e2e
tests/e2e/scripts/*.wasm

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Ignores beaker state
.beaker
blocks.db
**/blocks.db*

# Ignore e2e test artifacts (which clould leak information if committed)
.ash_history
.bash_history

# Python
**/venv/*
**/*.pyc

# Ignore binary created from localixo scripts
tests/cl-genesis-positions/script
tests/cl-genesis-positions/*.json

# Docs
docs/protocol/book

# Release folder
dist/

# Node modules
node_modules
Loading
Loading