diff --git a/.cz.toml b/.cz.toml index 927fd5e92..97961fdc3 100644 --- a/.cz.toml +++ b/.cz.toml @@ -5,5 +5,3 @@ version_scheme = "semver" version_provider = "scm" update_changelog_on_bump = true major_version_zero = true -pre_bump_hooks = ["make test"] -post_bump_hooks = ["make release"] diff --git a/.github/deploy/config.yml b/.github/deploy/config.yml index 162d88846..3aca0b06f 100644 --- a/.github/deploy/config.yml +++ b/.github/deploy/config.yml @@ -13,7 +13,7 @@ chains: hdPath: m/44'/118'/0'/0/0 coinType: 118 coins: 100000000000000usnr,100000000000000snr - repo: https://github.com/onsonr/sonr + repo: https://github.com/sonr-io/snrd numValidators: 1 ports: rest: 1317 diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index 3ce9b2234..54744f404 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -20,7 +20,6 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 # Required to fetch all history for merging - - uses: TimonVS/pr-labeler-action@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -36,13 +35,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - repository: onsonr/sonr fetch-depth: 0 fetch-tags: true - uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" check-latest: true - name: Run Sonrd Build run: make build @@ -55,44 +53,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - repository: onsonr/sonr fetch-depth: 0 fetch-tags: true - uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" check-latest: true - run: make test-unit - - validate-release: - if: github.event_name == 'merge_group' || github.event_name == 'pull_request' - runs-on: ubuntu-latest - name: Test Version - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - repository: onsonr/sonr - fetch-depth: 0 - fetch-tags: true - - - uses: actions/setup-go@v5 - with: - go-version: "1.23" - check-latest: true - - - name: Install Python - uses: actions/setup-python@v5 - with: - python-version: "3.x" - - - name: Version Check - run: make validate-tag - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Check GoReleaser Config - run: make release-check - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/merge-group.yml b/.github/workflows/merge-group.yml index dd3cdf250..5a6bec3c3 100644 --- a/.github/workflows/merge-group.yml +++ b/.github/workflows/merge-group.yml @@ -17,14 +17,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - repository: onsonr/sonr fetch-depth: 0 fetch-tags: true - - - uses: actions/setup-go@v5 - with: - go-version: "1.23" - check-latest: true + - name: Install devbox + uses: jetify-com/devbox-install-action@v0.12.0 - run: make test-race test-cover: @@ -44,25 +40,3 @@ jobs: go-version: "1.23" check-latest: true - run: make test-cover - - test-release: - runs-on: ubuntu-latest - name: Test Release - if: github.event_name == 'merge_group' - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - repository: onsonr/sonr - fetch-depth: 0 - fetch-tags: true - - - uses: actions/setup-go@v5 - with: - go-version: "1.23" - check-latest: true - - - name: Release Dry Run - run: make release-dry - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/merge-post.yml b/.github/workflows/merge-post.yml deleted file mode 100644 index 9cff9ccdf..000000000 --- a/.github/workflows/merge-post.yml +++ /dev/null @@ -1,124 +0,0 @@ -name: Post Merge -on: - pull_request: - types: [closed] - push: - tags: - - v* - branches: - - main - -permissions: - contents: write - issues: write - -jobs: - sync-version: - name: Sync Version - if: startsWith(github.ref, 'refs/tags/') - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - branch: main - fetch-depth: 0 - ssh-key: "${{ secrets.COMMIT_KEY }}" - fetch-tags: true - - - name: Update Version - run: | - # Get tag without 'v' prefix - TAG_VERSION=${GITHUB_REF#refs/tags/v} - - # Checkout main branch - git fetch origin main - git checkout main - - # Update version in .cz.toml - sed -i "s/^version = \".*\"/version = \"$TAG_VERSION\"/" .cz.toml - - # Configure git - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - - # Commit and push if there are changes - if git diff --quiet; then - echo "Version already synchronized" - else - git add .cz.toml - git commit -m "chore: sync version to ${TAG_VERSION} [skip ci]" - git push origin main - fi - - bump-version: - name: Cz Bump - if: | - github.event.pull_request.merged == true && - github.event.pull_request.user.login != 'dependabot[bot]' && - github.event.pull_request.user.login != 'dependabot-preview[bot]' - runs-on: ubuntu-latest - steps: - - name: Check out - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ssh-key: "${{ secrets.COMMIT_KEY }}" - - - name: Create bump and changelog - uses: commitizen-tools/commitizen-action@master - with: - push: false - increment: patch - branch: main - - - name: Push using ssh - run: | - git push origin main --tags - - new-release: - name: Create Release - needs: [sync-version] - if: startsWith(github.ref, 'refs/tags/') - permissions: write-all - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - repository: onsonr/sonr - fetch-depth: 0 - fetch-tags: true - - - uses: actions/setup-go@v5 - with: - go-version: "1.23" - check-latest: true - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Fetch Release Date - run: | - echo "RELEASE_DATE=$(date +%Y).$(date +%V).$(date +%u)" >> $GITHUB_ENV - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 - if: startsWith(github.ref, 'refs/tags/') - with: - version: "~> v2" - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GH_RELEASER_TOKEN }} - GITHUB_PERSONAL_AUTH_TOKEN: ${{ secrets.GH_RELEASER_TOKEN }} - DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} - REDDIT_APP_ID: ${{ secrets.REDDIT_APP_ID }} - REDDIT_SECRET: ${{ secrets.REDDIT_SECRET }} - REDDIT_USERNAME: ${{ secrets.REDDIT_USERNAME }} - REDDIT_PASSWORD: ${{ secrets.REDDIT_PASSWORD }} - RELEASE_DATE: ${{ env.RELEASE_DATE }} diff --git a/.github/workflows/release-post.yml b/.github/workflows/release-post.yml deleted file mode 100644 index 4098b2db0..000000000 --- a/.github/workflows/release-post.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Post Release -on: - release: - types: [published] - -permissions: - contents: write - issues: write - -jobs: - buf_push: - name: Publish Protobufs - runs-on: ubuntu-latest - steps: - # Run `git checkout` - - uses: actions/checkout@v4 - # Install the `buf` CLI - - uses: bufbuild/buf-setup-action@v1 - # Push only the Input in `proto` to the BSR - - uses: bufbuild/buf-push-action@v1 - continue-on-error: true - with: - input: proto - buf_token: ${{ secrets.BUF_TOKEN }} - - container-push: - name: Publish Dockers - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/onsonr/sonr:latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..73eaf69a7 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: Post Merge +on: + pull_request: + types: [closed] + push: + tags: + - v* + branches: + - main + +permissions: + contents: write + issues: write + +jobs: + publish-version: + name: Publish Version + if: | + github.event.pull_request.merged == true && + github.event.pull_request.user.login != 'dependabot[bot]' && + github.event.pull_request.user.login != 'dependabot-preview[bot]' + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ssh-key: "${{ secrets.COMMIT_KEY }}" + - name: Install devbox + uses: jetify-com/devbox-install-action@v0.12.0 + - name: Push using ssh + run: devbox run release + with: + DOPPLER_SONR_RELEASE_TOKEN: ${{ secrets.DOPPLER_RELEASE_TOKEN }} diff --git a/.gitignore b/.gitignore index 3f05577e9..91cca08b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ # Aider related generated files .aider-context CONVENTIONS.md -Taskfile.yml +bin +.env # Binaries .task diff --git a/.goreleaser.yaml b/.goreleaser.yaml index ec7b1850b..8443261f4 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,15 +1,9 @@ # yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json version: 2 project_name: sonr - -before: - hooks: - - echo "Release date is {{ .Env.RELEASE_DATE }}" - builds: - id: sonr - main: ./cmd/sonrd - binary: sonrd + binary: snrd mod_timestamp: "{{ .CommitTimestamp }}" goos: - linux @@ -24,7 +18,7 @@ builds: - -trimpath ldflags: - -X github.com/cosmos/cosmos-sdk/version.Name=sonr - - -X github.com/cosmos/cosmos-sdk/version.AppName=sonrd + - -X github.com/cosmos/cosmos-sdk/version.AppName=snrd - -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} - -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}} - -X "github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger" @@ -45,11 +39,11 @@ archives: nfpms: - id: sonr - package_name: sonrd - file_name_template: "sonrd_{{ .Os }}_{{ .Arch }}{{ .ConventionalExtension }}" + package_name: snrd + file_name_template: "sonr_{{ .Os }}_{{ .Arch }}{{ .ConventionalExtension }}" vendor: Sonr - homepage: "https://onsonr.dev" - maintainer: "Sonr " + homepage: "https://sonr.io" + maintainer: "Sonr " description: "Sonr is a decentralized, permissionless, and censorship-resistant identity network." license: "Apache 2.0" formats: @@ -60,35 +54,35 @@ nfpms: - ipfs contents: - src: README* - dst: /usr/share/doc/sonrd + dst: /usr/share/doc/snrd bindir: /usr/bin section: net priority: optional # Add these lines to match build config brews: - - name: sonr + - name: snrd ids: [sonr] commit_author: name: goreleaserbot email: bot@goreleaser.com directory: Formula caveats: "Run a local sonr node and access it with the hway proxy" - homepage: "https://onson.dev" + homepage: "https://sonr.io" description: "Sonr is a decentralized, permissionless, and censorship-resistant identity network." dependencies: - name: ipfs repository: - owner: onsonr + owner: sonr-io name: homebrew-tap branch: master - token: "{{ .Env.GITHUB_PERSONAL_AUTH_TOKEN }}" + token: "{{ .Env.GITHUB_PAT_TOKEN }}" release: github: - owner: onsonr - name: sonr - name_template: "{{ .Tag }} [{{ .Env.RELEASE_DATE }}]" + owner: sonr-io + name: snrd + name_template: "{{ .Tag }}" draft: false replace_existing_draft: true replace_existing_artifacts: true diff --git a/.taskfile.dist.yml b/.taskfile.dist.yml new file mode 100644 index 000000000..6ebf4c874 --- /dev/null +++ b/.taskfile.dist.yml @@ -0,0 +1,80 @@ +# https://taskfile.dev +version: "3" +silent: true +dotenv: + - .env + +vars: + NEXT_PATCH_VERSION: + sh: cz bump --get-next --increment PATCH + NEXT_MINOR_VERSION: + sh: cz bump --get-next --increment MINOR + PROJECT_VERSION: + sh: cz version -p + MILESTONE: + sh: gh milestone list --json title,number --jq ".[]" | rg 'v{{.NEXT_MINOR_VERSION}}' | jq -r ".number" + MILESTONE_TITLE: + sh: gh milestone list --json title,number --jq ".[]" | rg 'v{{.NEXT_MINOR_VERSION}}' | jq -r ".title" + MILESTONE_PROGRESS: + sh: gh milestone list --json title,progressPercentage --jq ".[]" | rg 'v{{.NEXT_MINOR_VERSION}}' | jq -r ".progressPercentage" + +tasks: + default: + cmds: + - echo "{{.VERSION}}" + - echo "{{.MILESTONE}}" + - echo "{{.MILESTONE_TITLE}}" + - echo "{{.MILESTONE_PROGRESS}}" + - echo "{{.BUMP_INCREMENT}}" + silent: true + + bump: + dotenv: + - .env + preconditions: + - sh: goreleaser check + msg: goreleaser check failed + - sh: git diff --exit-code + msg: git state is dirty + - sh: cz bump --dry-run --increment PATCH + msg: cz bump test failed + vars: + BUMP_INCREMENT: + sh: | + if [ "{{.MILESTONE_PROGRESS}}" = "100" ]; then + echo "MINOR" + else + echo "PATCH" + fi + cmds: + - gum format "# [1/4] Bump Version" + - cz bump --yes --increment {{.BUMP_INCREMENT}} --allow-no-commit + - task: publish:buf + - task: publish:docker + - gum format "# [4/4] Run GoReleaser" + - goreleaser release --clean + + publish:buf: + internal: true + dir: proto + vars: + VERSION: + sh: cz version -p + TAG: v{{.VERSION}} + cmds: + - gum format "# [2/4] Publish Protobuf Schemas" + - buf build + - buf push --label {{.TAG}} + + publish:docker: + internal: true + vars: + VERSION: + sh: cz version -p + cmds: + - gum format "# [3/4] Publish Docker Images" + - gum spin --title "Running docker build..." -- docker build . -t onsonr/snrd:latest -t onsonr/snrd:{{.VERSION}} -t ghcr.io/sonr-io/snrd:latest -t ghcr.io/sonr-io/snrd:{{.VERSION}} + - docker push ghcr.io/sonr-io/snrd:latest + - docker push ghcr.io/sonr-io/snrd:{{.VERSION}} + - docker push onsonr/snrd:latest + - docker push onsonr/snrd:{{.VERSION}} diff --git a/CHANGELOG.md b/CHANGELOG.md index 555b70d94..1bbe584c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,72 @@ +## v0.6.4 (2025-03-27) + +### Feat + +- enhance release process with dynamic version display and streamlined automation +- enhance release process with real-time version feedback +- improve release process with interactive feedback +- enhance Docker image publishing with piped credentials +- streamline release process with Taskfile and conventional commits +- streamline development and release workflow +- streamline release process with improved automation +- consolidate release notes +- enhance goreleaser output with title for better UX +- streamline development and release processes +- streamline development and release processes +- streamline release process and update project metadata +- upgrade to go 1.24 and align binary name +- streamline build process by removing release target +- streamline build process and configuration +- streamline release process and update project metadata +- enable commit-less version bumping +- streamline release process with Devbox +- integrate Doppler for secrets management +- introduce devbox for consistent development environment +- automate release process with conventional commits +- streamline app initialization and dependency management +- enable task management with Taskfile +- introduce Taskfile automation for build and deployment +- **deploy**: add hdPath and coinType to sonr-1 chain config +- add go dependency and enhance devbox environment variables +- implement HTMX for dynamic updates +- add CI/CD infrastructure for development and deployment + +### Fix + +- Refactor crypto +- Deploy config +- resolve minor formatting inconsistencies in Dockerfile and accumulator.go +- correct typo in workflow name + +### Refactor + +- streamline release process and simplify dev environment +- streamline release process by removing redundant version display +- streamline release process with Taskfile +- rename project from onsonr/sonr to sonr-io/snrd (#1249) +- remove evmos chain from deployment configuration +- simplify deployment infrastructure using starship +- remove unnecessary Caddyfile +- remove process-compose and individual start scripts +- remove devnet and testnet network configurations + +## v0.6.3 (2025-01-06) + +### Feat + +- Add release date to workflow environment +- automate release creation and deployment on tag push + +### Fix + +- revert version number to 0.6.2 +- checkout main branch before updating version +- Specify main branch and fetch tags in merge workflow + +### Refactor + +- Rename workflow file for clarity + ## v0.6.2 (2025-01-06) ### Refactor diff --git a/Dockerfile b/Dockerfile index e1ece748a..b679af118 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-alpine AS go-builder +FROM golang:1.24-alpine AS go-builder SHELL ["/bin/sh", "-ecuxo", "pipefail"] @@ -24,16 +24,16 @@ COPY . /code # then log output of file /code/bin/sonrd # then ensure static linking RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build \ - && file /code/build/sonrd \ + && file /code/bin/snrd \ && echo "Ensuring binary is statically linked ..." \ - && (file /code/build/sonrd | grep "statically linked") + && (file /code/bin/snrd | grep "statically linked") # -------------------------------------------------------- FROM alpine:3.17 -LABEL org.opencontainers.image.title="sonr" +LABEL org.opencontainers.image.title="snrd" LABEL org.opencontainers.image.authors="diDAO " -LABEL org.opencontainers.image.source=https://github.com/onsonr/sonr +LABEL org.opencontainers.image.source=https://github.com/sonr-io/snrd COPY --from=go-builder /code/build/sonrd /usr/bin/sonrd diff --git a/Makefile b/Makefile index 1227e324c..49434e45a 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,6 @@ BINDIR ?= $(GOPATH)/bin SIMAPP = ./app # Fetch from env -RELEASE_DATE ?= $(shell date +%Y).$(shell date +%V).$(shell date +%u) VERSION ?= $(shell echo $(shell git describe --tags) | sed 's/^v//') COMMIT ?= $(shell git log -1 --format='%H') OS ?= $(shell uname -s) @@ -17,7 +16,7 @@ ROOT ?= $(shell git rev-parse --show-toplevel) # for dockerized protobuf tools DOCKER := $(shell which docker) -HTTPS_GIT := github.com/onsonr/sonr.git +HTTPS_GIT := github.com/sonr-io/snrd.git export GO111MODULE = on @@ -60,7 +59,7 @@ build_tags_comma_sep := $(subst $(empty),$(comma),$(build_tags)) # process linker flags ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=sonr \ - -X github.com/cosmos/cosmos-sdk/version.AppName=sonrd \ + -X github.com/cosmos/cosmos-sdk/version.AppName=snrd \ -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \ -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" @@ -84,28 +83,21 @@ ifeq ($(OS),Windows_NT) $(error wasmd server not supported. Use "make build-windows-client" for client) exit 1 else - go build -mod=readonly $(BUILD_FLAGS) -o build/sonrd ./cmd/sonrd + go build -mod=readonly $(BUILD_FLAGS) -o bin/snrd . endif build-windows-client: go.sum - GOOS=windows GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) -o build/sonrd.exe ./cmd/sonrd + GOOS=windows GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) -o bin/snrd.exe . build-contract-tests-hooks: ifeq ($(OS),Windows_NT) - go build -mod=readonly $(BUILD_FLAGS) -o build/contract_tests.exe ./cmd/contract_tests + go build -mod=readonly $(BUILD_FLAGS) -o bin/contract_tests.exe ./cmd/contract_tests else - go build -mod=readonly $(BUILD_FLAGS) -o build/contract_tests ./cmd/contract_tests + go build -mod=readonly $(BUILD_FLAGS) -o bin/contract_tests ./cmd/contract_tests endif install: go.sum - go install -mod=readonly $(BUILD_FLAGS) ./cmd/sonrd - -install-hway: go.sum - go install -mod=readonly ./cmd/hway - -release: fmt-date - @go install github.com/goreleaser/goreleaser/v2@latest - RELEASE_DATE=$(RELEASE_DATE) goreleaser release --clean + go install -mod=readonly $(BUILD_FLAGS) . ######################################## ### Tools & dependencies @@ -122,14 +114,14 @@ go.sum: go.mod draw-deps: @# requires brew install graphviz or apt-get install graphviz go install github.com/RobotsAndPencils/goviz@latest - @goviz -i ./cmd/sonrd -d 2 | dot -Tpng -o dependency-graph.png + @goviz -i . -d 2 | dot -Tpng -o dependency-graph.png clean: rm -rf .aider* rm -rf static rm -rf .out rm -rf hway.db - rm -rf snapcraft-local.yaml build/ + rm -rf snapcraft-local.yaml bin/ rm -rf build distclean: clean @@ -242,7 +234,7 @@ local-image: ifeq (,$(shell which heighliner)) echo 'heighliner' binary not found. Consider running `make get-heighliner` else - heighliner build -c sonrd --local -f chains.yaml + heighliner build -c snrd --local -f chains.yaml endif .PHONY: get-heighliner local-image is-localic-installed @@ -287,14 +279,14 @@ setup-testnet: mod-tidy is-localic-installed install local-image set-testnet-con # Run this before testnet keys are added # chainid-1 is used in the testnet.json set-testnet-configs: - sonrd config set client chain-id sonr-testnet-1 - sonrd config set client keyring-backend test - sonrd config set client output text + snrd config set client chain-id sonr-testnet-1 + snrd config set client keyring-backend test + snrd config set client output text # import keys from testnet.json into test keyring setup-testnet-keys: - -`echo "decorate bright ozone fork gallery riot bus exhaust worth way bone indoor calm squirrel merry zero scheme cotton until shop any excess stage laundry" | sonrd keys add acc0 --recover` - -`echo "wealth flavor believe regret funny network recall kiss grape useless pepper cram hint member few certain unveil rather brick bargain curious require crowd raise" | sonrd keys add acc1 --recover` + -`echo "decorate bright ozone fork gallery riot bus exhaust worth way bone indoor calm squirrel merry zero scheme cotton until shop any excess stage laundry" | snrd keys add acc0 --recover` + -`echo "wealth flavor believe regret funny network recall kiss grape useless pepper cram hint member few certain unveil rather brick bargain curious require crowd raise" | snrd keys add acc1 --recover` # default testnet is with IBC testnet: setup-testnet @@ -311,49 +303,22 @@ sh-testnet: mod-tidy ############################################################################### ### extra utils ### ############################################################################### - -can-release: - @echo "Checking if we can release..." - @git diff --exit-code - @git diff --cached --exit-code - @git tag -l | grep -q -F $(VERSION) - @test -z "$$(git ls-files --exclude-standard --others)" || (echo "There are uncommitted files. Please commit or stash them before release."; exit 1) - -should-release: - @echo "Checking if we should release..." - @git diff --exit-code - @git diff --cached --exit-code - @git tag -l | grep -q -F $(VERSION) - @test -z "$$(git ls-files --exclude-standard --others)" || (echo "There are uncommitted files. Please commit or stash them before release."; exit 1) - -push-docker: - @docker build -t ghcr.io/onsonr/sonr:latest . - @docker tag ghcr.io/onsonr/sonr:latest ghcr.io/onsonr/sonr:$(VERSION) - @docker push ghcr.io/onsonr/sonr:latest - @docker push ghcr.io/onsonr/sonr:$(VERSION) - status: @gh run ls -L 3 @gum format -- "# Sonr ($OS-$VERSION)" "- ($(COMMIT)) $ROOT" "- $(RELEASE_DATE)" @sleep 3 -push-docker: +push-docker: @docker build -t ghcr.io/onsonr/sonr:$(VERSION) . @docker tag ghcr.io/onsonr/sonr:$(VERSION) ghcr.io/onsonr/sonr:latest @docker push ghcr.io/onsonr/sonr:$(VERSION) @docker push ghcr.io/onsonr/sonr:latest release: - @RELEASE_DATE=$(RELEASE_DATE) goreleaser release --clean + @devbox run cz:bump release-dry: - @RELEASE_DATE=$(RELEASE_DATE) goreleaser release --snapshot --clean --skip=publish - -release-check: - @RELEASE_DATE=$(RELEASE_DATE) goreleaser check - -validate-tag: - @sh ./scripts/validate_tag.sh + @devbox run release:dry deploy-deps: @echo "Installing deploy dependencies" diff --git a/README.md b/README.md index eb0ef3e49..88cf72aae 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ # `sonr` - Sonr Chain -[![Go Reference](https://pkg.go.dev/badge/github.com/onsonr/sonr.svg)](https://pkg.go.dev/github.com/onsonr/sonr) +[![Go Reference](https://pkg.go.dev/badge/github.com/sonr-io/snrd.svg)](https://pkg.go.dev/github.com/sonr-io/snrd) ![GitHub commit activity](https://img.shields.io/github/commit-activity/w/onsonr/sonr) ![GitHub Release Date - Published_At](https://img.shields.io/github/release-date/onsonr/sonr) [![Static Badge](https://img.shields.io/badge/homepage-sonr.io-blue?style=flat-square)](https://sonr.io) -[![Go Report Card](https://goreportcard.com/badge/github.com/onsonr/sonr)](https://goreportcard.com/report/github.com/onsonr/sonr) +[![Go Report Card](https://goreportcard.com/badge/github.com/sonr-io/snrd)](https://goreportcard.com/report/github.com/sonr-io/snrd) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sonrhq_sonr&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=sonr-io_sonr) > Sonr is a combination of decentralized primitives. Fundamentally, it is a peer-to-peer identity and asset management system that leverages DID documents, Webauthn, and IPFS—providing users with a secure, portable decentralized identity. # Documentation -1. [Quick Start](https://github.com/onsonr/sonr/wiki/1-%E2%80%90-Quick-Start) -2. [Chain Modules](https://github.com/onsonr/sonr/wiki/2-%E2%80%90-Chain-Modules) -3. [System Architecture](https://github.com/onsonr/sonr/wiki/3-%E2%80%90-System-Architecture) -4. [Token Economy](https://github.com/onsonr/sonr/wiki/4-%E2%80%90-Token-Economy) -5. [Service Mangement](https://github.com/onsonr/sonr/wiki/5-%E2%80%90-Service-Management) -6. [Design System](https://github.com/onsonr/sonr/wiki/6-%E2%80%90-Design-System) -7. [Self Custody](https://github.com/onsonr/sonr/wiki/7-%E2%80%90-Self-Custody) +1. [Quick Start](https://github.com/sonr-io/snrd/wiki/1-%E2%80%90-Quick-Start) +2. [Chain Modules](https://github.com/sonr-io/snrd/wiki/2-%E2%80%90-Chain-Modules) +3. [System Architecture](https://github.com/sonr-io/snrd/wiki/3-%E2%80%90-System-Architecture) +4. [Token Economy](https://github.com/sonr-io/snrd/wiki/4-%E2%80%90-Token-Economy) +5. [Service Mangement](https://github.com/sonr-io/snrd/wiki/5-%E2%80%90-Service-Management) +6. [Design System](https://github.com/sonr-io/snrd/wiki/6-%E2%80%90-Design-System) +7. [Self Custody](https://github.com/sonr-io/snrd/wiki/7-%E2%80%90-Self-Custody) # Stats @@ -34,6 +34,6 @@ Sonr would not have been possible without the direct and indirect support of the # Community & Support -- [Forum](https://github.com/onsonr/sonr/discussions) -- [Issues](https://github.com/onsonr/sonr/issues) +- [Forum](https://github.com/sonr-io/snrd/discussions) +- [Issues](https://github.com/sonr-io/snrd/issues) - [Twitter](https://sonr.io/twitter) diff --git a/api/did/module/v1/module.pulsar.go b/api/did/module/v1/module.pulsar.go index 56d217580..38c2c563e 100644 --- a/api/did/module/v1/module.pulsar.go +++ b/api/did/module/v1/module.pulsar.go @@ -417,21 +417,21 @@ var file_did_module_v1_module_proto_rawDesc = []byte{ 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0d, 0x64, 0x69, 0x64, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, - 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x28, 0x0a, - 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1e, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x18, 0x0a, - 0x16, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x42, 0xa9, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, - 0x64, 0x69, 0x64, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, - 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x31, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, - 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x6d, 0x6f, 0x64, - 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, 0x31, 0xa2, - 0x02, 0x03, 0x44, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x44, 0x69, 0x64, 0x2e, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x44, 0x69, 0x64, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x44, 0x69, 0x64, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0xea, 0x02, 0x0f, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, - 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x29, 0x0a, + 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1f, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x19, 0x0a, + 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, + 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x42, 0xaa, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, + 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, + 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x32, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, + 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x6d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, + 0x31, 0xa2, 0x02, 0x03, 0x44, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x44, 0x69, 0x64, 0x2e, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x44, 0x69, 0x64, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x44, 0x69, 0x64, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0xea, 0x02, 0x0f, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, + 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/did/v1/genesis.pulsar.go b/api/did/v1/genesis.pulsar.go index 8140aee24..f010b52b8 100644 --- a/api/did/v1/genesis.pulsar.go +++ b/api/did/v1/genesis.pulsar.go @@ -4147,15 +4147,15 @@ var file_did_v1_genesis_proto_rawDesc = []byte{ 0x52, 0x14, 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x76, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x42, 0x7c, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x42, 0x0c, - 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, - 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, - 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x76, - 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, - 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0xe2, - 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, - 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x42, 0x7d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x42, 0x0c, + 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, + 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, + 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, + 0x76, 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, + 0x06, 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, + 0xe2, 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, 0x31, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/did/v1/query.pulsar.go b/api/did/v1/query.pulsar.go index 386703491..9cb1f65b3 100644 --- a/api/did/v1/query.pulsar.go +++ b/api/did/v1/query.pulsar.go @@ -4169,16 +4169,16 @@ var file_did_v1_query_proto_rawDesc = []byte{ 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x14, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x76, - 0x31, 0x2f, 0x7b, 0x64, 0x69, 0x64, 0x7d, 0x2f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x42, 0x7a, + 0x31, 0x2f, 0x7b, 0x64, 0x69, 0x64, 0x7d, 0x2f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x42, 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, - 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x69, - 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x69, - 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, + 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, + 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, + 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, + 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/api/did/v1/state.pulsar.go b/api/did/v1/state.pulsar.go index af60e7946..f1361d2bf 100644 --- a/api/did/v1/state.pulsar.go +++ b/api/did/v1/state.pulsar.go @@ -3492,15 +3492,15 @@ var file_did_v1_state_proto_rawDesc = []byte{ 0x2c, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x10, 0x02, 0x18, 0x01, 0x12, 0x26, 0x0a, 0x20, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2c, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x2c, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x10, - 0x03, 0x18, 0x01, 0x18, 0x03, 0x42, 0x7a, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, + 0x03, 0x18, 0x01, 0x18, 0x03, 0x42, 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, - 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, - 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, - 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, - 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, - 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, - 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, + 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, + 0x69, 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, + 0x58, 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, + 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, + 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/did/v1/tx.pulsar.go b/api/did/v1/tx.pulsar.go index d74584bec..78bcd8227 100644 --- a/api/did/v1/tx.pulsar.go +++ b/api/did/v1/tx.pulsar.go @@ -7261,15 +7261,15 @@ var file_did_v1_tx_proto_rawDesc = []byte{ 0x2e, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x1a, 0x1f, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0x77, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, + 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0x78, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x69, 0x64, 0x2e, 0x76, 0x31, 0x42, 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, - 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, - 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x69, - 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, - 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, 0x5c, - 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, 0x56, - 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, + 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, + 0x69, 0x64, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x69, 0x64, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, + 0x58, 0xaa, 0x02, 0x06, 0x44, 0x69, 0x64, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x69, 0x64, + 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x69, 0x64, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x69, 0x64, 0x3a, 0x3a, + 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/dwn/module/v1/module.pulsar.go b/api/dwn/module/v1/module.pulsar.go index 501dc07c7..c37817758 100644 --- a/api/dwn/module/v1/module.pulsar.go +++ b/api/dwn/module/v1/module.pulsar.go @@ -417,21 +417,21 @@ var file_dwn_module_v1_module_proto_rawDesc = []byte{ 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0d, 0x64, 0x77, 0x6e, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, - 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x28, 0x0a, - 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1e, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x18, 0x0a, - 0x16, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x42, 0xa9, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, - 0x64, 0x77, 0x6e, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, - 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x31, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, - 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x6d, 0x6f, 0x64, - 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, 0x31, 0xa2, - 0x02, 0x03, 0x44, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x44, 0x77, 0x6e, 0x2e, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x44, 0x77, 0x6e, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x44, 0x77, 0x6e, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0xea, 0x02, 0x0f, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, - 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x29, 0x0a, + 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1f, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x19, 0x0a, + 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, + 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x42, 0xaa, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, + 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, + 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x32, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, + 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x6d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, + 0x31, 0xa2, 0x02, 0x03, 0x44, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x44, 0x77, 0x6e, 0x2e, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x44, 0x77, 0x6e, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x44, 0x77, 0x6e, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0xea, 0x02, 0x0f, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, + 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/dwn/v1/genesis.pulsar.go b/api/dwn/v1/genesis.pulsar.go index fb5ca6a80..4b48c4857 100644 --- a/api/dwn/v1/genesis.pulsar.go +++ b/api/dwn/v1/genesis.pulsar.go @@ -3077,16 +3077,16 @@ var file_dwn_v1_genesis_proto_rawDesc = []byte{ 0x22, 0x3a, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x08, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0x7c, 0x0a, 0x0a, + 0x28, 0x09, 0x52, 0x08, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0x7d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, - 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x77, - 0x6e, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x77, - 0x6e, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0xea, 0x02, 0x07, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, + 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, + 0x77, 0x6e, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, + 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, + 0x77, 0x6e, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0xea, 0x02, 0x07, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/api/dwn/v1/query.pulsar.go b/api/dwn/v1/query.pulsar.go index cce868221..f01c1a48b 100644 --- a/api/dwn/v1/query.pulsar.go +++ b/api/dwn/v1/query.pulsar.go @@ -900,15 +900,15 @@ var file_dwn_v1_query_proto_rawDesc = []byte{ 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f, 0x76, 0x61, 0x75, 0x6c, - 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0x7a, 0x0a, 0x0a, 0x63, + 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, - 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, - 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x77, 0x6e, 0x76, 0x31, - 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x2e, 0x56, 0x31, 0xca, - 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x77, 0x6e, 0x5c, 0x56, - 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, - 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, + 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, + 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x77, 0x6e, 0x76, + 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x2e, 0x56, 0x31, + 0xca, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x77, 0x6e, 0x5c, + 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, + 0x07, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/dwn/v1/state.pulsar.go b/api/dwn/v1/state.pulsar.go index 57b079fcd..3e0add240 100644 --- a/api/dwn/v1/state.pulsar.go +++ b/api/dwn/v1/state.pulsar.go @@ -1427,15 +1427,15 @@ var file_dwn_v1_state_proto_rawDesc = []byte{ 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x1f, 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x19, 0x0a, 0x09, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x0a, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x10, 0x01, 0x18, 0x02, 0x42, - 0x7a, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x53, - 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, - 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, - 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, - 0x77, 0x6e, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, - 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, - 0x77, 0x6e, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0xea, 0x02, 0x07, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x53, + 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, + 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, + 0x64, 0x77, 0x6e, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, + 0x6e, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, + 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/dwn/v1/tx.pulsar.go b/api/dwn/v1/tx.pulsar.go index f190f03c9..24fb48197 100644 --- a/api/dwn/v1/tx.pulsar.go +++ b/api/dwn/v1/tx.pulsar.go @@ -1939,15 +1939,15 @@ var file_dwn_v1_tx_proto_rawDesc = []byte{ 0x15, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x1a, 0x1d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0x77, 0x0a, 0x0a, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0x78, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x77, 0x6e, 0x2e, 0x76, 0x31, 0x42, 0x07, 0x54, 0x78, 0x50, 0x72, - 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, - 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, - 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x77, 0x6e, 0x76, 0x31, 0xa2, 0x02, - 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, - 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0x5c, - 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, 0x77, - 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, + 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, + 0x70, 0x69, 0x2f, 0x64, 0x77, 0x6e, 0x2f, 0x76, 0x31, 0x3b, 0x64, 0x77, 0x6e, 0x76, 0x31, 0xa2, + 0x02, 0x03, 0x44, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x44, 0x77, 0x6e, 0x2e, 0x56, 0x31, 0xca, 0x02, + 0x06, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x44, 0x77, 0x6e, 0x5c, 0x56, 0x31, + 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x44, + 0x77, 0x6e, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/svc/module/v1/module.pulsar.go b/api/svc/module/v1/module.pulsar.go index d28ce9067..896641066 100644 --- a/api/svc/module/v1/module.pulsar.go +++ b/api/svc/module/v1/module.pulsar.go @@ -417,21 +417,21 @@ var file_svc_module_v1_module_proto_rawDesc = []byte{ 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0d, 0x73, 0x76, 0x63, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, - 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x28, 0x0a, - 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1e, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x18, 0x0a, - 0x16, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x42, 0xa9, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, - 0x73, 0x76, 0x63, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, - 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x31, 0x67, 0x69, - 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, - 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x6d, 0x6f, 0x64, - 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, 0x31, 0xa2, - 0x02, 0x03, 0x53, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x53, 0x76, 0x63, 0x2e, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x53, 0x76, 0x63, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x53, 0x76, 0x63, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0xea, 0x02, 0x0f, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, - 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x29, 0x0a, + 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, 0x1f, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x19, 0x0a, + 0x17, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, + 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x42, 0xaa, 0x01, 0x0a, 0x11, 0x63, 0x6f, 0x6d, + 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, + 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x32, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, + 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x6d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, + 0x31, 0xa2, 0x02, 0x03, 0x53, 0x4d, 0x58, 0xaa, 0x02, 0x0d, 0x53, 0x76, 0x63, 0x2e, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0d, 0x53, 0x76, 0x63, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x19, 0x53, 0x76, 0x63, 0x5c, 0x4d, 0x6f, + 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0xea, 0x02, 0x0f, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, + 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/svc/v1/genesis.pulsar.go b/api/svc/v1/genesis.pulsar.go index 552b19774..027276f57 100644 --- a/api/svc/v1/genesis.pulsar.go +++ b/api/svc/v1/genesis.pulsar.go @@ -4095,16 +4095,16 @@ var file_svc_v1_genesis_proto_rawDesc = []byte{ 0x6f, 0x6e, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x78, 0x70, 0x69, 0x72, 0x79, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, - 0x65, 0x78, 0x70, 0x69, 0x72, 0x79, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x42, 0x7c, 0x0a, 0x0a, + 0x65, 0x78, 0x70, 0x69, 0x72, 0x79, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x42, 0x7d, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, - 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, - 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, - 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, + 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, + 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, + 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, + 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/api/svc/v1/query.pulsar.go b/api/svc/v1/query.pulsar.go index fd593467c..165e51760 100644 --- a/api/svc/v1/query.pulsar.go +++ b/api/svc/v1/query.pulsar.go @@ -2763,15 +2763,15 @@ var file_svc_v1_query_proto_rawDesc = []byte{ 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x12, 0x1f, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x2f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x73, 0x2f, 0x7b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x7d, - 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x42, 0x7a, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, + 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x42, 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, - 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, - 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, - 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, - 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, + 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, + 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, + 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, + 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, + 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/svc/v1/state.pulsar.go b/api/svc/v1/state.pulsar.go index c42aa9514..7203913c8 100644 --- a/api/svc/v1/state.pulsar.go +++ b/api/svc/v1/state.pulsar.go @@ -1661,15 +1661,15 @@ var file_svc_v1_state_proto_rawDesc = []byte{ 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x3a, 0x24, 0xf2, 0x9e, 0xd3, 0x8e, 0x03, 0x1e, 0x0a, 0x04, 0x0a, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x0e, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x2c, 0x6f, 0x72, 0x69, 0x67, 0x69, - 0x6e, 0x10, 0x01, 0x18, 0x01, 0x18, 0x02, 0x42, 0x7a, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, + 0x6e, 0x10, 0x01, 0x18, 0x01, 0x18, 0x02, 0x42, 0x7b, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, - 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, - 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, - 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, - 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, - 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, - 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, + 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, + 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, + 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, + 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, + 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/api/svc/v1/tx.pulsar.go b/api/svc/v1/tx.pulsar.go index f6ff53eca..27579601b 100644 --- a/api/svc/v1/tx.pulsar.go +++ b/api/svc/v1/tx.pulsar.go @@ -2072,15 +2072,15 @@ var file_svc_v1_tx_proto_rawDesc = []byte{ 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x1a, 0x22, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, - 0x01, 0x42, 0x77, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x42, - 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, - 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6f, 0x6e, 0x73, 0x6f, 0x6e, 0x72, 0x2f, 0x73, 0x6f, - 0x6e, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x76, - 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, 0x76, - 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x01, 0x42, 0x78, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x76, 0x63, 0x2e, 0x76, 0x31, 0x42, + 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, + 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6f, 0x6e, 0x72, 0x2d, 0x69, 0x6f, 0x2f, 0x73, + 0x6e, 0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x76, 0x63, 0x2f, 0x76, 0x31, 0x3b, 0x73, + 0x76, 0x63, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x53, 0x76, 0x63, + 0x2e, 0x56, 0x31, 0xca, 0x02, 0x06, 0x53, 0x76, 0x63, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x12, 0x53, + 0x76, 0x63, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0xea, 0x02, 0x07, 0x53, 0x76, 0x63, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/app/app.go b/app/app.go index 6ef9cba42..2ca2a2e38 100644 --- a/app/app.go +++ b/app/app.go @@ -134,15 +134,15 @@ import ( ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" - did "github.com/onsonr/sonr/x/did" - didkeeper "github.com/onsonr/sonr/x/did/keeper" - didtypes "github.com/onsonr/sonr/x/did/types" - dwn "github.com/onsonr/sonr/x/dwn" - dwnkeeper "github.com/onsonr/sonr/x/dwn/keeper" - dwntypes "github.com/onsonr/sonr/x/dwn/types" - svc "github.com/onsonr/sonr/x/svc" - svckeeper "github.com/onsonr/sonr/x/svc/keeper" - svctypes "github.com/onsonr/sonr/x/svc/types" + did "github.com/sonr-io/snrd/x/did" + didkeeper "github.com/sonr-io/snrd/x/did/keeper" + didtypes "github.com/sonr-io/snrd/x/did/types" + dwn "github.com/sonr-io/snrd/x/dwn" + dwnkeeper "github.com/sonr-io/snrd/x/dwn/keeper" + dwntypes "github.com/sonr-io/snrd/x/dwn/types" + svc "github.com/sonr-io/snrd/x/svc" + svckeeper "github.com/sonr-io/snrd/x/svc/keeper" + svctypes "github.com/sonr-io/snrd/x/svc/types" "github.com/spf13/cast" globalfee "github.com/strangelove-ventures/globalfee/x/globalfee" globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" diff --git a/app/decorators/msg_filter_test.go b/app/decorators/msg_filter_test.go index e63e3cc83..7995fafbb 100644 --- a/app/decorators/msg_filter_test.go +++ b/app/decorators/msg_filter_test.go @@ -10,8 +10,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/stretchr/testify/suite" - app "github.com/onsonr/sonr/app" - "github.com/onsonr/sonr/app/decorators" + app "github.com/sonr-io/snrd/app" + "github.com/sonr-io/snrd/app/decorators" ) type AnteTestSuite struct { diff --git a/app/encoding.go b/app/encoding.go index 4bd9bfbb9..ed67acc83 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -9,7 +9,7 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" - "github.com/onsonr/sonr/app/params" + "github.com/sonr-io/snrd/app/params" ) // MakeEncodingConfig creates a new EncodingConfig with all modules registered. For testing only diff --git a/app/upgrades.go b/app/upgrades.go index 9855cab2e..44bda814c 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -5,8 +5,8 @@ import ( upgradetypes "cosmossdk.io/x/upgrade/types" - "github.com/onsonr/sonr/app/upgrades" - "github.com/onsonr/sonr/app/upgrades/noop" + "github.com/sonr-io/snrd/app/upgrades" + "github.com/sonr-io/snrd/app/upgrades/noop" ) // Upgrades list of chain upgrades diff --git a/app/upgrades/noop/upgrades.go b/app/upgrades/noop/upgrades.go index cf67da610..0406794cf 100644 --- a/app/upgrades/noop/upgrades.go +++ b/app/upgrades/noop/upgrades.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/onsonr/sonr/app/upgrades" + "github.com/sonr-io/snrd/app/upgrades" ) // NewUpgrade constructor diff --git a/app/upgrades/types.go b/app/upgrades/types.go index cd7d199ca..4fe8acff5 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -14,7 +14,7 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" - didkeeper "github.com/onsonr/sonr/x/did/keeper" + didkeeper "github.com/sonr-io/snrd/x/did/keeper" ) type AppKeepers struct { diff --git a/chains.yaml b/chains.yaml deleted file mode 100644 index e8bf09694..000000000 --- a/chains.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# This file is used to create docker images using the heighliner binary. -# see: https://github.com/strangelove-ventures/heighliner - -# Sonr Node - Identity -- name: sonr - github-organization: onsonr - github-repo: sonr - dockerfile: cosmos - build-target: make install - binaries: - - /go/bin/sonrd - build-env: - - LEDGER_ENABLED=false - - BUILD_TAGS=muslc - -# Ethereum Node - Web3 -- name: evmos - github-organization: tharsis - github-repo: evmos - dockerfile: cosmos - build-target: make install - binaries: - - /go/bin/evmosd - -# Bitcoin Node - Gold -- name: nomic - github-organization: nomic-io - github-repo: nomic - dockerfile: cargo - build-target: | - TOOLCHAIN=$(cat rust-toolchain.toml | grep channel | awk '{print $3}' | tr -d '"') - rustup component add rust-src --toolchain ${TOOLCHAIN}-$(uname -m)-unknown-linux-gnu - cargo install --locked --path . -Zbuild-std - binaries: - - /build/nomic/target/${ARCH}-unknown-linux-gnu/release/nomic - platforms: - - linux/amd64 diff --git a/cmd/sonrd/commands.go b/cmd/commands.go similarity index 99% rename from cmd/sonrd/commands.go rename to cmd/commands.go index bccf544f8..db40646f4 100644 --- a/cmd/sonrd/commands.go +++ b/cmd/commands.go @@ -1,4 +1,4 @@ -package main +package cmd import ( "errors" @@ -7,7 +7,7 @@ import ( cmtcfg "github.com/cometbft/cometbft/config" dbm "github.com/cosmos/cosmos-db" - "github.com/onsonr/sonr/app" + "github.com/sonr-io/snrd/app" "github.com/spf13/cast" "github.com/spf13/cobra" "github.com/spf13/viper" diff --git a/cmd/sonrd/root.go b/cmd/root.go similarity index 98% rename from cmd/sonrd/root.go rename to cmd/root.go index e2b7e32fb..6264240e2 100644 --- a/cmd/sonrd/root.go +++ b/cmd/root.go @@ -1,4 +1,4 @@ -package main +package cmd import ( "os" @@ -18,8 +18,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/spf13/cobra" - "github.com/onsonr/sonr/app" - "github.com/onsonr/sonr/app/params" + "github.com/sonr-io/snrd/app" + "github.com/sonr-io/snrd/app/params" ) func NewRootCmd() *cobra.Command { diff --git a/cmd/sonrd/testnet.go b/cmd/testnet.go similarity index 99% rename from cmd/sonrd/testnet.go rename to cmd/testnet.go index 0a86f0411..d8963eb8d 100644 --- a/cmd/sonrd/testnet.go +++ b/cmd/testnet.go @@ -1,4 +1,4 @@ -package main +package cmd // DONTCOVER @@ -39,7 +39,7 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/onsonr/sonr/app" + "github.com/sonr-io/snrd/app" ) var ( diff --git a/devbox.json b/devbox.json new file mode 100644 index 000000000..7827aca2b --- /dev/null +++ b/devbox.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.0/.schema/devbox.schema.json", + "packages": [ + "buf@latest", + "go@latest", + "docker@latest", + "gum@latest", + "go-task@latest", + "goreleaser@latest", + "commitizen@latest", + "doppler@latest" + ], + "env": { + "GOPATH": "$HOME/go", + "PATH": "$PATH:$PWD/bin", + "DOPPLER_TOKEN": "$DOPPLER_SONR_RELEASE_TOKEN" + }, + "shell": { + "scripts": { + "release": [ + "doppler secrets download --no-file --format env > .env", + "task -t .taskfile.dist.yml bump" + ] + } + } +} diff --git a/devbox.lock b/devbox.lock new file mode 100644 index 000000000..c06172c5c --- /dev/null +++ b/devbox.lock @@ -0,0 +1,408 @@ +{ + "lockfile_version": "1", + "packages": { + "buf@latest": { + "last_modified": "2025-03-11T17:52:14Z", + "resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#buf", + "source": "devbox-search", + "version": "1.50.1", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/8ash7kx8qxzc3n93zb6ags6h891zkp12-buf-1.50.1", + "default": true + } + ], + "store_path": "/nix/store/8ash7kx8qxzc3n93zb6ags6h891zkp12-buf-1.50.1" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/s6jn1xafyb1i9cqipc4wyqja8907221x-buf-1.50.1", + "default": true + } + ], + "store_path": "/nix/store/s6jn1xafyb1i9cqipc4wyqja8907221x-buf-1.50.1" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/g4rcy7ynp1hml4kxgg45528b7l12r45z-buf-1.50.1", + "default": true + } + ], + "store_path": "/nix/store/g4rcy7ynp1hml4kxgg45528b7l12r45z-buf-1.50.1" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/m8wma6hcc6j109j4ahczfm00q651jq2s-buf-1.50.1", + "default": true + } + ], + "store_path": "/nix/store/m8wma6hcc6j109j4ahczfm00q651jq2s-buf-1.50.1" + } + } + }, + "commitizen@latest": { + "last_modified": "2025-03-11T17:52:14Z", + "resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#commitizen", + "source": "devbox-search", + "version": "4.4.1", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/c8qs6m6291spkgg0bgf8kxf1i6sg1vn5-python3.12-commitizen-4.4.1", + "default": true + }, + { + "name": "dist", + "path": "/nix/store/fa7lpasw6w0052hzl5nbk0yjb64pjccp-python3.12-commitizen-4.4.1-dist" + } + ], + "store_path": "/nix/store/c8qs6m6291spkgg0bgf8kxf1i6sg1vn5-python3.12-commitizen-4.4.1" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/vmlkahslc4aaazgfzkyymsiylhg1qacb-python3.12-commitizen-4.4.1", + "default": true + }, + { + "name": "dist", + "path": "/nix/store/5p23zkps4pzy0jpykqlgsb1mfrqha1ll-python3.12-commitizen-4.4.1-dist" + } + ], + "store_path": "/nix/store/vmlkahslc4aaazgfzkyymsiylhg1qacb-python3.12-commitizen-4.4.1" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/fdzk9qc2682vl6issnz80h1r515qawak-python3.12-commitizen-4.4.1", + "default": true + }, + { + "name": "dist", + "path": "/nix/store/955gsnjvrx4sxfra8yf31w07lls0agfk-python3.12-commitizen-4.4.1-dist" + } + ], + "store_path": "/nix/store/fdzk9qc2682vl6issnz80h1r515qawak-python3.12-commitizen-4.4.1" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/k6ig9r7v4spsbvc7bz2b2hj5w8kbdvq9-python3.12-commitizen-4.4.1", + "default": true + }, + { + "name": "dist", + "path": "/nix/store/rw7r81lwrj5xadi724s53qgskrvmmnhp-python3.12-commitizen-4.4.1-dist" + } + ], + "store_path": "/nix/store/k6ig9r7v4spsbvc7bz2b2hj5w8kbdvq9-python3.12-commitizen-4.4.1" + } + } + }, + "docker@latest": { + "last_modified": "2025-03-16T16:17:41Z", + "resolved": "github:NixOS/nixpkgs/8f76cf16b17c51ae0cc8e55488069593f6dab645#docker", + "source": "devbox-search", + "version": "27.5.1", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/i9h5shp9wsfg8a1zq77m7sa5ym6gynx7-docker-27.5.1", + "default": true + } + ], + "store_path": "/nix/store/i9h5shp9wsfg8a1zq77m7sa5ym6gynx7-docker-27.5.1" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/rmbzg6a5lg44qyy4ivwyqwzfgg4mwyiy-docker-27.5.1", + "default": true + } + ], + "store_path": "/nix/store/rmbzg6a5lg44qyy4ivwyqwzfgg4mwyiy-docker-27.5.1" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/qfrfjbcvah6p3pnvg297a8agv56prvzs-docker-27.5.1", + "default": true + } + ], + "store_path": "/nix/store/qfrfjbcvah6p3pnvg297a8agv56prvzs-docker-27.5.1" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/5q4lf21k0rwk7i90h4314wdr3nisglqg-docker-27.5.1", + "default": true + } + ], + "store_path": "/nix/store/5q4lf21k0rwk7i90h4314wdr3nisglqg-docker-27.5.1" + } + } + }, + "doppler@latest": { + "last_modified": "2025-03-24T07:07:41Z", + "resolved": "github:NixOS/nixpkgs/1750f3c1c89488e2ffdd47cab9d05454dddfb734#doppler", + "source": "devbox-search", + "version": "3.73.0", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/zn0hhjrpwhz545dgckimsnxw0ffs38lr-doppler-3.73.0", + "default": true + } + ], + "store_path": "/nix/store/zn0hhjrpwhz545dgckimsnxw0ffs38lr-doppler-3.73.0" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/3dj8di7ly0l04nh1rr1yh34bp3gv1n85-doppler-3.73.0", + "default": true + } + ], + "store_path": "/nix/store/3dj8di7ly0l04nh1rr1yh34bp3gv1n85-doppler-3.73.0" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/n6l45p0jj123avjagahwjs9j33ilp03g-doppler-3.73.0", + "default": true + } + ], + "store_path": "/nix/store/n6l45p0jj123avjagahwjs9j33ilp03g-doppler-3.73.0" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/smjlym6qm9kwqkivmr8zn234miv7vh1q-doppler-3.73.0", + "default": true + } + ], + "store_path": "/nix/store/smjlym6qm9kwqkivmr8zn234miv7vh1q-doppler-3.73.0" + } + } + }, + "github:NixOS/nixpkgs/nixpkgs-unstable": { + "resolved": "github:NixOS/nixpkgs/25d1b84f5c90632a623c48d83a2faf156451e6b1?lastModified=1742923925&narHash=sha256-biPjLws6FiBVUUDHEMFq5pUQL84Wf7PntPYdo3oKkFw%3D" + }, + "go-task@latest": { + "last_modified": "2025-03-11T17:52:14Z", + "resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#go-task", + "source": "devbox-search", + "version": "3.41.0", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/kgfbhsp4ixr3kl5m2vhciw8v13czfml6-go-task-3.41.0", + "default": true + } + ], + "store_path": "/nix/store/kgfbhsp4ixr3kl5m2vhciw8v13czfml6-go-task-3.41.0" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/sr9j2rbzia0hq62k5gkwhk0bcmb14ywh-go-task-3.41.0", + "default": true + } + ], + "store_path": "/nix/store/sr9j2rbzia0hq62k5gkwhk0bcmb14ywh-go-task-3.41.0" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/zgj5m7kkmkml6yg3v4xy0m7ln95z03s3-go-task-3.41.0", + "default": true + } + ], + "store_path": "/nix/store/zgj5m7kkmkml6yg3v4xy0m7ln95z03s3-go-task-3.41.0" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/5q8536rllwzmf8gf6h0jw678pxy7ndbx-go-task-3.41.0", + "default": true + } + ], + "store_path": "/nix/store/5q8536rllwzmf8gf6h0jw678pxy7ndbx-go-task-3.41.0" + } + } + }, + "go@latest": { + "last_modified": "2025-03-11T17:52:14Z", + "resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#go", + "source": "devbox-search", + "version": "1.24.1", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/ja4jxx60lh1qfqfl4z4p2rff56ia1c3c-go-1.24.1", + "default": true + } + ], + "store_path": "/nix/store/ja4jxx60lh1qfqfl4z4p2rff56ia1c3c-go-1.24.1" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/8ply43gnxk1xwichr81mpgbjcd9a1y5w-go-1.24.1", + "default": true + } + ], + "store_path": "/nix/store/8ply43gnxk1xwichr81mpgbjcd9a1y5w-go-1.24.1" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/87yxrfx5lh78bdz393i33cr5z23x06q4-go-1.24.1", + "default": true + } + ], + "store_path": "/nix/store/87yxrfx5lh78bdz393i33cr5z23x06q4-go-1.24.1" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/cfjhl0kn7xc65466pha9fkrvigw3g72n-go-1.24.1", + "default": true + } + ], + "store_path": "/nix/store/cfjhl0kn7xc65466pha9fkrvigw3g72n-go-1.24.1" + } + } + }, + "goreleaser@latest": { + "last_modified": "2025-03-21T08:42:37Z", + "resolved": "github:NixOS/nixpkgs/bfa9810ff7104a17555ab68ebdeafb6705f129b1#goreleaser", + "source": "devbox-search", + "version": "2.8.1", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/v7qnqs17cdszl6mkw39mpk8ww0b70gbw-goreleaser-2.8.1", + "default": true + } + ], + "store_path": "/nix/store/v7qnqs17cdszl6mkw39mpk8ww0b70gbw-goreleaser-2.8.1" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/6z2mvd1b1g9nqnw0fsdcq786ik99888b-goreleaser-2.8.1", + "default": true + } + ], + "store_path": "/nix/store/6z2mvd1b1g9nqnw0fsdcq786ik99888b-goreleaser-2.8.1" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/nz3y3dyv5n1jrbirbxp578jambyl53wm-goreleaser-2.8.1", + "default": true + } + ], + "store_path": "/nix/store/nz3y3dyv5n1jrbirbxp578jambyl53wm-goreleaser-2.8.1" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/xbcigyqhs33mzg1hqy8i8chj7v5v2x2z-goreleaser-2.8.1", + "default": true + } + ], + "store_path": "/nix/store/xbcigyqhs33mzg1hqy8i8chj7v5v2x2z-goreleaser-2.8.1" + } + } + }, + "gum@latest": { + "last_modified": "2025-03-13T11:38:39Z", + "resolved": "github:NixOS/nixpkgs/573c650e8a14b2faa0041645ab18aed7e60f0c9a#gum", + "source": "devbox-search", + "version": "0.16.0", + "systems": { + "aarch64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/kwkfj9ifihlfzv7damvf0x42w1l904ld-gum-0.16.0", + "default": true + } + ], + "store_path": "/nix/store/kwkfj9ifihlfzv7damvf0x42w1l904ld-gum-0.16.0" + }, + "aarch64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/fflgnfjyizrfp3kb9kg1rb13zh8iqgpa-gum-0.16.0", + "default": true + } + ], + "store_path": "/nix/store/fflgnfjyizrfp3kb9kg1rb13zh8iqgpa-gum-0.16.0" + }, + "x86_64-darwin": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/854g6bmylzpaz7s1xdccfq9x2xkx6fcc-gum-0.16.0", + "default": true + } + ], + "store_path": "/nix/store/854g6bmylzpaz7s1xdccfq9x2xkx6fcc-gum-0.16.0" + }, + "x86_64-linux": { + "outputs": [ + { + "name": "out", + "path": "/nix/store/hn1dl52063dlljmzjlx0cw1f59yk5r2n-gum-0.16.0", + "default": true + } + ], + "store_path": "/nix/store/hn1dl52063dlljmzjlx0cw1f59yk5r2n-gum-0.16.0" + } + } + } + } +} diff --git a/go.mod b/go.mod index 1b43308ee..1354f0c47 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module github.com/onsonr/sonr +module github.com/sonr-io/snrd -go 1.23.4 +go 1.24.1 // overrides replace ( @@ -8,8 +8,8 @@ replace ( github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.18.0 - github.com/prometheus/common => github.com/prometheus/common v0.47.0 + github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.20.1 + github.com/prometheus/common => github.com/prometheus/common v0.55.0 github.com/spf13/viper => github.com/spf13/viper v1.17.0 // v1.18+ breaks app overrides github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7 ) @@ -32,35 +32,35 @@ require ( cosmossdk.io/client/v2 v2.0.0-beta.1 cosmossdk.io/collections v0.4.0 cosmossdk.io/core v0.12.0 - cosmossdk.io/depinject v1.0.0-alpha.4 + cosmossdk.io/depinject v1.1.0 cosmossdk.io/errors v1.0.1 - cosmossdk.io/log v1.3.1 - cosmossdk.io/math v1.3.0 + cosmossdk.io/log v1.4.1 + cosmossdk.io/math v1.4.0 cosmossdk.io/orm v1.0.0-beta.3 - cosmossdk.io/store v1.1.0 + cosmossdk.io/store v1.1.1 cosmossdk.io/tools/confix v0.1.1 cosmossdk.io/x/circuit v0.1.0 cosmossdk.io/x/evidence v0.1.0 cosmossdk.io/x/feegrant v0.1.0 cosmossdk.io/x/nft v0.1.0 - cosmossdk.io/x/tx v0.13.5 + cosmossdk.io/x/tx v0.13.7 cosmossdk.io/x/upgrade v0.1.1 github.com/btcsuite/btcd/btcec/v2 v2.3.4 github.com/cometbft/cometbft v0.38.12 github.com/cosmos/cosmos-db v1.1.1 github.com/cosmos/cosmos-proto v1.0.0-beta.5 - github.com/cosmos/cosmos-sdk v0.50.5 + github.com/cosmos/cosmos-sdk v0.50.13 github.com/cosmos/gogoproto v1.7.0 github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2 - github.com/cosmos/ibc-go/modules/capability v1.0.0 + // github.com/cosmos/ibc-go/modules/capability v1.0.0 github.com/cosmos/ibc-go/v8 v8.2.0 - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 github.com/golang/protobuf v1.5.4 github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/ipfs/boxo v0.26.0 github.com/joho/godotenv v1.5.1 - github.com/libp2p/go-libp2p v0.38.1 + github.com/libp2p/go-libp2p v0.41.0 github.com/multiformats/go-multibase v0.2.0 github.com/multiformats/go-multicodec v0.9.0 github.com/multiformats/go-varint v0.0.7 @@ -75,9 +75,11 @@ require ( github.com/stretchr/testify v1.10.0 google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 google.golang.org/grpc v1.67.1 - google.golang.org/protobuf v1.36.0 + google.golang.org/protobuf v1.36.5 ) +require github.com/cosmos/ibc-go/modules/capability v1.0.0 + require ( cloud.google.com/go v0.112.1 // indirect cloud.google.com/go/compute/metadata v0.5.0 // indirect @@ -94,7 +96,7 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect - github.com/bits-and-blooms/bitset v1.19.1 // indirect + github.com/bits-and-blooms/bitset v1.20.0 // indirect github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect github.com/cenkalti/backoff/v4 v4.3.0 // indirect github.com/cespare/xxhash v1.1.0 // indirect @@ -111,22 +113,21 @@ require ( github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect github.com/cosmos/gogogateway v1.2.0 // indirect - github.com/cosmos/iavl v1.1.2 // indirect - github.com/cosmos/ics23/go v0.10.0 // indirect - github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect + github.com/cosmos/iavl v1.2.2 // indirect + github.com/cosmos/ics23/go v0.11.0 // indirect + github.com/cosmos/ledger-cosmos-go v0.14.0 // indirect github.com/crackcomm/go-gitignore v0.0.0-20241020182519-7843d2ba8fdf // indirect github.com/creachadair/atomicfile v0.3.1 // indirect github.com/creachadair/tomledit v0.0.24 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect - github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect github.com/dgraph-io/ristretto v0.1.1 // indirect github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect github.com/dustin/go-humanize v1.0.1 // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect - github.com/emicklei/dot v1.6.1 // indirect + github.com/emicklei/dot v1.6.2 // indirect github.com/fatih/color v1.16.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.7.0 // indirect @@ -174,7 +175,7 @@ require ( github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/jmhodges/levigo v1.0.0 // indirect - github.com/klauspost/compress v1.17.11 // indirect + github.com/klauspost/compress v1.18.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/lib/pq v1.10.7 // indirect @@ -191,6 +192,7 @@ require ( github.com/mtibben/percent v0.2.1 // indirect github.com/multiformats/go-base32 v0.1.0 // indirect github.com/multiformats/go-base36 v0.2.0 // indirect + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect github.com/oklog/run v1.1.0 // indirect github.com/onsi/ginkgo v1.16.5 // indirect @@ -199,14 +201,14 @@ require ( github.com/petermattis/goid v0.0.0-20231207134359-e60b3f734c67 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - github.com/prometheus/client_golang v1.20.5 // indirect + github.com/prometheus/client_golang v1.21.0 // indirect github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.61.0 // indirect + github.com/prometheus/common v0.62.0 // indirect github.com/prometheus/procfs v0.15.1 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/rogpeppe/go-internal v1.13.1 // indirect github.com/rs/cors v1.11.1 // indirect - github.com/rs/zerolog v1.32.0 // indirect + github.com/rs/zerolog v1.33.0 // indirect github.com/sagikazarmark/locafero v0.4.0 // indirect github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect @@ -229,14 +231,14 @@ require ( go.opentelemetry.io/otel/metric v1.31.0 // indirect go.opentelemetry.io/otel/trace v1.31.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/crypto v0.31.0 // indirect - golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect - golang.org/x/net v0.33.0 // indirect + golang.org/x/crypto v0.36.0 // indirect + golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect + golang.org/x/net v0.35.0 // indirect golang.org/x/oauth2 v0.24.0 // indirect - golang.org/x/sync v0.10.0 // indirect - golang.org/x/sys v0.28.0 // indirect - golang.org/x/term v0.27.0 // indirect - golang.org/x/text v0.21.0 // indirect + golang.org/x/sync v0.12.0 // indirect + golang.org/x/sys v0.31.0 // indirect + golang.org/x/term v0.30.0 // indirect + golang.org/x/text v0.23.0 // indirect golang.org/x/time v0.8.0 // indirect google.golang.org/api v0.172.0 // indirect google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect diff --git a/go.sum b/go.sum index 63af09cd4..1dae441d5 100644 --- a/go.sum +++ b/go.sum @@ -217,6 +217,7 @@ cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZ cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/compute/metadata v0.3.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.5.0 h1:Zr0eK8JbFv6+Wi4ilXAR8FJ3wyNdpxHKJNPos6LTZOY= cloud.google.com/go/compute/metadata v0.5.0/go.mod h1:aHnloV2TPI38yx4s9+wAZhHykWvVCfu7hQbF+9CWoiY= cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= @@ -770,18 +771,18 @@ cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= cosmossdk.io/core v0.11.0/go.mod h1:LaTtayWBSoacF5xNzoF8tmLhehqlA9z1SWiPuNC6X1w= -cosmossdk.io/depinject v1.0.0-alpha.4 h1:PLNp8ZYAMPTUKyG9IK2hsbciDWqna2z1Wsl98okJopc= -cosmossdk.io/depinject v1.0.0-alpha.4/go.mod h1:HeDk7IkR5ckZ3lMGs/o91AVUc7E596vMaOmslGFM3yU= +cosmossdk.io/depinject v1.1.0 h1:wLan7LG35VM7Yo6ov0jId3RHWCGRhe8E8bsuARorl5E= +cosmossdk.io/depinject v1.1.0/go.mod h1:kkI5H9jCGHeKeYWXTqYdruogYrEeWvBQCw1Pj4/eCFI= cosmossdk.io/errors v1.0.1 h1:bzu+Kcr0kS/1DuPBtUFdWjzLqyUuCiyHjyJB6srBV/0= cosmossdk.io/errors v1.0.1/go.mod h1:MeelVSZThMi4bEakzhhhE/CKqVv3nOJDA25bIqRDu/U= -cosmossdk.io/log v1.3.1 h1:UZx8nWIkfbbNEWusZqzAx3ZGvu54TZacWib3EzUYmGI= -cosmossdk.io/log v1.3.1/go.mod h1:2/dIomt8mKdk6vl3OWJcPk2be3pGOS8OQaLUM/3/tCM= -cosmossdk.io/math v1.3.0 h1:RC+jryuKeytIiictDslBP9i1fhkVm6ZDmZEoNP316zE= -cosmossdk.io/math v1.3.0/go.mod h1:vnRTxewy+M7BtXBNFybkuhSH4WfedVAAnERHgVFhp3k= +cosmossdk.io/log v1.4.1 h1:wKdjfDRbDyZRuWa8M+9nuvpVYxrEOwbD/CA8hvhU8QM= +cosmossdk.io/log v1.4.1/go.mod h1:k08v0Pyq+gCP6phvdI6RCGhLf/r425UT6Rk/m+o74rU= +cosmossdk.io/math v1.4.0 h1:XbgExXFnXmF/CccPPEto40gOO7FpWu9yWNAZPN3nkNQ= +cosmossdk.io/math v1.4.0/go.mod h1:O5PkD4apz2jZs4zqFdTr16e1dcaQCc5z6lkEnrrppuk= cosmossdk.io/orm v1.0.0-beta.3 h1:XmffCwsIZE+y0sS4kEfRUfIgvJfGGn3HFKntZ91sWcU= cosmossdk.io/orm v1.0.0-beta.3/go.mod h1:KSH9lKA+0K++2OKECWwPAasKbUIEtZ7xYG+0ikChiyU= -cosmossdk.io/store v1.1.0 h1:LnKwgYMc9BInn9PhpTFEQVbL9UK475G2H911CGGnWHk= -cosmossdk.io/store v1.1.0/go.mod h1:oZfW/4Fc/zYqu3JmQcQdUJ3fqu5vnYTn3LZFFy8P8ng= +cosmossdk.io/store v1.1.1 h1:NA3PioJtWDVU7cHHeyvdva5J/ggyLDkyH0hGHl2804Y= +cosmossdk.io/store v1.1.1/go.mod h1:8DwVTz83/2PSI366FERGbWSH7hL6sB7HbYp8bqksNwM= cosmossdk.io/tools/confix v0.1.1 h1:aexyRv9+y15veH3Qw16lxQwo+ki7r2I+g0yNTEFEQM8= cosmossdk.io/tools/confix v0.1.1/go.mod h1:nQVvP1tHsGXS83PonPVWJtSbddIqyjEw99L4M3rPJyQ= cosmossdk.io/x/circuit v0.1.0 h1:IAej8aRYeuOMritczqTlljbUVHq1E85CpBqaCTwYgXs= @@ -792,8 +793,8 @@ cosmossdk.io/x/feegrant v0.1.0 h1:c7s3oAq/8/UO0EiN1H5BIjwVntujVTkYs35YPvvrdQk= cosmossdk.io/x/feegrant v0.1.0/go.mod h1:4r+FsViJRpcZif/yhTn+E0E6OFfg4n0Lx+6cCtnZElU= cosmossdk.io/x/nft v0.1.0 h1:VhcsFiEK33ODN27kxKLa0r/CeFd8laBfbDBwYqCyYCM= cosmossdk.io/x/nft v0.1.0/go.mod h1:ec4j4QAO4mJZ+45jeYRnW7awLHby1JZANqe1hNZ4S3g= -cosmossdk.io/x/tx v0.13.5 h1:FdnU+MdmFWn1pTsbfU0OCf2u6mJ8cqc1H4OMG418MLw= -cosmossdk.io/x/tx v0.13.5/go.mod h1:V6DImnwJMTq5qFjeGWpXNiT/fjgE4HtmclRmTqRVM3w= +cosmossdk.io/x/tx v0.13.7 h1:8WSk6B/OHJLYjiZeMKhq7DK7lHDMyK0UfDbBMxVmeOI= +cosmossdk.io/x/tx v0.13.7/go.mod h1:V6DImnwJMTq5qFjeGWpXNiT/fjgE4HtmclRmTqRVM3w= cosmossdk.io/x/upgrade v0.1.1 h1:aoPe2gNvH+Gwt/Pgq3dOxxQVU3j5P6Xf+DaUJTDZATc= cosmossdk.io/x/upgrade v0.1.1/go.mod h1:MNLptLPcIFK9CWt7Ra//8WUZAxweyRDNcbs5nkOcQy0= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= @@ -858,8 +859,8 @@ github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2gVpmOtVTJZNodLdLQLn/KsJqFvXwnd/s= github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bits-and-blooms/bitset v1.19.1 h1:mv2yVhy96D2CuskLPXnc58oJNMs5PCWjAZuyYU0p12M= -github.com/bits-and-blooms/bitset v1.19.1/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3MdfoPyRVU= +github.com/bits-and-blooms/bitset v1.20.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ= @@ -945,8 +946,8 @@ github.com/cosmos/cosmos-db v1.1.1 h1:FezFSU37AlBC8S98NlSagL76oqBRWq/prTPvFcEJNC github.com/cosmos/cosmos-db v1.1.1/go.mod h1:AghjcIPqdhSLP/2Z0yha5xPH3nLnskz81pBx3tcVSAw= github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA= github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec= -github.com/cosmos/cosmos-sdk v0.50.5 h1:MOEi+DKYgW67YaPgB+Pf+nHbD3V9S/ayitRKJYLfGIA= -github.com/cosmos/cosmos-sdk v0.50.5/go.mod h1:oV/k6GJgXV9QPoM2fsYDPPsyPBgQbdotv532O6Mz1OQ= +github.com/cosmos/cosmos-sdk v0.50.13 h1:xQ32hhzVy7agEe7behMdZN0ezWhPss3KoLZsF9KoBnw= +github.com/cosmos/cosmos-sdk v0.50.13/go.mod h1:hrWEFMU1eoXqLJeE6VVESpJDQH67FS1nnMrQIjO2daw= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= @@ -954,20 +955,20 @@ github.com/cosmos/gogogateway v1.2.0/go.mod h1:iQpLkGWxYcnCdz5iAdLcRBSw3h7NXeOkZ github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU= github.com/cosmos/gogoproto v1.7.0 h1:79USr0oyXAbxg3rspGh/m4SWNyoz/GLaAh0QlCe2fro= github.com/cosmos/gogoproto v1.7.0/go.mod h1:yWChEv5IUEYURQasfyBW5ffkMHR/90hiHgbNgrtp4j0= -github.com/cosmos/iavl v1.1.2 h1:zL9FK7C4L/P4IF1Dm5fIwz0WXCnn7Bp1M2FxH0ayM7Y= -github.com/cosmos/iavl v1.1.2/go.mod h1:jLeUvm6bGT1YutCaL2fIar/8vGUE8cPZvh/gXEWDaDM= +github.com/cosmos/iavl v1.2.2 h1:qHhKW3I70w+04g5KdsdVSHRbFLgt3yY3qTMd4Xa4rC8= +github.com/cosmos/iavl v1.2.2/go.mod h1:GiM43q0pB+uG53mLxLDzimxM9l/5N9UuSY3/D0huuVw= github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2 h1:dyLNlDElY6+5zW/BT/dO/3Ad9FpQblfh+9dQpYQodbA= github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2/go.mod h1:82hPO/tRawbuFad2gPwChvpZ0JEIoNi91LwVneAYCeM= github.com/cosmos/ibc-go/modules/capability v1.0.0 h1:r/l++byFtn7jHYa09zlAdSeevo8ci1mVZNO9+V0xsLE= github.com/cosmos/ibc-go/modules/capability v1.0.0/go.mod h1:D81ZxzjZAe0ZO5ambnvn1qedsFQ8lOwtqicG6liLBco= github.com/cosmos/ibc-go/v8 v8.2.0 h1:7oCzyy1sZCcgpeQLnHxC56brsSz3KWwQGKXalXwXFzE= github.com/cosmos/ibc-go/v8 v8.2.0/go.mod h1:wj3qx75iC/XNnsMqbPDCIGs0G6Y3E/lo3bdqCyoCy+8= -github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= -github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= +github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU= +github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0= github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo= github.com/cosmos/keyring v1.2.0/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA= -github.com/cosmos/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM= -github.com/cosmos/ledger-cosmos-go v0.13.3/go.mod h1:HENcEP+VtahZFw38HZ3+LS3Iv5XV6svsnkk9vdJtLr8= +github.com/cosmos/ledger-cosmos-go v0.14.0 h1:WfCHricT3rPbkPSVKRH+L4fQGKYHuGOK9Edpel8TYpE= +github.com/cosmos/ledger-cosmos-go v0.14.0/go.mod h1:E07xCWSBl3mTGofZ2QnL4cIUzMbbGVyik84QYKbX3RA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/crackcomm/go-gitignore v0.0.0-20241020182519-7843d2ba8fdf h1:dwGgBWn84wUS1pVikGiruW+x5XM4amhjaZO20vCjay4= @@ -989,8 +990,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/decred/dcrd/crypto/blake256 v1.1.0 h1:zPMNGQCm0g4QTY27fOCorQW7EryeQ/U0x++OzVrdms8= github.com/decred/dcrd/crypto/blake256 v1.1.0/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 h1:rpfIENRNNilwHwZeG5+P150SMrnNEcHYvcCuK6dPZSg= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 h1:NMZiJj8QnKe1LgsbDayM4UoHwbvwDRwnI3hwNaAHRnc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0/go.mod h1:ZXNYxsqcloTdSy/rNShjYzMhyjf0LaoftYK0p+A3h40= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe7Z5G/twsBW0KEalRQXZzf8ufSh9I= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f/go.mod h1:xH/i4TFMt8koVQZ6WFms69WAsDWr2XsYL3Hkl7jkoLE= github.com/dgraph-io/badger/v2 v2.2007.4 h1:TRWBQg8UrlUhaFdco01nO2uXwzKS7zd+HVdwV/GHc4o= @@ -1013,8 +1014,8 @@ github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkp github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dvsekhvalnov/jose2go v1.6.0 h1:Y9gnSnP4qEI0+/uQkHvFXeD2PLPJeXEL+ySMEA2EjTY= github.com/dvsekhvalnov/jose2go v1.6.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= -github.com/emicklei/dot v1.6.1 h1:ujpDlBkkwgWUY+qPId5IwapRW/xEoligRSYjioR6DFI= -github.com/emicklei/dot v1.6.1/go.mod h1:DeV7GvQtIw4h2u73RKBkkFdvVAz0D9fzeJrgPW6gy/s= +github.com/emicklei/dot v1.6.2 h1:08GN+DD79cy/tzN6uLCT84+2Wk9u+wvqP+Hkx/dIR8A= +github.com/emicklei/dot v1.6.2/go.mod h1:DeV7GvQtIw4h2u73RKBkkFdvVAz0D9fzeJrgPW6gy/s= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= @@ -1337,8 +1338,8 @@ github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2 github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/ipfs/boxo v0.26.0 h1:RRxEon7rJMy8ScVaTLncSZ5/nA6majYhRSbzc80snO8= github.com/ipfs/boxo v0.26.0/go.mod h1:iHyc9cjoF7/zoiKVY65d2fBWRhoS2zx4cMk8hKgqrac= -github.com/ipfs/go-cid v0.4.1 h1:A/T3qGvxi4kpKWWcPC/PgbvDA2bjVLO7n4UeVwnbs/s= -github.com/ipfs/go-cid v0.4.1/go.mod h1:uQHwDeX4c6CtyrFwdqyhpNcxVewur1M7l7fNU7LKwZk= +github.com/ipfs/go-cid v0.5.0 h1:goEKKhaGm0ul11IHA7I6p1GmKz8kEYniqFopaB5Otwg= +github.com/ipfs/go-cid v0.5.0/go.mod h1:0L7vmeNXpQpUS9vt+yEARkJ8rOg43DF3iPgn4GIN0mk= github.com/jhump/protoreflect v1.15.3 h1:6SFRuqU45u9hIZPJAoZ8c28T3nK64BNdp9w6jFonzls= github.com/jhump/protoreflect v1.15.3/go.mod h1:4ORHmSBmlCW8fh3xHmJMGyul1zNqZK4Elxc8qKP+p1k= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= @@ -1368,11 +1369,12 @@ github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHU github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= github.com/klauspost/compress v1.16.5/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/klauspost/compress v1.17.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= -github.com/klauspost/compress v1.17.11 h1:In6xLpyWOi1+C7tXUUWv2ot1QvBjxevKAaI6IXrJmUc= -github.com/klauspost/compress v1.17.11/go.mod h1:pMDklpSncoRMuLFrf1W9Ss9KT+0rH90U12bZKk7uwG0= +github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo= +github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.2.9 h1:66ze0taIn2H33fBvCkXuv9BmCwDfafmiIVpKV9kKGuY= -github.com/klauspost/cpuid/v2 v2.2.9/go.mod h1:rqkxqrZ1EhYM9G+hXH7YdowN5R5RGN6NK4QwQ3WMXF8= +github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE= +github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= @@ -1385,13 +1387,15 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= -github.com/libp2p/go-libp2p v0.38.1 h1:aT1K7IFWi+gZUsQGCzTHBTlKX5QVZQOahng8DnOr6tQ= -github.com/libp2p/go-libp2p v0.38.1/go.mod h1:QWV4zGL3O9nXKdHirIC59DoRcZ446dfkjbOJ55NEWFo= +github.com/libp2p/go-libp2p v0.41.0 h1:JRaD39dqf/tBBGapJ0T38N73vOaDCsWgcx3mE6HgXWk= +github.com/libp2p/go-libp2p v0.41.0/go.mod h1:Be8QYqC4JW6Xq8buukNeoZJjyT1XUDcGoIooCHm1ye4= github.com/linxGnu/grocksdb v1.8.14 h1:HTgyYalNwBSG/1qCQUIott44wU5b2Y9Kr3z7SK5OfGQ= github.com/linxGnu/grocksdb v1.8.14/go.mod h1:QYiYypR2d4v63Wj1adOOfzglnoII0gLj3PNh4fZkcFA= github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= @@ -1424,7 +1428,6 @@ github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= @@ -1456,8 +1459,8 @@ github.com/multiformats/go-base32 v0.1.0 h1:pVx9xoSPqEIQG8o+UbAe7DNi51oej1NtK+aG github.com/multiformats/go-base32 v0.1.0/go.mod h1:Kj3tFY6zNr+ABYMqeUNeGvkIC/UYgtWibDcT0rExnbI= github.com/multiformats/go-base36 v0.2.0 h1:lFsAbNOGeKtuKozrtBsAkSVhv1p9D0/qedU9rQyccr0= github.com/multiformats/go-base36 v0.2.0/go.mod h1:qvnKE++v+2MWCfePClUEjE78Z7P2a1UV0xHgWc0hkp4= -github.com/multiformats/go-multiaddr v0.14.0 h1:bfrHrJhrRuh/NXH5mCnemjpbGjzRw/b+tJFOD41g2tU= -github.com/multiformats/go-multiaddr v0.14.0/go.mod h1:6EkVAxtznq2yC3QT5CM1UTAwG0GTP3EWAIcjHuzQ+r4= +github.com/multiformats/go-multiaddr v0.15.0 h1:zB/HeaI/apcZiTDwhY5YqMvNVl/oQYvs3XySU+qeAVo= +github.com/multiformats/go-multiaddr v0.15.0/go.mod h1:JSVUmXDjsVFiW7RjIFMP7+Ev+h1DTbiJgVeTV/tcmP0= github.com/multiformats/go-multibase v0.2.0 h1:isdYCVLvksgWlMW9OZRYJEa9pZETFivncJHmHnnd87g= github.com/multiformats/go-multibase v0.2.0/go.mod h1:bFBZX4lKCA/2lyOFSAoKH5SS6oPyjtnzK/XTFDPkNuk= github.com/multiformats/go-multicodec v0.9.0 h1:pb/dlPnzee/Sxv/j4PmkDRxCOi3hXTz3IbPKOXWJkmg= @@ -1466,6 +1469,8 @@ github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7B github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8= github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76/go.mod h1:x5OoJHDHqxHS801UIuhqGl6QdSAEJvtausosHSdazIo= @@ -1534,20 +1539,18 @@ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= -github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk= -github.com/prometheus/client_golang v1.18.0/go.mod h1:T+GXkCk5wSJyOqMIzVgvvjFDlkOQntgjkJWKrN5txjA= +github.com/prometheus/client_golang v1.20.1 h1:IMJXHOD6eARkQpxo8KkhgEVFlBNm+nkrFUyGlIu7Na8= +github.com/prometheus/client_golang v1.20.1/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= -github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= -github.com/prometheus/common v0.47.0 h1:p5Cz0FNHo7SnWOmWmoRozVcjEp0bIVU8cV7OShpjL1k= -github.com/prometheus/common v0.47.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= +github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc= +github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8= github.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= @@ -1570,8 +1573,8 @@ github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= github.com/rs/cors v1.11.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.32.0 h1:keLypqrlIjaFsbmJOBdB/qvyF8KEtCWHwobLp5l/mQ0= -github.com/rs/zerolog v1.32.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss= +github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8= +github.com/rs/zerolog v1.33.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= @@ -1745,10 +1748,11 @@ golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45 golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= -golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= -golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= +golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= +golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34= +golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1767,8 +1771,8 @@ golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8H golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= -golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 h1:1UoZQm6f0P/ZO0w1Ri+f+ifG/gXhegadRdwBIXEFWDo= -golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c= +golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa h1:t2QcU6V556bFjYgu4L6C+6VrCPyJZ+eyRsABUPs1mz4= +golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa/go.mod h1:BHOTPb3L19zxehTsLoJXVaTktb06DFgmdW6Wb9s8jqk= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -1815,6 +1819,8 @@ golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1887,10 +1893,11 @@ golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= golang.org/x/net v0.13.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= -golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I= -golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= +golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= +golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8= +golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1924,7 +1931,7 @@ golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4 golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI= golang.org/x/oauth2 v0.12.0/go.mod h1:A74bZ3aGXgCY0qaIC9Ahg6Lglin4AMAco8cIv9baba4= -golang.org/x/oauth2 v0.16.0/go.mod h1:hqZ+0LWXsiVoZpeld6jVt06P3adbS2Uu911W1SsJv2o= +golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE= golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1945,8 +1952,10 @@ golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= -golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw= +golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2060,11 +2069,13 @@ golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= -golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik= +golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -2079,10 +2090,11 @@ golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= -golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= -golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY= +golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0= +golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y= +golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2104,8 +2116,10 @@ golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= -golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= +golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY= +golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -2185,6 +2199,7 @@ golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -2523,9 +2538,10 @@ google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= -google.golang.org/protobuf v1.36.0 h1:mjIs9gYtt56AzC4ZaffQuh88TZurBGhIJMBZGSxNerQ= -google.golang.org/protobuf v1.36.0/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= +google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM= +google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -2560,8 +2576,8 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/blake3 v1.3.0 h1:sJ3XhFINmHSrYCgl958hscfIa3bw8x4DqMP3u1YvoYE= -lukechampine.com/blake3 v1.3.0/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= +lukechampine.com/blake3 v1.4.0 h1:xDbKOZCVbnZsfzM6mHSYcGRHZ3YrLDzqz8XnV4uaD5w= +lukechampine.com/blake3 v1.4.0/go.mod h1:MQJNQCTnR+kwOP/JEZSxj3MaQjp80FOFSNMMHXcSeX0= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= diff --git a/internal/accounts/api_builder.go b/internal/accounts/api_builder.go index b799d24b1..7525f49f9 100644 --- a/internal/accounts/api_builder.go +++ b/internal/accounts/api_builder.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/transaction" ) var ( diff --git a/internal/accounts/context.go b/internal/accounts/context.go index 2586b6e04..5347041dd 100644 --- a/internal/accounts/context.go +++ b/internal/accounts/context.go @@ -8,8 +8,8 @@ import ( "cosmossdk.io/core/store" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/onsonr/sonr/internal/prefixstore" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/prefixstore" + "github.com/sonr-io/snrd/internal/transaction" ) var AccountStatePrefix = collections.NewPrefix(255) diff --git a/internal/accounts/encoding.go b/internal/accounts/encoding.go index 78af65fee..4baaa8aec 100644 --- a/internal/accounts/encoding.go +++ b/internal/accounts/encoding.go @@ -8,7 +8,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/gogoproto/proto" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/transaction" ) // ProtoMsgG is a generic interface for protobuf messages. diff --git a/internal/accounts/implementation.go b/internal/accounts/implementation.go index 41f1de6b6..e904e2162 100644 --- a/internal/accounts/implementation.go +++ b/internal/accounts/implementation.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" gogoproto "github.com/cosmos/gogoproto/proto" - "github.com/onsonr/sonr/internal/appmodule" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/appmodule" + "github.com/sonr-io/snrd/internal/transaction" ) // Dependencies are passed to the constructor of a smart account. diff --git a/internal/accounts/protoaccount.go b/internal/accounts/protoaccount.go index ee947d4ee..a6b2791cc 100644 --- a/internal/accounts/protoaccount.go +++ b/internal/accounts/protoaccount.go @@ -6,7 +6,7 @@ import ( "google.golang.org/protobuf/proto" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/transaction" ) // RegisterInitHandler registers an initialisation handler for a smart account that uses protobuf. diff --git a/internal/appmodule/environment.go b/internal/appmodule/environment.go index 6e1ac5819..1420bbe01 100644 --- a/internal/appmodule/environment.go +++ b/internal/appmodule/environment.go @@ -6,10 +6,10 @@ import ( "cosmossdk.io/core/header" "cosmossdk.io/core/store" - "github.com/onsonr/sonr/internal/branch" - "github.com/onsonr/sonr/internal/log" - "github.com/onsonr/sonr/internal/router" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/branch" + "github.com/sonr-io/snrd/internal/log" + "github.com/sonr-io/snrd/internal/router" + "github.com/sonr-io/snrd/internal/transaction" ) // Environment is used to get all services to their respective module. diff --git a/internal/didcrypto/crypto_test.go b/internal/didcrypto/crypto_test.go deleted file mode 100644 index f6a87e0c0..000000000 --- a/internal/didcrypto/crypto_test.go +++ /dev/null @@ -1,108 +0,0 @@ -package crypto_test - -import ( - "crypto/elliptic" - "crypto/rand" - "testing" - - "github.com/decred/dcrd/dcrec/secp256k1/v4" - libp2p_crypto "github.com/libp2p/go-libp2p/core/crypto" - "github.com/libp2p/go-libp2p/core/crypto/pb" - "github.com/multiformats/go-multicodec" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/onsonr/sonr/internal/didcrypto" -) - -const ( - exampleDIDStr = "did:key:z6MkhaXgBZDvotDkL5257faiztiGiC2QtKLGpbnnEGta2doK" - examplePubKeyStr = "Lm/M42cB3HkUiODQsXRcweM6TByfzEHGO9ND274JcOY=" -) - -func TestFromPubKey(t *testing.T) { - t.Parallel() - - _, ecdsaP256, err := libp2p_crypto.GenerateECDSAKeyPairWithCurve(elliptic.P256(), rand.Reader) - require.NoError(t, err) - _, ecdsaP384, err := libp2p_crypto.GenerateECDSAKeyPairWithCurve(elliptic.P384(), rand.Reader) - require.NoError(t, err) - _, ecdsaP521, err := libp2p_crypto.GenerateECDSAKeyPairWithCurve(elliptic.P521(), rand.Reader) - require.NoError(t, err) - _, ecdsaSecp256k1, err := libp2p_crypto.GenerateECDSAKeyPairWithCurve(secp256k1.S256(), rand.Reader) - require.NoError(t, err) - _, ed25519, err := libp2p_crypto.GenerateEd25519Key(rand.Reader) - require.NoError(t, err) - _, rsa, err := libp2p_crypto.GenerateRSAKeyPair(2048, rand.Reader) - require.NoError(t, err) - _, secp256k1PubKey1, err := libp2p_crypto.GenerateSecp256k1Key(rand.Reader) - require.NoError(t, err) - - test := func(pub libp2p_crypto.PubKey, code multicodec.Code) func(t *testing.T) { - t.Helper() - - return func(t *testing.T) { - t.Parallel() - - id, err := crypto.FromPubKey(pub) - require.NoError(t, err) - p, err := id.PubKey() - require.NoError(t, err) - assert.Equal(t, pub, p) - } - } - - t.Run("ECDSA with P256 curve", test(ecdsaP256, crypto.P256)) - t.Run("ECDSA with P384 curve", test(ecdsaP384, crypto.P384)) - t.Run("ECDSA with P521 curve", test(ecdsaP521, crypto.P521)) - t.Run("Ed25519", test(ed25519, crypto.Ed25519)) - t.Run("RSA", test(rsa, crypto.RSA)) - t.Run("secp256k1", test(secp256k1PubKey1, crypto.Secp256k1)) - - t.Run("ECDSA with secp256k1 curve (coerced)", func(t *testing.T) { - t.Parallel() - - id, err := crypto.FromPubKey(ecdsaSecp256k1) - require.NoError(t, err) - p, err := id.PubKey() - require.NoError(t, err) - require.Equal(t, pb.KeyType_Secp256k1, p.Type()) - }) - - t.Run("unmarshaled example key (secp256k1)", func(t *testing.T) { - t.Parallel() - - id, err := crypto.FromPubKey(examplePubKey(t)) - require.NoError(t, err) - require.Equal(t, exampleDID(t), id) - }) -} - -func TestToPubKey(t *testing.T) { - t.Parallel() - - pubKey, err := crypto.ToPubKey(exampleDIDStr) - require.NoError(t, err) - require.Equal(t, examplePubKey(t), pubKey) -} - -func exampleDID(t *testing.T) crypto.DID { - t.Helper() - - id, err := crypto.Parse(exampleDIDStr) - require.NoError(t, err) - - return id -} - -func examplePubKey(t *testing.T) libp2p_crypto.PubKey { - t.Helper() - - pubKeyCfg, err := libp2p_crypto.ConfigDecodeKey(examplePubKeyStr) - require.NoError(t, err) - - pubKey, err := libp2p_crypto.UnmarshalEd25519PublicKey(pubKeyCfg) - require.NoError(t, err) - - return pubKey -} diff --git a/internal/router/service.go b/internal/router/service.go index a145e9622..d3f5a0fad 100644 --- a/internal/router/service.go +++ b/internal/router/service.go @@ -3,7 +3,7 @@ package router import ( "context" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/transaction" ) // Service is the interface that wraps the basic methods for a router. diff --git a/cmd/sonrd/main.go b/main.go similarity index 78% rename from cmd/sonrd/main.go rename to main.go index 53eb30dd8..4bd1cb51f 100644 --- a/cmd/sonrd/main.go +++ b/main.go @@ -7,11 +7,12 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" _ "github.com/joho/godotenv/autoload" - "github.com/onsonr/sonr/app" + "github.com/sonr-io/snrd/app" + "github.com/sonr-io/snrd/cmd" ) func main() { - rootCmd := NewRootCmd() + rootCmd := cmd.NewRootCmd() if err := svrcmd.Execute(rootCmd, "", app.DefaultNodeHome); err != nil { log.NewLogger(rootCmd.OutOrStderr()).Error("failure when running app", "err", err) os.Exit(1) diff --git a/proto/buf.gen.pulsar.yaml b/proto/buf.gen.pulsar.yaml index ad5f81151..db047d29f 100644 --- a/proto/buf.gen.pulsar.yaml +++ b/proto/buf.gen.pulsar.yaml @@ -2,7 +2,7 @@ version: v1 managed: enabled: true go_package_prefix: - default: github.com/onsonr/sonr/api + default: github.com/sonr-io/snrd/api except: - buf.build/googleapis/googleapis - buf.build/cosmos/gogo-proto diff --git a/proto/did/module/v1/module.proto b/proto/did/module/v1/module.proto index 3e6599ea6..6016e8958 100644 --- a/proto/did/module/v1/module.proto +++ b/proto/did/module/v1/module.proto @@ -7,5 +7,5 @@ import "cosmos/app/v1alpha1/module.proto"; // Module is the app config object of the module. // Learn more: https://docs.cosmos.network/main/building-modules/depinject message Module { - option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr"}; + option (cosmos.app.v1alpha1.module) = {go_import: "github.com/sonr-io/snrd"}; } diff --git a/proto/did/v1/genesis.proto b/proto/did/v1/genesis.proto index dba5b3298..5e58896ef 100644 --- a/proto/did/v1/genesis.proto +++ b/proto/did/v1/genesis.proto @@ -4,7 +4,7 @@ package did.v1; import "amino/amino.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/onsonr/sonr/x/did/types"; +option go_package = "github.com/sonr-io/snrd/x/did/types"; // GenesisState defines the module genesis state message GenesisState { @@ -52,6 +52,3 @@ message Document { repeated string capability_invocation = 6; repeated string service = 7; } - - - diff --git a/proto/did/v1/query.proto b/proto/did/v1/query.proto index 1de68309e..6eb37b843 100644 --- a/proto/did/v1/query.proto +++ b/proto/did/v1/query.proto @@ -4,7 +4,7 @@ package did.v1; import "did/v1/genesis.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/onsonr/sonr/x/did/types"; +option go_package = "github.com/sonr-io/snrd/x/did/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/did/v1/state.proto b/proto/did/v1/state.proto index b6283e124..02cf74e11 100644 --- a/proto/did/v1/state.proto +++ b/proto/did/v1/state.proto @@ -5,7 +5,7 @@ package did.v1; import "cosmos/orm/v1/orm.proto"; import "did/v1/genesis.proto"; -option go_package = "github.com/onsonr/sonr/x/did/types"; +option go_package = "github.com/sonr-io/snrd/x/did/types"; message Account { option (cosmos.orm.v1.table) = { diff --git a/proto/did/v1/tx.proto b/proto/did/v1/tx.proto index de4eae40e..ffa57ec80 100644 --- a/proto/did/v1/tx.proto +++ b/proto/did/v1/tx.proto @@ -7,7 +7,7 @@ import "cosmos_proto/cosmos.proto"; import "did/v1/genesis.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/onsonr/sonr/x/did/types"; +option go_package = "github.com/sonr-io/snrd/x/did/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/dwn/module/v1/module.proto b/proto/dwn/module/v1/module.proto index 9d5c54aaa..187739ce4 100644 --- a/proto/dwn/module/v1/module.proto +++ b/proto/dwn/module/v1/module.proto @@ -8,6 +8,6 @@ import "cosmos/app/v1alpha1/module.proto"; // Learn more: https://docs.cosmos.network/main/building-modules/depinject message Module { option (cosmos.app.v1alpha1.module) = { - go_import : "github.com/onsonr/sonr" + go_import : "github.com/sonr-io/snrd" }; -} \ No newline at end of file +} diff --git a/proto/dwn/v1/genesis.proto b/proto/dwn/v1/genesis.proto index 1722c36dc..89ba99954 100644 --- a/proto/dwn/v1/genesis.proto +++ b/proto/dwn/v1/genesis.proto @@ -4,7 +4,7 @@ package dwn.v1; import "gogoproto/gogo.proto"; import "amino/amino.proto"; -option go_package = "github.com/onsonr/sonr/x/dwn/types"; +option go_package = "github.com/sonr-io/snrd/x/dwn/types"; // GenesisState defines the module genesis state message GenesisState { @@ -42,4 +42,3 @@ message Resource { string kind = 1; string template = 2; } - diff --git a/proto/dwn/v1/query.proto b/proto/dwn/v1/query.proto index 27e55f15b..e4c975242 100644 --- a/proto/dwn/v1/query.proto +++ b/proto/dwn/v1/query.proto @@ -4,7 +4,7 @@ package dwn.v1; import "google/api/annotations.proto"; import "dwn/v1/genesis.proto"; -option go_package = "github.com/onsonr/sonr/x/dwn/types"; +option go_package = "github.com/sonr-io/snrd/x/dwn/types"; // ╭─────────────────────────────────────────────────────────╮ // │ RPC Query Service │ @@ -30,4 +30,3 @@ message QueryParamsResponse { // params defines the parameters of the module. Params params = 1; } - diff --git a/proto/dwn/v1/state.proto b/proto/dwn/v1/state.proto index 00b865640..71e7da548 100644 --- a/proto/dwn/v1/state.proto +++ b/proto/dwn/v1/state.proto @@ -3,7 +3,7 @@ package dwn.v1; import "cosmos/orm/v1/orm.proto"; -option go_package = "github.com/onsonr/sonr/x/dwn/types"; +option go_package = "github.com/sonr-io/snrd/x/dwn/types"; // https://github.com/cosmos/cosmos-sdk/blob/main/orm/README.md diff --git a/proto/dwn/v1/tx.proto b/proto/dwn/v1/tx.proto index 9c9750c85..ba121a06b 100644 --- a/proto/dwn/v1/tx.proto +++ b/proto/dwn/v1/tx.proto @@ -6,7 +6,7 @@ import "dwn/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/onsonr/sonr/x/dwn/types"; +option go_package = "github.com/sonr-io/snrd/x/dwn/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/svc/module/v1/module.proto b/proto/svc/module/v1/module.proto index e9a87b178..f1b26483b 100644 --- a/proto/svc/module/v1/module.proto +++ b/proto/svc/module/v1/module.proto @@ -8,6 +8,6 @@ import "cosmos/app/v1alpha1/module.proto"; // Learn more: https://docs.cosmos.network/main/building-modules/depinject message Module { option (cosmos.app.v1alpha1.module) = { - go_import : "github.com/onsonr/sonr" + go_import : "github.com/sonr-io/snrd" }; -} \ No newline at end of file +} diff --git a/proto/svc/v1/genesis.proto b/proto/svc/v1/genesis.proto index a95f646a4..b16d09708 100644 --- a/proto/svc/v1/genesis.proto +++ b/proto/svc/v1/genesis.proto @@ -4,7 +4,7 @@ package svc.v1; import "gogoproto/gogo.proto"; import "amino/amino.proto"; -option go_package = "github.com/onsonr/sonr/x/svc/types"; +option go_package = "github.com/sonr-io/snrd/x/svc/types"; // GenesisState defines the module genesis state message GenesisState { diff --git a/proto/svc/v1/query.proto b/proto/svc/v1/query.proto index 1aae44df6..3a797d113 100644 --- a/proto/svc/v1/query.proto +++ b/proto/svc/v1/query.proto @@ -4,7 +4,7 @@ package svc.v1; import "google/api/annotations.proto"; import "svc/v1/genesis.proto"; -option go_package = "github.com/onsonr/sonr/x/svc/types"; +option go_package = "github.com/sonr-io/snrd/x/svc/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/svc/v1/state.proto b/proto/svc/v1/state.proto index 890b1aa04..9cfc48f2f 100644 --- a/proto/svc/v1/state.proto +++ b/proto/svc/v1/state.proto @@ -3,7 +3,7 @@ package svc.v1; import "cosmos/orm/v1/orm.proto"; -option go_package = "github.com/onsonr/sonr/x/svc/types"; +option go_package = "github.com/sonr-io/snrd/x/svc/types"; // https://github.com/cosmos/cosmos-sdk/blob/main/orm/README.md diff --git a/proto/svc/v1/tx.proto b/proto/svc/v1/tx.proto index 9fa4e7dc2..f8624b585 100644 --- a/proto/svc/v1/tx.proto +++ b/proto/svc/v1/tx.proto @@ -6,7 +6,7 @@ import "svc/v1/genesis.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/onsonr/sonr/x/svc/types"; +option go_package = "github.com/sonr-io/snrd/x/svc/types"; // Msg defines the Msg service. service Msg { diff --git a/scripts/install.sh b/scripts/install.sh index a61d9f1c3..173e55daa 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -16,7 +16,7 @@ detect_platform() { # Function to get latest release version get_latest_version() { - LATEST_VERSION=$(curl -s https://api.github.com/repos/onsonr/sonr/releases/latest | grep "tag_name" | cut -d '"' -f 4) + LATEST_VERSION=$(curl -s https://api.github.com/repos/sonr-io/snrd/releases/latest | grep "tag_name" | cut -d '"' -f 4) LATEST_VERSION=${LATEST_VERSION#v} # Remove 'v' prefix } @@ -24,7 +24,7 @@ get_latest_version() { install_tar() { local OS_NAME=$1 echo "Installing Sonr for ${OS_NAME} (${ARCH})..." - DOWNLOAD_URL="https://github.com/onsonr/sonr/releases/download/v${LATEST_VERSION}/sonr_${LATEST_VERSION}_${OS_NAME}_${ARCH}.tar.gz" + DOWNLOAD_URL="https://github.com/sonr-io/snrd/releases/download/v${LATEST_VERSION}/sonr_${LATEST_VERSION}_${OS_NAME}_${ARCH}.tar.gz" # Download and extract echo "Downloading Sonr..." @@ -48,8 +48,8 @@ install_tar() { # Function to install on Debian/Ubuntu install_debian() { echo "Installing Sonr for Debian/Ubuntu (${ARCH})..." - SONRD_URL="https://github.com/onsonr/sonr/releases/download/v${LATEST_VERSION}/sonrd_${LATEST_VERSION}_${ARCH}.deb" - HWAY_URL="https://github.com/onsonr/sonr/releases/download/v${LATEST_VERSION}/hway_${LATEST_VERSION}_${ARCH}.deb" + SONRD_URL="https://github.com/sonr-io/snrd/releases/download/v${LATEST_VERSION}/sonrd_${LATEST_VERSION}_${ARCH}.deb" + HWAY_URL="https://github.com/sonr-io/snrd/releases/download/v${LATEST_VERSION}/hway_${LATEST_VERSION}_${ARCH}.deb" # Download packages TMP_DIR=$(mktemp -d) diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 3f66f38b1..acf36d6cc 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -2,7 +2,7 @@ set -e -GO_MOD_PACKAGE="github.com/onsonr/sonr" +GO_MOD_PACKAGE="github.com/sonr-io/snrd" ROOT_DIR=$(git rev-parse --show-toplevel) echo "Generating gogo proto code" @@ -49,4 +49,3 @@ for module in $base_namespace; do rm -rf $module done - diff --git a/scripts/setup_env.sh b/scripts/setup_env.sh deleted file mode 100755 index edcc6c02f..000000000 --- a/scripts/setup_env.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -ROOT_DIR=$(git rev-parse --show-toplevel) - -# Function to install a Go binary if it doesn't exist -function go_install() { - if ! command -v "$1" &>/dev/null; then - echo "Installing $1..." - go install "github.com/$1" - fi -} - -# Function to install a gh extension if it doesn't exist. Check gh for checking if installed -function gh_ext_install() { - gh extension install "$1" -} - -function main() { - go_install go-task/task/v3/cmd/task@latest - go_install a-h/templ/cmd/templ@latest - go_install goreleaser/goreleaser/v2@latest - - gh_ext_install johnmanjiro13/gh-bump -} - -main diff --git a/x/did/autocli.go b/x/did/autocli.go index 194a615f9..631a901c1 100644 --- a/x/did/autocli.go +++ b/x/did/autocli.go @@ -3,7 +3,7 @@ package module import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" - modulev1 "github.com/onsonr/sonr/api/did/v1" + modulev1 "github.com/sonr-io/snrd/api/did/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/did/depinject.go b/x/did/depinject.go index 6cd76f186..620cd70b9 100644 --- a/x/did/depinject.go +++ b/x/did/depinject.go @@ -16,8 +16,8 @@ import ( slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - modulev1 "github.com/onsonr/sonr/api/did/module/v1" - "github.com/onsonr/sonr/x/did/keeper" + modulev1 "github.com/sonr-io/snrd/api/did/module/v1" + "github.com/sonr-io/snrd/x/did/keeper" ) var _ appmodule.AppModule = AppModule{} diff --git a/x/did/keeper/genesis.go b/x/did/keeper/genesis.go index 204609b5e..236df3a78 100644 --- a/x/did/keeper/genesis.go +++ b/x/did/keeper/genesis.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/log" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/types" ) // func (k Keeper) ResolveController(ctx sdk.Context, did string) (controller.ControllerI, error) { diff --git a/x/did/keeper/genesis_test.go b/x/did/keeper/genesis_test.go index e92aaf280..4bd06d8ca 100644 --- a/x/did/keeper/genesis_test.go +++ b/x/did/keeper/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/types" ) func TestGenesis(t *testing.T) { diff --git a/x/did/keeper/keeper.go b/x/did/keeper/keeper.go index 6ea70aea1..3ac94d2f7 100644 --- a/x/did/keeper/keeper.go +++ b/x/did/keeper/keeper.go @@ -12,8 +12,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" stakkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - apiv1 "github.com/onsonr/sonr/api/did/v1" - "github.com/onsonr/sonr/x/did/types" + apiv1 "github.com/sonr-io/snrd/api/did/v1" + "github.com/sonr-io/snrd/x/did/types" ) // Keeper defines the middleware keeper. diff --git a/x/did/keeper/keeper_test.go b/x/did/keeper/keeper_test.go index 8878f3ae4..c085770ea 100644 --- a/x/did/keeper/keeper_test.go +++ b/x/did/keeper/keeper_test.go @@ -25,9 +25,9 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - module "github.com/onsonr/sonr/x/did" - "github.com/onsonr/sonr/x/did/keeper" - "github.com/onsonr/sonr/x/did/types" + module "github.com/sonr-io/snrd/x/did" + "github.com/sonr-io/snrd/x/did/keeper" + "github.com/sonr-io/snrd/x/did/types" ) var maccPerms = map[string][]string{ diff --git a/x/did/keeper/querier.go b/x/did/keeper/querier.go index 35b34c978..9ed544cd7 100644 --- a/x/did/keeper/querier.go +++ b/x/did/keeper/querier.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/types" ) var _ types.QueryServer = Querier{} diff --git a/x/did/keeper/rpc.go b/x/did/keeper/rpc.go index babef0856..6457ee1ee 100644 --- a/x/did/keeper/rpc.go +++ b/x/did/keeper/rpc.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/types" ) type msgServer struct { diff --git a/x/did/module.go b/x/did/module.go index 3d04d2c14..7b721a8c1 100644 --- a/x/did/module.go +++ b/x/did/module.go @@ -18,8 +18,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/onsonr/sonr/x/did/keeper" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/keeper" + "github.com/sonr-io/snrd/x/did/types" // this line is used by starport scaffolding # 1 ) diff --git a/x/did/types/accounts.go b/x/did/types/accounts.go index 0a9a66023..d45038a2f 100644 --- a/x/did/types/accounts.go +++ b/x/did/types/accounts.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/onsonr/sonr/internal/accounts" - "github.com/onsonr/sonr/internal/transaction" + "github.com/sonr-io/snrd/internal/accounts" + "github.com/sonr-io/snrd/internal/transaction" ) var ( diff --git a/x/did/types/genesis.pb.go b/x/did/types/genesis.pb.go index b9b42b7ef..1496f74cd 100644 --- a/x/did/types/genesis.pb.go +++ b/x/did/types/genesis.pb.go @@ -394,39 +394,40 @@ func init() { func init() { proto.RegisterFile("did/v1/genesis.proto", fileDescriptor_fda181cae44f7c00) } var fileDescriptor_fda181cae44f7c00 = []byte{ - // 509 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x53, 0x4f, 0x6b, 0x13, 0x41, - 0x14, 0xcf, 0xa6, 0x31, 0x4d, 0x5e, 0x42, 0xac, 0x63, 0xd4, 0x25, 0xc8, 0x26, 0xec, 0x41, 0xa2, - 0x94, 0x2c, 0x6d, 0x41, 0xa1, 0xf4, 0x62, 0x2d, 0x88, 0x07, 0x41, 0xd6, 0x5b, 0x2f, 0x65, 0xb2, - 0xfb, 0x48, 0x06, 0xb3, 0x33, 0xcb, 0xce, 0x24, 0x34, 0x5f, 0xc1, 0x93, 0xde, 0x3c, 0xf6, 0x23, - 0xf8, 0x31, 0x7a, 0xec, 0xd1, 0x93, 0x48, 0x72, 0xd0, 0x8f, 0x21, 0x33, 0x3b, 0xbb, 0x49, 0x73, - 0x19, 0xde, 0xfb, 0xfd, 0x79, 0xef, 0x37, 0xc3, 0x2e, 0x74, 0x63, 0x16, 0x07, 0x8b, 0xa3, 0x60, - 0x82, 0x1c, 0x25, 0x93, 0xa3, 0x34, 0x13, 0x4a, 0x90, 0x7a, 0xcc, 0xe2, 0xd1, 0xe2, 0xa8, 0xf7, - 0x88, 0x26, 0x8c, 0x8b, 0xc0, 0x9c, 0x39, 0xd5, 0xeb, 0x4e, 0xc4, 0x44, 0x98, 0x32, 0xd0, 0x55, - 0x8e, 0xfa, 0x67, 0xd0, 0x7e, 0x9f, 0x4f, 0xf8, 0xac, 0xa8, 0x42, 0x72, 0x08, 0xf5, 0x94, 0x66, - 0x34, 0x91, 0xae, 0x33, 0x70, 0x86, 0xad, 0xe3, 0xce, 0x28, 0x9f, 0x38, 0xfa, 0x64, 0xd0, 0xf3, - 0xda, 0xed, 0xef, 0x7e, 0x25, 0xb4, 0x1a, 0xff, 0x12, 0xea, 0x39, 0x4e, 0xde, 0x40, 0x9b, 0x2a, - 0x85, 0x7c, 0x4e, 0x15, 0x13, 0x5c, 0xbb, 0xf7, 0x86, 0xad, 0xe3, 0xc7, 0x85, 0xfb, 0xed, 0x86, - 0x0b, 0xef, 0x09, 0x4f, 0x9f, 0xfd, 0xb8, 0xe9, 0x57, 0xfe, 0xdd, 0xf4, 0x9d, 0xaf, 0x7f, 0x7f, - 0xbe, 0x02, 0x7d, 0x29, 0x3b, 0x5b, 0x42, 0x6b, 0xcb, 0x45, 0x0e, 0xa1, 0x91, 0xa1, 0x14, 0xf3, - 0x2c, 0x42, 0x1b, 0xed, 0xa0, 0x18, 0x1e, 0x5a, 0x3c, 0x2c, 0x15, 0xe4, 0x35, 0xb4, 0x23, 0x9a, - 0xd2, 0x31, 0x9b, 0x31, 0xc5, 0x50, 0xba, 0x55, 0x13, 0x87, 0x14, 0x8e, 0x77, 0x05, 0xb7, 0x0c, - 0xef, 0xe9, 0xfc, 0x6b, 0x80, 0x0d, 0x47, 0x08, 0xd4, 0x38, 0x4d, 0xf2, 0x7d, 0xcd, 0xd0, 0xd4, - 0xe4, 0xa9, 0x79, 0x20, 0xe4, 0xca, 0xad, 0x1a, 0xd4, 0x76, 0x64, 0x00, 0xad, 0x18, 0x65, 0x94, - 0xb1, 0x54, 0xc7, 0x75, 0xf7, 0x0c, 0xb9, 0x0d, 0x91, 0xe7, 0xd0, 0x2c, 0xf2, 0x49, 0xb7, 0x36, - 0xd8, 0x1b, 0x36, 0xc3, 0x0d, 0xe0, 0x9f, 0x42, 0xa3, 0xb8, 0x87, 0xde, 0xfb, 0x85, 0xf1, 0xb8, - 0xd8, 0xab, 0x6b, 0xd2, 0x83, 0x86, 0xc2, 0x24, 0x9d, 0x51, 0x85, 0x76, 0x73, 0xd9, 0xfb, 0xdf, - 0xab, 0xd0, 0xb8, 0x10, 0xd1, 0x3c, 0xd1, 0x41, 0x3a, 0x50, 0x65, 0x85, 0xb5, 0xca, 0x62, 0xe2, - 0x01, 0x44, 0x82, 0xab, 0x4c, 0xcc, 0x66, 0x98, 0x59, 0xeb, 0x16, 0x42, 0x5e, 0x40, 0x87, 0xce, - 0xd5, 0x14, 0xb9, 0x62, 0x11, 0xb5, 0xd9, 0x75, 0xb6, 0x1d, 0x94, 0xbc, 0x84, 0x03, 0x2a, 0x25, - 0x66, 0xba, 0xb9, 0x4a, 0x50, 0x4d, 0x45, 0x6c, 0x6f, 0xf1, 0xb0, 0xc4, 0x3f, 0x1a, 0x98, 0x9c, - 0xc0, 0x93, 0xf2, 0x55, 0x97, 0x57, 0x31, 0xce, 0x70, 0x92, 0x4f, 0x7e, 0x60, 0xf4, 0xdd, 0x0d, - 0x79, 0x51, 0x72, 0x3b, 0x26, 0xc6, 0x17, 0xc2, 0xc6, 0xa9, 0xef, 0x9a, 0x3e, 0x94, 0x1c, 0x71, - 0x61, 0x5f, 0x62, 0xb6, 0x60, 0x11, 0xba, 0xfb, 0x46, 0x56, 0xb4, 0xe7, 0x67, 0xb7, 0x2b, 0xcf, - 0xb9, 0x5b, 0x79, 0xce, 0x9f, 0x95, 0xe7, 0x7c, 0x5b, 0x7b, 0x95, 0xbb, 0xb5, 0x57, 0xf9, 0xb5, - 0xf6, 0x2a, 0x97, 0xfe, 0x84, 0xa9, 0xe9, 0x7c, 0x3c, 0x8a, 0x44, 0x12, 0x08, 0x2e, 0x05, 0xcf, - 0x02, 0x73, 0x5c, 0x07, 0xfa, 0xeb, 0x53, 0xcb, 0x14, 0xe5, 0xb8, 0x6e, 0xfe, 0x8e, 0x93, 0xff, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x55, 0xcf, 0x59, 0xf8, 0x66, 0x03, 0x00, 0x00, + // 513 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x53, 0x4f, 0x6f, 0x12, 0x41, + 0x14, 0x67, 0x01, 0x29, 0x3c, 0x08, 0xd6, 0x11, 0x75, 0x43, 0xcc, 0x42, 0x30, 0x31, 0x68, 0x2a, + 0x9b, 0xb6, 0x89, 0x26, 0x8d, 0x1e, 0xac, 0x4d, 0x8c, 0x07, 0x13, 0xb3, 0xde, 0x7a, 0x69, 0x86, + 0xdd, 0x17, 0x98, 0xc8, 0xce, 0x6c, 0x66, 0x06, 0x52, 0xbe, 0x82, 0x27, 0xbd, 0x79, 0xec, 0x47, + 0xf0, 0x63, 0xf4, 0xd8, 0xa3, 0x27, 0x63, 0xe0, 0xa0, 0x1f, 0xc3, 0xec, 0xec, 0xec, 0x42, 0xb9, + 0x90, 0xf7, 0x7e, 0x7f, 0xde, 0xfb, 0xbd, 0x09, 0x0b, 0x9d, 0x88, 0x45, 0xfe, 0xe2, 0xd0, 0x9f, + 0x20, 0x47, 0xc5, 0xd4, 0x28, 0x91, 0x42, 0x0b, 0x52, 0x8b, 0x58, 0x34, 0x5a, 0x1c, 0x76, 0xef, + 0xd1, 0x98, 0x71, 0xe1, 0x9b, 0xdf, 0x8c, 0xea, 0x76, 0x26, 0x62, 0x22, 0x4c, 0xe9, 0xa7, 0x55, + 0x86, 0x0e, 0x5e, 0x43, 0xeb, 0x7d, 0x36, 0xe1, 0xb3, 0xa6, 0x1a, 0xc9, 0x01, 0xd4, 0x12, 0x2a, + 0x69, 0xac, 0x5c, 0xa7, 0xef, 0x0c, 0x9b, 0x47, 0xed, 0x51, 0x36, 0x71, 0xf4, 0xc9, 0xa0, 0xa7, + 0xd5, 0xeb, 0xdf, 0xbd, 0x52, 0x60, 0x35, 0x83, 0x73, 0xa8, 0x65, 0x38, 0x79, 0x05, 0x2d, 0xaa, + 0x35, 0xf2, 0x39, 0xd5, 0x4c, 0xf0, 0xd4, 0x5d, 0x19, 0x36, 0x8f, 0xee, 0xe7, 0xee, 0xb7, 0x1b, + 0x2e, 0xb8, 0x25, 0x3c, 0x79, 0xf4, 0xe3, 0xaa, 0x57, 0xfa, 0x77, 0xd5, 0x73, 0xbe, 0xfe, 0xfd, + 0xf9, 0x1c, 0xd2, 0xa3, 0xec, 0x6c, 0x05, 0xcd, 0x2d, 0x17, 0x39, 0x80, 0xba, 0x44, 0x25, 0xe6, + 0x32, 0x44, 0x1b, 0x6d, 0x3f, 0x1f, 0x1e, 0x58, 0x3c, 0x28, 0x14, 0xe4, 0x25, 0xb4, 0x42, 0x9a, + 0xd0, 0x31, 0x9b, 0x31, 0xcd, 0x50, 0xb9, 0x65, 0x13, 0x87, 0xe4, 0x8e, 0x77, 0x39, 0xb7, 0x0c, + 0x6e, 0xe9, 0x06, 0x97, 0x00, 0x1b, 0x8e, 0x10, 0xa8, 0x72, 0x1a, 0x67, 0xfb, 0x1a, 0x81, 0xa9, + 0xc9, 0x43, 0xf3, 0x40, 0xc8, 0xb5, 0x5b, 0x36, 0xa8, 0xed, 0x48, 0x1f, 0x9a, 0x11, 0xaa, 0x50, + 0xb2, 0x24, 0x8d, 0xeb, 0x56, 0x0c, 0xb9, 0x0d, 0x91, 0xc7, 0xd0, 0xc8, 0xf3, 0x29, 0xb7, 0xda, + 0xaf, 0x0c, 0x1b, 0xc1, 0x06, 0x18, 0x9c, 0x40, 0x3d, 0xbf, 0x23, 0xdd, 0xfb, 0x85, 0xf1, 0x28, + 0xdf, 0x9b, 0xd6, 0xa4, 0x0b, 0x75, 0x8d, 0x71, 0x32, 0xa3, 0x1a, 0xed, 0xe6, 0xa2, 0x1f, 0x7c, + 0x2f, 0x43, 0xfd, 0x4c, 0x84, 0xf3, 0x38, 0x0d, 0xd2, 0x86, 0x32, 0xcb, 0xad, 0x65, 0x16, 0x11, + 0x0f, 0x20, 0x14, 0x5c, 0x4b, 0x31, 0x9b, 0xa1, 0xb4, 0xd6, 0x2d, 0x84, 0x3c, 0x85, 0x36, 0x9d, + 0xeb, 0x29, 0x72, 0xcd, 0x42, 0x6a, 0xb3, 0xa7, 0xd9, 0x76, 0x50, 0xf2, 0x0c, 0xf6, 0xa9, 0x52, + 0x28, 0xd3, 0xe6, 0x22, 0x46, 0x3d, 0x15, 0x91, 0xbd, 0xe2, 0x6e, 0x81, 0x7f, 0x34, 0x30, 0x39, + 0x86, 0x07, 0xc5, 0xab, 0x2e, 0x2f, 0x22, 0x9c, 0xe1, 0x24, 0x9b, 0x7c, 0xc7, 0xe8, 0x3b, 0x1b, + 0xf2, 0xac, 0xe0, 0x76, 0x4c, 0x8c, 0x2f, 0x84, 0x8d, 0x53, 0xdb, 0x35, 0x7d, 0x28, 0x38, 0xe2, + 0xc2, 0x9e, 0x42, 0xb9, 0x60, 0x21, 0xba, 0x7b, 0x46, 0x96, 0xb7, 0xa7, 0x6f, 0xae, 0x57, 0x9e, + 0x73, 0xb3, 0xf2, 0x9c, 0x3f, 0x2b, 0xcf, 0xf9, 0xb6, 0xf6, 0x4a, 0x37, 0x6b, 0xaf, 0xf4, 0x6b, + 0xed, 0x95, 0xce, 0x9f, 0x4c, 0x98, 0x9e, 0xce, 0xc7, 0xa3, 0x50, 0xc4, 0xbe, 0x12, 0x5c, 0xbe, + 0x60, 0xc2, 0x57, 0x5c, 0x46, 0xfe, 0xa5, 0x9f, 0xfe, 0xfd, 0xf4, 0x32, 0x41, 0x35, 0xae, 0x99, + 0xcf, 0xe3, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x99, 0xf1, 0xce, 0xd8, 0x67, 0x03, 0x00, + 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/did/types/genesis_test.go b/x/did/types/genesis_test.go index 01d5a476d..32ba17c0d 100644 --- a/x/did/types/genesis_test.go +++ b/x/did/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/onsonr/sonr/x/did/types" + "github.com/sonr-io/snrd/x/did/types" "github.com/stretchr/testify/require" ) diff --git a/x/did/types/query.pb.go b/x/did/types/query.pb.go index 7476320de..0dcf238b9 100644 --- a/x/did/types/query.pb.go +++ b/x/did/types/query.pb.go @@ -456,37 +456,37 @@ func init() { func init() { proto.RegisterFile("did/v1/query.proto", fileDescriptor_ae1fa9bb626e2869) } var fileDescriptor_ae1fa9bb626e2869 = []byte{ - // 474 bytes of a gzipped FileDescriptorProto + // 477 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x53, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0x8d, 0x53, 0xe2, 0xb6, 0x03, 0x94, 0xb0, 0x98, 0xc8, 0x0a, 0x91, 0x85, 0xf6, 0x80, 0x90, - 0x40, 0xb6, 0x52, 0xae, 0x70, 0x41, 0xfd, 0x00, 0x70, 0x11, 0x07, 0x2e, 0xb0, 0xed, 0x0e, 0x66, - 0xd5, 0x78, 0xd7, 0xf5, 0xae, 0x2d, 0x2c, 0x04, 0x07, 0xbe, 0x00, 0xa9, 0x77, 0xbe, 0x87, 0x63, - 0x25, 0x2e, 0x1c, 0x51, 0xc2, 0x87, 0xa0, 0xac, 0xd7, 0xa5, 0x8e, 0xc4, 0x11, 0x71, 0xb1, 0x3c, - 0x6f, 0xde, 0xbe, 0x7d, 0xe3, 0x79, 0x06, 0xc2, 0x05, 0x4f, 0xea, 0x79, 0x72, 0x5a, 0x61, 0xd9, - 0xc4, 0x45, 0xa9, 0x8c, 0x22, 0x3e, 0x17, 0x3c, 0xae, 0xe7, 0xd3, 0xc0, 0xf5, 0x32, 0x94, 0xa8, - 0x85, 0x6e, 0xbb, 0xd3, 0x59, 0xa6, 0x54, 0xb6, 0xc0, 0x84, 0x15, 0x22, 0x61, 0x52, 0x2a, 0xc3, - 0x8c, 0x50, 0xd2, 0x75, 0xe9, 0x1b, 0xb8, 0xf6, 0x7c, 0x2d, 0x95, 0xe2, 0x69, 0x85, 0xda, 0x90, - 0x31, 0x6c, 0x71, 0xc1, 0x43, 0xef, 0xae, 0x77, 0x7f, 0x37, 0x5d, 0xbf, 0x92, 0x09, 0xf8, 0xaa, - 0x14, 0x99, 0x90, 0xe1, 0xd0, 0x82, 0xae, 0x5a, 0x33, 0x4f, 0xb0, 0x09, 0xb7, 0x5a, 0xe6, 0x09, - 0x36, 0x24, 0x80, 0x11, 0xd3, 0x1a, 0x4d, 0x78, 0xc5, 0x62, 0x6d, 0x41, 0x9f, 0xc0, 0x2d, 0x7b, - 0xc3, 0x33, 0x56, 0xb2, 0x5c, 0xa7, 0xa8, 0x0b, 0x25, 0x35, 0x92, 0x7b, 0xe0, 0x17, 0x16, 0xb1, - 0x77, 0x5d, 0xdd, 0xdf, 0x8b, 0xdb, 0x29, 0x62, 0xc7, 0x73, 0x5d, 0x7a, 0x00, 0x81, 0x33, 0xa8, - 0xd5, 0xa2, 0xc6, 0x8b, 0xf3, 0x0f, 0x61, 0x87, 0xab, 0xe3, 0x2a, 0x47, 0x69, 0x9c, 0xc2, 0xb8, - 0x53, 0x38, 0x70, 0x78, 0x7a, 0xc1, 0xa0, 0x9f, 0x60, 0x6c, 0x55, 0x0e, 0x45, 0x26, 0xff, 0xd9, - 0xa8, 0x24, 0x84, 0xed, 0x1c, 0xb5, 0x66, 0x19, 0x86, 0x23, 0x8b, 0x77, 0x25, 0x9d, 0xc3, 0xcd, - 0x4b, 0xf7, 0xbb, 0x11, 0x66, 0xb0, 0xab, 0x45, 0x26, 0x99, 0xa9, 0x4a, 0x74, 0x36, 0xfe, 0x00, - 0xf4, 0xab, 0x07, 0xc4, 0x9e, 0x79, 0x89, 0xa5, 0x78, 0xdb, 0xfc, 0x07, 0xd7, 0x7d, 0x83, 0xfe, - 0xa6, 0xc1, 0x07, 0x6e, 0xb1, 0x9d, 0x3f, 0x37, 0x55, 0x00, 0xa3, 0x9a, 0x2d, 0x9c, 0xc5, 0x9d, - 0xb4, 0x2d, 0xf6, 0xcf, 0x86, 0x30, 0xb2, 0x6c, 0x72, 0x08, 0x7e, 0xbb, 0x62, 0x12, 0x74, 0x0b, - 0xbb, 0x9c, 0xc0, 0xe9, 0x9d, 0x1e, 0xda, 0x4f, 0x0d, 0x9d, 0x7c, 0xfe, 0xfe, 0xeb, 0x6c, 0x38, - 0x26, 0x7b, 0x89, 0xcb, 0x7a, 0x9b, 0x12, 0xf2, 0x02, 0xb6, 0x5d, 0x40, 0xfe, 0xa2, 0x3a, 0xdb, - 0x40, 0x7b, 0x61, 0xa2, 0xb7, 0xad, 0xec, 0x0d, 0x72, 0xbd, 0x93, 0xfd, 0xc0, 0x05, 0xff, 0x48, - 0x5e, 0x83, 0xdf, 0x0e, 0x47, 0xa6, 0xbd, 0xe3, 0xbd, 0x8d, 0x6c, 0x18, 0xee, 0x7f, 0x0d, 0x3a, - 0xb3, 0xca, 0x13, 0x1a, 0xf4, 0x94, 0x93, 0xda, 0xb2, 0x9e, 0x3e, 0xfe, 0xb6, 0x8c, 0xbc, 0xf3, - 0x65, 0xe4, 0xfd, 0x5c, 0x46, 0xde, 0x97, 0x55, 0x34, 0x38, 0x5f, 0x45, 0x83, 0x1f, 0xab, 0x68, - 0xf0, 0x8a, 0x66, 0xc2, 0xbc, 0xab, 0x8e, 0xe2, 0x63, 0x95, 0x27, 0x4a, 0x6a, 0x25, 0xcb, 0xc4, - 0x3e, 0xde, 0x5b, 0x1d, 0xd3, 0x14, 0xa8, 0x8f, 0x7c, 0xfb, 0x0b, 0x3f, 0xfa, 0x1d, 0x00, 0x00, - 0xff, 0xff, 0x3f, 0xf8, 0xe6, 0x18, 0x14, 0x04, 0x00, 0x00, + 0x10, 0x8d, 0x53, 0xe2, 0xb6, 0x03, 0x94, 0xb0, 0x98, 0xc8, 0x0a, 0x91, 0x85, 0x16, 0x09, 0x21, + 0x01, 0xb6, 0x52, 0xce, 0xbd, 0xa0, 0x7e, 0x00, 0xb8, 0x88, 0x03, 0x17, 0xd8, 0x76, 0x07, 0xb3, + 0x6a, 0xb2, 0xeb, 0x7a, 0xd7, 0x16, 0x16, 0x82, 0x03, 0x5f, 0x80, 0xd4, 0x3b, 0xdf, 0xc3, 0xb1, + 0x12, 0x17, 0x8e, 0x28, 0xe1, 0x43, 0x50, 0xd6, 0xeb, 0x12, 0x47, 0xe2, 0x88, 0xb8, 0x65, 0xde, + 0xbc, 0x7d, 0xf3, 0x26, 0xf3, 0x0c, 0x84, 0x0b, 0x9e, 0x54, 0xd3, 0xe4, 0xac, 0xc4, 0xa2, 0x8e, + 0xf3, 0x42, 0x19, 0x45, 0x7c, 0x2e, 0x78, 0x5c, 0x4d, 0xc7, 0x81, 0xeb, 0x65, 0x28, 0x51, 0x0b, + 0xdd, 0x74, 0xc7, 0x93, 0x4c, 0xa9, 0x6c, 0x86, 0x09, 0xcb, 0x45, 0xc2, 0xa4, 0x54, 0x86, 0x19, + 0xa1, 0xa4, 0xeb, 0xd2, 0x37, 0x70, 0xed, 0xf9, 0x4a, 0x2a, 0xc5, 0xb3, 0x12, 0xb5, 0x21, 0x43, + 0xd8, 0xe2, 0x82, 0x87, 0xde, 0x5d, 0xef, 0xc1, 0x6e, 0xba, 0xfa, 0x49, 0x46, 0xe0, 0xab, 0x42, + 0x64, 0x42, 0x86, 0x7d, 0x0b, 0xba, 0x6a, 0xc5, 0x3c, 0xc5, 0x3a, 0xdc, 0x6a, 0x98, 0xa7, 0x58, + 0x93, 0x00, 0x06, 0x4c, 0x6b, 0x34, 0xe1, 0x15, 0x8b, 0x35, 0x05, 0x3d, 0x80, 0x5b, 0x76, 0xc2, + 0x33, 0x56, 0xb0, 0xb9, 0x4e, 0x51, 0xe7, 0x4a, 0x6a, 0x24, 0xf7, 0xc1, 0xcf, 0x2d, 0x62, 0x67, + 0x5d, 0xdd, 0xdf, 0x8b, 0x9b, 0x2d, 0x62, 0xc7, 0x73, 0x5d, 0x7a, 0x08, 0x81, 0x33, 0xa8, 0xd5, + 0xac, 0xc2, 0xcb, 0xf7, 0x8f, 0x60, 0x87, 0xab, 0x93, 0x72, 0x8e, 0xd2, 0x38, 0x85, 0x61, 0xab, + 0x70, 0xe8, 0xf0, 0xf4, 0x92, 0x41, 0x3f, 0xc1, 0xd0, 0xaa, 0x1c, 0x89, 0x4c, 0xfe, 0xb3, 0x55, + 0x49, 0x08, 0xdb, 0x73, 0xd4, 0x9a, 0x65, 0x18, 0x0e, 0x2c, 0xde, 0x96, 0x74, 0x0a, 0x37, 0xd7, + 0xe6, 0xbb, 0x15, 0x26, 0xb0, 0xab, 0x45, 0x26, 0x99, 0x29, 0x0b, 0x74, 0x36, 0xfe, 0x00, 0xf4, + 0xab, 0x07, 0xc4, 0xbe, 0x79, 0x89, 0x85, 0x78, 0x5b, 0xff, 0x07, 0xd7, 0x5d, 0x83, 0xfe, 0xa6, + 0xc1, 0x87, 0xee, 0xb0, 0xad, 0x3f, 0xb7, 0x55, 0x00, 0x83, 0x8a, 0xcd, 0x9c, 0xc5, 0x9d, 0xb4, + 0x29, 0xf6, 0xcf, 0xfb, 0x30, 0xb0, 0x6c, 0x72, 0x04, 0x7e, 0x73, 0x62, 0x12, 0xb4, 0x07, 0x5b, + 0x4f, 0xe0, 0xf8, 0x4e, 0x07, 0xed, 0xa6, 0x86, 0x8e, 0x3e, 0x7f, 0xff, 0x75, 0xde, 0x1f, 0x92, + 0xbd, 0xc4, 0x65, 0xbd, 0x49, 0x09, 0x79, 0x01, 0xdb, 0x2e, 0x20, 0x7f, 0x51, 0x9d, 0x6c, 0xa0, + 0x9d, 0x30, 0xd1, 0xdb, 0x56, 0xf6, 0x06, 0xb9, 0xde, 0xca, 0x7e, 0xe0, 0x82, 0x7f, 0x24, 0xaf, + 0xc1, 0x6f, 0x96, 0x23, 0xe3, 0xce, 0xf3, 0xce, 0x45, 0x36, 0x0c, 0x77, 0xff, 0x0d, 0x3a, 0xb1, + 0xca, 0x23, 0x1a, 0x74, 0x94, 0x93, 0xca, 0xb2, 0x9e, 0x1e, 0x7c, 0x5b, 0x44, 0xde, 0xc5, 0x22, + 0xf2, 0x7e, 0x2e, 0x22, 0xef, 0xcb, 0x32, 0xea, 0x5d, 0x2c, 0xa3, 0xde, 0x8f, 0x65, 0xd4, 0x7b, + 0x75, 0x2f, 0x13, 0xe6, 0x5d, 0x79, 0x1c, 0x9f, 0xa8, 0x79, 0xa2, 0x95, 0x2c, 0x1e, 0x0b, 0x95, + 0x68, 0x59, 0xf0, 0xe4, 0xbd, 0x15, 0x32, 0x75, 0x8e, 0xfa, 0xd8, 0xb7, 0xdf, 0xf0, 0x93, 0xdf, + 0x01, 0x00, 0x00, 0xff, 0xff, 0xe8, 0xc6, 0x49, 0x75, 0x15, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/did/types/state.pb.go b/x/did/types/state.pb.go index a30b9ccd2..f46ec4d13 100644 --- a/x/did/types/state.pb.go +++ b/x/did/types/state.pb.go @@ -369,51 +369,51 @@ func init() { func init() { proto.RegisterFile("did/v1/state.proto", fileDescriptor_f44bb702879c34b4) } var fileDescriptor_f44bb702879c34b4 = []byte{ - // 690 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xd1, 0x6a, 0x13, 0x4b, - 0x1c, 0xc6, 0x3b, 0xd9, 0x26, 0x6d, 0xfe, 0x49, 0xca, 0x76, 0xe8, 0x39, 0x67, 0x08, 0xe7, 0xe4, - 0xc4, 0x54, 0xa5, 0x62, 0x49, 0xa8, 0xde, 0x48, 0x95, 0x42, 0x0b, 0x82, 0x20, 0x05, 0x89, 0x52, - 0xd0, 0x9b, 0xb0, 0x3b, 0x33, 0x36, 0x6b, 0x76, 0x77, 0xe2, 0xcc, 0x6c, 0xe8, 0xbe, 0x84, 0xf8, - 0x04, 0x3e, 0x8f, 0x97, 0x05, 0x6f, 0xbc, 0x94, 0xf6, 0x0d, 0xbc, 0x12, 0x04, 0x91, 0x9d, 0xd9, - 0x4d, 0xb7, 0x36, 0x50, 0xf1, 0x26, 0xc9, 0x7c, 0xf3, 0xcd, 0xcc, 0xce, 0xef, 0xcb, 0xb7, 0x80, - 0x59, 0xc0, 0x06, 0xb3, 0x9d, 0x81, 0xd2, 0x9e, 0xe6, 0xfd, 0xa9, 0x14, 0x5a, 0xe0, 0x1a, 0x0b, - 0x58, 0x7f, 0xb6, 0xd3, 0xfe, 0x87, 0x0a, 0x15, 0x09, 0x35, 0x10, 0x32, 0xca, 0x2c, 0x42, 0x46, - 0xd6, 0xd0, 0xde, 0xc8, 0x17, 0x1d, 0xf3, 0x98, 0xab, 0x40, 0x59, 0xb5, 0xf7, 0xad, 0x02, 0x2b, - 0xfb, 0x94, 0x8a, 0x24, 0xd6, 0xd8, 0x05, 0x87, 0x05, 0x8c, 0xa0, 0x2e, 0xda, 0xaa, 0x0f, 0xb3, - 0x9f, 0xb8, 0x03, 0x40, 0x45, 0xac, 0xa5, 0x08, 0x43, 0x2e, 0x49, 0xc5, 0x4c, 0x94, 0x14, 0x4c, - 0x60, 0x45, 0x25, 0xfe, 0x1b, 0x4e, 0x35, 0x71, 0xcc, 0x64, 0x31, 0xc4, 0x37, 0x61, 0x6d, 0x9a, - 0xf8, 0x61, 0x40, 0x47, 0x13, 0x9e, 0x8e, 0xc6, 0xfc, 0x84, 0x2c, 0x1b, 0x43, 0xd3, 0xaa, 0x4f, - 0x79, 0xfa, 0x84, 0x9f, 0xe0, 0x5b, 0xb0, 0xe6, 0x29, 0xc5, 0xa5, 0x0e, 0x44, 0x3c, 0xd2, 0xe9, - 0x94, 0x93, 0xaa, 0x71, 0xb5, 0xe6, 0xea, 0x8b, 0x74, 0xca, 0xf1, 0x01, 0x34, 0x3c, 0x4a, 0x93, - 0x28, 0x09, 0x3d, 0x2d, 0x24, 0xa9, 0x75, 0x9d, 0xad, 0xc6, 0xbd, 0x6e, 0xdf, 0xde, 0xb8, 0x9f, - 0x3f, 0x7e, 0xf6, 0x5d, 0x58, 0x1e, 0xc7, 0x5a, 0xa6, 0xc3, 0xf2, 0xa2, 0xec, 0x28, 0x2a, 0xb9, - 0x67, 0x4e, 0xf2, 0x43, 0x41, 0x27, 0x64, 0xa5, 0x8b, 0xb6, 0x9c, 0x61, 0xab, 0x50, 0x0f, 0x32, - 0xb1, 0xbd, 0x07, 0xee, 0xaf, 0xfb, 0x64, 0x5c, 0x26, 0x3c, 0x2d, 0xb8, 0x4c, 0x78, 0x8a, 0x37, - 0xa0, 0x3a, 0xf3, 0xc2, 0x84, 0x1b, 0x24, 0xcd, 0xa1, 0x1d, 0xec, 0x56, 0x1e, 0xa0, 0xdd, 0x3b, - 0x5f, 0x3f, 0x7c, 0x7a, 0xe7, 0x6c, 0x42, 0xd5, 0xb0, 0xc4, 0x04, 0xf0, 0x05, 0xae, 0xed, 0x1c, - 0x8e, 0x8b, 0x08, 0x22, 0xa8, 0xf7, 0xa3, 0x02, 0xf5, 0x67, 0x05, 0x0d, 0xfc, 0x37, 0xd4, 0xe2, - 0x24, 0xf2, 0xb9, 0x34, 0xe7, 0x2c, 0x0f, 0xf3, 0x51, 0x11, 0x4a, 0xe5, 0x22, 0x94, 0x1b, 0xd0, - 0x54, 0x22, 0x96, 0x23, 0x8f, 0x31, 0xc9, 0x95, 0xca, 0xc9, 0x37, 0x32, 0x6d, 0xdf, 0x4a, 0xf8, - 0x7f, 0x68, 0x70, 0x3d, 0x9e, 0x3b, 0x2c, 0x7a, 0xe0, 0x7a, 0x5c, 0x32, 0xf8, 0x9a, 0xce, 0x0d, - 0x96, 0x3a, 0xf8, 0x9a, 0x16, 0x86, 0xab, 0xf9, 0xd5, 0x16, 0xe4, 0xf7, 0x17, 0xd4, 0x26, 0x6a, - 0x34, 0xf3, 0x42, 0x03, 0xb3, 0x3e, 0xac, 0x4e, 0xd4, 0x91, 0x17, 0xe2, 0x4d, 0x68, 0xd1, 0xd0, - 0x0b, 0x22, 0xce, 0x72, 0xd4, 0xab, 0x06, 0x75, 0x33, 0x17, 0x0d, 0xe9, 0x05, 0x81, 0xd4, 0x17, - 0x04, 0xb2, 0xfb, 0xd2, 0x00, 0x7d, 0x0e, 0x50, 0xf0, 0x71, 0x11, 0xc6, 0x97, 0x09, 0x64, 0x3c, - 0xf1, 0xfa, 0xa5, 0x2b, 0xbb, 0x15, 0x2b, 0x95, 0x2e, 0xe9, 0x3a, 0x04, 0xe1, 0xba, 0xa1, 0xe9, - 0x2e, 0x13, 0x44, 0x2a, 0xbd, 0xef, 0x0e, 0x34, 0x8f, 0xb8, 0x0c, 0x5e, 0x07, 0xd4, 0x1c, 0xf8, - 0x07, 0x05, 0xf8, 0x0f, 0x80, 0x05, 0x6c, 0x14, 0x71, 0x3d, 0x16, 0x2c, 0x4f, 0xa2, 0xce, 0x02, - 0x76, 0x68, 0x84, 0x2c, 0xd4, 0x40, 0xa9, 0x84, 0xcb, 0x3c, 0x82, 0x7c, 0x54, 0xee, 0x4d, 0xf5, - 0xba, 0xde, 0x2c, 0xe2, 0x7e, 0x17, 0xd6, 0x67, 0xa5, 0x07, 0xb7, 0xd5, 0xb1, 0x11, 0xb8, 0xe5, - 0x09, 0xd3, 0x9e, 0x3d, 0x58, 0x8d, 0xb8, 0xf6, 0x98, 0xa7, 0x3d, 0xb2, 0x6a, 0xaa, 0xd3, 0x2b, - 0xaa, 0x53, 0xbe, 0x7d, 0xff, 0x30, 0x37, 0xd9, 0xf2, 0xcc, 0xd7, 0xfc, 0x66, 0x50, 0xed, 0x87, - 0xd0, 0xba, 0xb4, 0xc3, 0x75, 0xb5, 0xa9, 0x97, 0x6b, 0xf3, 0xd6, 0xa4, 0x3c, 0x29, 0x6a, 0xb3, - 0x01, 0x6b, 0x96, 0x54, 0xb9, 0x32, 0xb8, 0x07, 0xff, 0x96, 0xca, 0x74, 0xc1, 0x7d, 0xdb, 0x7a, - 0x4d, 0xe6, 0xb7, 0xa1, 0x7b, 0x85, 0x4c, 0xb1, 0x49, 0xe1, 0x73, 0x08, 0x22, 0xce, 0xc1, 0xa3, - 0x8f, 0x67, 0x1d, 0x74, 0x7a, 0xd6, 0x41, 0x5f, 0xce, 0x3a, 0xe8, 0xfd, 0x79, 0x67, 0xe9, 0xf4, - 0xbc, 0xb3, 0xf4, 0xf9, 0xbc, 0xb3, 0xf4, 0xaa, 0x77, 0x1c, 0xe8, 0x71, 0xe2, 0xf7, 0xa9, 0x88, - 0x06, 0x22, 0xce, 0xfe, 0x69, 0x03, 0xf3, 0x71, 0x32, 0xc8, 0x5e, 0xa1, 0xd9, 0x8e, 0xca, 0xaf, - 0x99, 0xd7, 0xe7, 0xfd, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf3, 0xe7, 0x64, 0xd4, 0x8b, 0x05, - 0x00, 0x00, + // 689 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0x61, 0x6b, 0x13, 0x31, + 0x1c, 0xc6, 0x77, 0xbd, 0xb5, 0x5b, 0xff, 0x6d, 0xc7, 0x2d, 0x4c, 0x0d, 0x45, 0x6b, 0xed, 0x54, + 0x26, 0xce, 0x96, 0xe9, 0x1b, 0x99, 0x38, 0xd8, 0x40, 0x10, 0x64, 0x20, 0x55, 0x06, 0xfa, 0xa6, + 0xdc, 0x25, 0x71, 0x8d, 0xbd, 0xbb, 0xd4, 0x24, 0x57, 0xd6, 0x2f, 0x21, 0x7e, 0x02, 0x3f, 0x8f, + 0x2f, 0x07, 0xbe, 0xf1, 0xa5, 0x6c, 0xdf, 0xc0, 0x57, 0x82, 0x20, 0x72, 0xc9, 0x5d, 0x77, 0x73, + 0x85, 0x89, 0xaf, 0xda, 0x3c, 0x79, 0x92, 0x5c, 0x7e, 0xcf, 0x3d, 0x07, 0x88, 0x72, 0xda, 0x9b, + 0x6c, 0xf5, 0x94, 0xf6, 0x35, 0xeb, 0x8e, 0xa5, 0xd0, 0x02, 0x55, 0x28, 0xa7, 0xdd, 0xc9, 0x56, + 0xf3, 0x1a, 0x11, 0x2a, 0x12, 0xaa, 0x27, 0x64, 0x94, 0x5a, 0x84, 0x8c, 0xac, 0xa1, 0xb9, 0x96, + 0x2d, 0x3a, 0x64, 0x31, 0x53, 0x5c, 0x59, 0xb5, 0xf3, 0xb3, 0x04, 0x4b, 0xbb, 0x84, 0x88, 0x24, + 0xd6, 0xc8, 0x03, 0x97, 0x72, 0x8a, 0x9d, 0xb6, 0xb3, 0x51, 0xed, 0xa7, 0x7f, 0x51, 0x0b, 0x80, + 0x88, 0x58, 0x4b, 0x11, 0x86, 0x4c, 0xe2, 0x92, 0x99, 0x28, 0x28, 0x08, 0xc3, 0x92, 0x4a, 0x82, + 0xf7, 0x8c, 0x68, 0xec, 0x9a, 0xc9, 0x7c, 0x88, 0x6e, 0xc3, 0xca, 0x38, 0x09, 0x42, 0x4e, 0x06, + 0x23, 0x36, 0x1d, 0x0c, 0xd9, 0x11, 0x5e, 0x34, 0x86, 0xba, 0x55, 0x5f, 0xb0, 0xe9, 0x73, 0x76, + 0x84, 0xee, 0xc0, 0x8a, 0xaf, 0x14, 0x93, 0x9a, 0x8b, 0x78, 0xa0, 0xa7, 0x63, 0x86, 0xcb, 0xc6, + 0xd5, 0x98, 0xa9, 0xaf, 0xa7, 0x63, 0x86, 0xf6, 0xa0, 0xe6, 0x13, 0x92, 0x44, 0x49, 0xe8, 0x6b, + 0x21, 0x71, 0xa5, 0xed, 0x6e, 0xd4, 0x1e, 0xb6, 0xbb, 0xf6, 0xc6, 0xdd, 0xec, 0xf1, 0xd3, 0xdf, + 0xdc, 0xf2, 0x2c, 0xd6, 0x72, 0xda, 0x2f, 0x2e, 0x4a, 0x8f, 0x22, 0x92, 0xf9, 0xe6, 0xa4, 0x20, + 0x14, 0x64, 0x84, 0x97, 0xda, 0xce, 0x86, 0xdb, 0x6f, 0xe4, 0xea, 0x5e, 0x2a, 0x36, 0x77, 0xc0, + 0xfb, 0x7b, 0x9f, 0x94, 0xcb, 0x88, 0x4d, 0x73, 0x2e, 0x23, 0x36, 0x45, 0x6b, 0x50, 0x9e, 0xf8, + 0x61, 0xc2, 0x0c, 0x92, 0x7a, 0xdf, 0x0e, 0xb6, 0x4b, 0x8f, 0x9d, 0xed, 0x7b, 0x3f, 0x3e, 0x7f, + 0xfd, 0xe8, 0xae, 0x43, 0xd9, 0xb0, 0x44, 0x18, 0xd0, 0x19, 0xae, 0xcd, 0x0c, 0x8e, 0xe7, 0x60, + 0x07, 0x3b, 0x9d, 0xdf, 0x25, 0xa8, 0xbe, 0xcc, 0x69, 0xa0, 0xab, 0x50, 0x89, 0x93, 0x28, 0x60, + 0xd2, 0x9c, 0xb3, 0xd8, 0xcf, 0x46, 0x79, 0x28, 0xa5, 0xb3, 0x50, 0x6e, 0x41, 0x5d, 0x89, 0x58, + 0x0e, 0x7c, 0x4a, 0x25, 0x53, 0x2a, 0x23, 0x5f, 0x4b, 0xb5, 0x5d, 0x2b, 0xa1, 0x9b, 0x50, 0x63, + 0x7a, 0x38, 0x73, 0x58, 0xf4, 0xc0, 0xf4, 0xb0, 0x60, 0x08, 0x34, 0x99, 0x19, 0x2c, 0x75, 0x08, + 0x34, 0xc9, 0x0d, 0x17, 0xf3, 0xab, 0xcc, 0xc9, 0xef, 0x0a, 0x54, 0x46, 0x6a, 0x30, 0xf1, 0x43, + 0x03, 0xb3, 0xda, 0x2f, 0x8f, 0xd4, 0x81, 0x1f, 0xa2, 0x75, 0x68, 0x90, 0xd0, 0xe7, 0x11, 0xa3, + 0x19, 0xea, 0x65, 0x83, 0xba, 0x9e, 0x89, 0x86, 0xf4, 0x9c, 0x40, 0xaa, 0x73, 0x02, 0xd9, 0x7e, + 0x63, 0x80, 0xbe, 0x02, 0xc8, 0xf9, 0x78, 0x0e, 0x42, 0xe7, 0x09, 0xa4, 0x3c, 0xd1, 0xea, 0xb9, + 0x2b, 0x7b, 0x25, 0x2b, 0x15, 0x2e, 0xe9, 0xb9, 0xd8, 0x41, 0x55, 0x43, 0xd3, 0x5b, 0xc4, 0x0e, + 0x2e, 0x75, 0x7e, 0xb9, 0x50, 0x3f, 0x60, 0x92, 0xbf, 0xe3, 0xc4, 0x1c, 0xf8, 0x1f, 0x05, 0xb8, + 0x01, 0x40, 0x39, 0x1d, 0x44, 0x4c, 0x0f, 0x05, 0xcd, 0x92, 0xa8, 0x52, 0x4e, 0xf7, 0x8d, 0x90, + 0x86, 0xca, 0x95, 0x4a, 0x98, 0xcc, 0x22, 0xc8, 0x46, 0xc5, 0xde, 0x94, 0x2f, 0xeb, 0xcd, 0x3c, + 0xee, 0xf7, 0x61, 0x75, 0x52, 0x78, 0x70, 0x5b, 0x1d, 0x1b, 0x81, 0x57, 0x9c, 0x30, 0xed, 0xd9, + 0x81, 0xe5, 0x88, 0x69, 0x9f, 0xfa, 0xda, 0xc7, 0xcb, 0xa6, 0x3a, 0x9d, 0xbc, 0x3a, 0xc5, 0xdb, + 0x77, 0xf7, 0x33, 0x93, 0x2d, 0xcf, 0x6c, 0xcd, 0x3f, 0x06, 0xd5, 0x7c, 0x02, 0x8d, 0x73, 0x3b, + 0x5c, 0x56, 0x9b, 0x6a, 0xb1, 0x36, 0x1f, 0x4c, 0xca, 0xa3, 0xbc, 0x36, 0x6b, 0xb0, 0x62, 0x49, + 0x15, 0x2b, 0x83, 0x3a, 0x70, 0xbd, 0x50, 0xa6, 0x33, 0xee, 0x9b, 0xd6, 0x6b, 0x32, 0xbf, 0x0b, + 0xed, 0x0b, 0x64, 0xf2, 0x4d, 0x72, 0x9f, 0x8b, 0x1d, 0xec, 0xee, 0x3d, 0xfd, 0x72, 0xd2, 0x72, + 0x8e, 0x4f, 0x5a, 0xce, 0xf7, 0x93, 0x96, 0xf3, 0xe9, 0xb4, 0xb5, 0x70, 0x7c, 0xda, 0x5a, 0xf8, + 0x76, 0xda, 0x5a, 0x78, 0xbb, 0x7e, 0xc8, 0xf5, 0x30, 0x09, 0xba, 0x44, 0x44, 0xbd, 0xf4, 0x3d, + 0x7b, 0xc0, 0x45, 0x4f, 0xc5, 0x92, 0xf6, 0x8e, 0x7a, 0xe9, 0x37, 0x34, 0xdd, 0x52, 0x05, 0x15, + 0xf3, 0xfd, 0x7c, 0xf4, 0x27, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xca, 0x57, 0xe7, 0x8c, 0x05, 0x00, + 0x00, } func (m *Account) Marshal() (dAtA []byte, err error) { diff --git a/x/did/types/tx.pb.go b/x/did/types/tx.pb.go index 3e25a3a4f..0fa8aa7a6 100644 --- a/x/did/types/tx.pb.go +++ b/x/did/types/tx.pb.go @@ -783,55 +783,56 @@ func init() { func init() { proto.RegisterFile("did/v1/tx.proto", fileDescriptor_d73284df019ff211) } var fileDescriptor_d73284df019ff211 = []byte{ - // 767 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xcd, 0x4e, 0xdb, 0x4c, - 0x14, 0xcd, 0x10, 0x08, 0xe4, 0x92, 0x10, 0xbe, 0x51, 0x3e, 0xc5, 0x58, 0x90, 0x44, 0x46, 0xa8, - 0x08, 0x95, 0x44, 0x50, 0xa9, 0x42, 0xb4, 0x6a, 0x05, 0x2a, 0x15, 0x88, 0x46, 0x6a, 0x5d, 0xba, - 0x61, 0x93, 0x1a, 0x7b, 0xe4, 0xb8, 0x24, 0x9e, 0xc8, 0x33, 0x41, 0xc9, 0xae, 0xea, 0x13, 0xf4, - 0x05, 0xfa, 0x04, 0xdd, 0xb0, 0xe8, 0xaa, 0xea, 0x03, 0xb0, 0x44, 0x5d, 0x75, 0x55, 0x55, 0x20, - 0x95, 0x27, 0xe8, 0xb2, 0x52, 0x35, 0x76, 0xe2, 0xd8, 0xf9, 0x29, 0x08, 0x50, 0x37, 0x91, 0xef, - 0x3d, 0xf7, 0x9e, 0x39, 0xf7, 0x78, 0x66, 0x62, 0x48, 0x19, 0x96, 0x51, 0x3c, 0x5a, 0x29, 0xf2, - 0x66, 0xa1, 0xee, 0x50, 0x4e, 0x71, 0xcc, 0xb0, 0x8c, 0xc2, 0xd1, 0x8a, 0x9c, 0xd1, 0x29, 0xab, - 0x51, 0x56, 0xac, 0x31, 0x53, 0xe0, 0x35, 0x66, 0x7a, 0x05, 0xf2, 0x8c, 0x07, 0x94, 0xdd, 0xa8, - 0xe8, 0x05, 0x6d, 0x28, 0xdd, 0x26, 0x33, 0x89, 0x4d, 0x98, 0xe5, 0x67, 0x4d, 0x6a, 0x52, 0xaf, - 0x5a, 0x3c, 0x79, 0x59, 0xe5, 0x27, 0x82, 0xff, 0x4b, 0xcc, 0x7c, 0x66, 0xd9, 0x87, 0x1b, 0x0d, - 0x5e, 0x21, 0x36, 0xb7, 0x74, 0x8d, 0x5b, 0xd4, 0xc6, 0x6b, 0x00, 0x3a, 0xb5, 0xb9, 0x43, 0xab, - 0x55, 0xe2, 0x48, 0x28, 0x8f, 0x16, 0xe3, 0x9b, 0xd2, 0xd7, 0x4f, 0xcb, 0xe9, 0xf6, 0x5a, 0x1b, - 0x86, 0xe1, 0x10, 0xc6, 0x5e, 0x72, 0xc7, 0xb2, 0x4d, 0x35, 0x50, 0x8b, 0x25, 0x18, 0x67, 0x8d, - 0x83, 0x37, 0x44, 0xe7, 0xd2, 0x88, 0x68, 0x53, 0x3b, 0x21, 0x9e, 0x85, 0xb8, 0xc6, 0x18, 0x71, - 0xc4, 0x02, 0x52, 0xd4, 0xc5, 0xba, 0x09, 0x3c, 0x0f, 0x49, 0xdd, 0x21, 0x86, 0xd0, 0xa0, 0x55, - 0xcb, 0x96, 0x21, 0x8d, 0xe6, 0xd1, 0x62, 0x42, 0x4d, 0x74, 0x93, 0x3b, 0x06, 0x5e, 0x80, 0xa9, - 0x9a, 0xa6, 0x6b, 0x0e, 0xa5, 0x76, 0x99, 0xd3, 0x43, 0x62, 0x4b, 0x63, 0x2e, 0x4f, 0xb2, 0x93, - 0xdd, 0x13, 0xc9, 0xf5, 0xd4, 0xbb, 0x8b, 0xe3, 0xa5, 0x80, 0x28, 0x65, 0x17, 0xe6, 0x06, 0xce, - 0xa9, 0x12, 0x56, 0xa7, 0x36, 0x23, 0x9e, 0x6a, 0x5d, 0x27, 0x8c, 0xb9, 0xc3, 0x4e, 0xa8, 0x9d, - 0x10, 0x4f, 0x43, 0xd4, 0xb0, 0x8c, 0xf6, 0x2c, 0xe2, 0x51, 0xf9, 0x82, 0x60, 0xba, 0xc3, 0xe6, - 0xcb, 0xff, 0xf7, 0x86, 0xf5, 0x7b, 0x31, 0x7a, 0x25, 0x2f, 0x9e, 0x82, 0xd4, 0xab, 0xfe, 0x5a, - 0x36, 0xfc, 0x46, 0x90, 0x28, 0x31, 0x73, 0xab, 0x49, 0xf4, 0x06, 0x27, 0x7b, 0xcd, 0x1b, 0x58, - 0xf0, 0x08, 0x26, 0x6a, 0x84, 0x31, 0xcd, 0x24, 0x4c, 0x1a, 0xc9, 0x47, 0x17, 0x27, 0x57, 0x95, - 0x82, 0x77, 0x04, 0x0a, 0xc1, 0x15, 0x0a, 0xa5, 0x76, 0xd1, 0x96, 0xcd, 0x9d, 0x96, 0xea, 0xf7, - 0x0c, 0xb0, 0x22, 0x3a, 0xc0, 0x0a, 0xf9, 0x01, 0x24, 0x43, 0x0c, 0x62, 0xa8, 0x43, 0xd2, 0xf2, - 0xa4, 0xaa, 0xe2, 0x11, 0xa7, 0x61, 0xec, 0x48, 0xab, 0x36, 0x88, 0x3b, 0x68, 0x42, 0xf5, 0x82, - 0xf5, 0x91, 0x35, 0xd4, 0xef, 0xe3, 0x0e, 0xa4, 0x83, 0xe2, 0xae, 0xe0, 0x61, 0x06, 0xc6, 0x79, - 0xb3, 0x5c, 0xd1, 0x58, 0xa5, 0xed, 0x63, 0x8c, 0x37, 0xb7, 0x35, 0x56, 0x51, 0x3e, 0x22, 0xc0, - 0x25, 0x66, 0xbe, 0xb2, 0xab, 0xb7, 0xb4, 0xa7, 0xe6, 0x21, 0xe9, 0x6f, 0x94, 0x72, 0xf7, 0xbd, - 0x25, 0xfc, 0xe4, 0x13, 0xcb, 0xb8, 0xa2, 0x6b, 0xfd, 0x83, 0x6f, 0x83, 0xdc, 0x2f, 0xf6, 0x5a, - 0x5b, 0xe8, 0x33, 0x82, 0x4c, 0x97, 0xea, 0xb6, 0x6e, 0xa0, 0x65, 0xc0, 0x5a, 0x88, 0x2b, 0xe0, - 0xc0, 0x7f, 0x61, 0xe4, 0x26, 0x36, 0x94, 0x20, 0x37, 0x44, 0xfb, 0xb5, 0xbc, 0xf8, 0x80, 0x20, - 0x25, 0xf8, 0xea, 0x86, 0xc6, 0xc9, 0x73, 0xcd, 0xd1, 0x6a, 0x0c, 0xdf, 0x87, 0xb8, 0xd0, 0x4b, - 0x1d, 0x8b, 0xb7, 0x2e, 0xb5, 0xa0, 0x5b, 0x8a, 0xef, 0x42, 0xac, 0xee, 0x32, 0xb8, 0x0b, 0x4c, - 0xae, 0x4e, 0x75, 0x4e, 0x93, 0xc7, 0xbb, 0x39, 0x7a, 0xf2, 0x3d, 0x17, 0x51, 0xdb, 0x35, 0x62, - 0xcf, 0x07, 0xe7, 0xf6, 0x82, 0xf5, 0x29, 0x31, 0x6f, 0x97, 0x53, 0x99, 0xf1, 0x5e, 0x55, 0x40, - 0x5e, 0x67, 0xcc, 0xd5, 0x5f, 0x51, 0x88, 0x96, 0x98, 0x89, 0x1f, 0x43, 0xbc, 0x7b, 0x1b, 0xa4, - 0x07, 0x9d, 0x60, 0x79, 0x76, 0x50, 0xd6, 0xf7, 0x6b, 0x17, 0x92, 0xe1, 0x5b, 0x55, 0x0a, 0x94, - 0x87, 0x10, 0x39, 0x3f, 0x0c, 0xf1, 0xc9, 0xf6, 0x01, 0x0f, 0xf8, 0x63, 0x9b, 0xeb, 0xed, 0x0b, - 0xc1, 0xf2, 0xc2, 0x5f, 0x61, 0x9f, 0xfb, 0x05, 0xa4, 0x7a, 0x0f, 0xab, 0x1c, 0xe8, 0xec, 0xc1, - 0x64, 0x65, 0x38, 0xe6, 0x53, 0xbe, 0x86, 0xf4, 0xc0, 0x73, 0x90, 0xeb, 0xef, 0x0d, 0x4b, 0xbe, - 0x73, 0x49, 0x81, 0xbf, 0xc2, 0x36, 0x24, 0x42, 0xbb, 0x2b, 0x13, 0x6c, 0x0c, 0x00, 0x72, 0x6e, - 0x08, 0xd0, 0x61, 0x92, 0xc7, 0xde, 0x5e, 0x1c, 0x2f, 0xa1, 0xcd, 0x87, 0x27, 0x67, 0x59, 0x74, - 0x7a, 0x96, 0x45, 0x3f, 0xce, 0xb2, 0xe8, 0xfd, 0x79, 0x36, 0x72, 0x7a, 0x9e, 0x8d, 0x7c, 0x3b, - 0xcf, 0x46, 0xf6, 0x15, 0xd3, 0xe2, 0x95, 0xc6, 0x41, 0x41, 0xa7, 0xb5, 0x22, 0xb5, 0x19, 0xb5, - 0x9d, 0xa2, 0xfb, 0xd3, 0x2c, 0x8a, 0xaf, 0x13, 0xde, 0xaa, 0x13, 0x76, 0x10, 0x73, 0xbf, 0x41, - 0xee, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x93, 0x06, 0x64, 0x08, 0xfe, 0x08, 0x00, 0x00, + // 770 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x4f, 0x13, 0x4f, + 0x18, 0xee, 0x52, 0x28, 0xf4, 0xa5, 0xa5, 0xfc, 0x26, 0xfd, 0xa5, 0xcb, 0x06, 0xda, 0xa6, 0x84, + 0x48, 0x88, 0x74, 0x03, 0x26, 0x86, 0x60, 0xd4, 0x40, 0xc4, 0x40, 0xb0, 0x89, 0xae, 0x78, 0xe1, + 0x52, 0x97, 0x9d, 0xc9, 0x76, 0xa5, 0xdd, 0x69, 0x76, 0xa6, 0xa4, 0xbd, 0x19, 0x3f, 0x81, 0x5f, + 0xc0, 0x4f, 0xe0, 0x85, 0x83, 0x27, 0xe3, 0x07, 0xe0, 0x48, 0x3c, 0x79, 0x32, 0x06, 0x12, 0xf9, + 0x04, 0x1e, 0x4d, 0xcc, 0xec, 0xb6, 0xdb, 0xdd, 0xfe, 0x11, 0x02, 0xc4, 0xdb, 0xbc, 0xef, 0xf3, + 0xbe, 0xcf, 0x3c, 0xef, 0xd3, 0x99, 0xe9, 0x42, 0x0a, 0x5b, 0x58, 0x3d, 0x5a, 0x51, 0x79, 0xb3, + 0x58, 0x77, 0x28, 0xa7, 0x28, 0x86, 0x2d, 0x5c, 0x3c, 0x5a, 0x51, 0x32, 0x06, 0x65, 0x35, 0xca, + 0xd4, 0x1a, 0x33, 0x05, 0x5e, 0x63, 0xa6, 0x57, 0xa0, 0xcc, 0x78, 0x40, 0xd9, 0x8d, 0x54, 0x2f, + 0x68, 0x43, 0xe9, 0x36, 0x99, 0x49, 0x6c, 0xc2, 0x2c, 0x3f, 0x6b, 0x52, 0x93, 0x7a, 0xd5, 0x62, + 0xe5, 0x65, 0x0b, 0x3f, 0x25, 0xf8, 0xbf, 0xc4, 0xcc, 0x67, 0x96, 0x7d, 0xb8, 0xd1, 0xe0, 0x15, + 0x62, 0x73, 0xcb, 0xd0, 0xb9, 0x45, 0x6d, 0xb4, 0x06, 0x60, 0x50, 0x9b, 0x3b, 0xb4, 0x5a, 0x25, + 0x8e, 0x2c, 0xe5, 0xa5, 0xc5, 0xf8, 0xa6, 0xfc, 0xf5, 0xd3, 0x72, 0xba, 0xbd, 0xd7, 0x06, 0xc6, + 0x0e, 0x61, 0xec, 0x25, 0x77, 0x2c, 0xdb, 0xd4, 0x02, 0xb5, 0x48, 0x86, 0x71, 0xd6, 0x38, 0x78, + 0x43, 0x0c, 0x2e, 0x8f, 0x88, 0x36, 0xad, 0x13, 0xa2, 0x59, 0x88, 0xeb, 0x8c, 0x11, 0x47, 0x6c, + 0x20, 0x47, 0x5d, 0xac, 0x9b, 0x40, 0xf3, 0x90, 0x34, 0x1c, 0x82, 0x85, 0x06, 0xbd, 0x5a, 0xb6, + 0xb0, 0x3c, 0x9a, 0x97, 0x16, 0x13, 0x5a, 0xa2, 0x9b, 0xdc, 0xc1, 0x68, 0x01, 0xa6, 0x6a, 0xba, + 0xa1, 0x3b, 0x94, 0xda, 0x65, 0x4e, 0x0f, 0x89, 0x2d, 0x8f, 0xb9, 0x3c, 0xc9, 0x4e, 0x76, 0x4f, + 0x24, 0xd7, 0x53, 0xef, 0x2e, 0x8e, 0x97, 0x02, 0xa2, 0x0a, 0xbb, 0x30, 0x37, 0x70, 0x4e, 0x8d, + 0xb0, 0x3a, 0xb5, 0x19, 0xf1, 0x54, 0x1b, 0x06, 0x61, 0xcc, 0x1d, 0x76, 0x42, 0xeb, 0x84, 0x68, + 0x1a, 0xa2, 0xd8, 0xc2, 0xed, 0x59, 0xc4, 0xb2, 0xf0, 0x45, 0x82, 0xe9, 0x0e, 0x9b, 0x2f, 0xff, + 0xdf, 0x1b, 0xd6, 0xef, 0xc5, 0xe8, 0x95, 0xbc, 0x78, 0x0a, 0x72, 0xaf, 0xfa, 0x6b, 0xd9, 0xf0, + 0x5b, 0x82, 0x44, 0x89, 0x99, 0x5b, 0x4d, 0x62, 0x34, 0x38, 0xd9, 0x6b, 0xde, 0xc0, 0x82, 0x47, + 0x30, 0x51, 0x23, 0x8c, 0xe9, 0x26, 0x61, 0xf2, 0x48, 0x3e, 0xba, 0x38, 0xb9, 0x5a, 0x28, 0x7a, + 0x57, 0xa0, 0x18, 0xdc, 0xa1, 0x58, 0x6a, 0x17, 0x6d, 0xd9, 0xdc, 0x69, 0x69, 0x7e, 0xcf, 0x00, + 0x2b, 0xa2, 0x03, 0xac, 0x50, 0x1e, 0x40, 0x32, 0xc4, 0x20, 0x86, 0x3a, 0x24, 0x2d, 0x4f, 0xaa, + 0x26, 0x96, 0x28, 0x0d, 0x63, 0x47, 0x7a, 0xb5, 0x41, 0xdc, 0x41, 0x13, 0x9a, 0x17, 0xac, 0x8f, + 0xac, 0x49, 0xfd, 0x3e, 0xee, 0x40, 0x3a, 0x28, 0xee, 0x0a, 0x1e, 0x66, 0x60, 0x9c, 0x37, 0xcb, + 0x15, 0x9d, 0x55, 0xda, 0x3e, 0xc6, 0x78, 0x73, 0x5b, 0x67, 0x95, 0xc2, 0x47, 0x09, 0x50, 0x89, + 0x99, 0xaf, 0xec, 0xea, 0x2d, 0x9d, 0xa9, 0x79, 0x48, 0xfa, 0x07, 0xa5, 0xdc, 0xfd, 0xdd, 0x12, + 0x7e, 0xf2, 0x89, 0x85, 0xaf, 0xe8, 0x5a, 0xff, 0xe0, 0xdb, 0xa0, 0xf4, 0x8b, 0xbd, 0xd6, 0x11, + 0xfa, 0x2c, 0x41, 0xa6, 0x4b, 0x75, 0x5b, 0x2f, 0xd0, 0x32, 0x20, 0x3d, 0xc4, 0x15, 0x70, 0xe0, + 0xbf, 0x30, 0x72, 0x13, 0x1b, 0x4a, 0x90, 0x1b, 0xa2, 0xfd, 0x5a, 0x5e, 0x7c, 0x90, 0x20, 0x25, + 0xf8, 0xea, 0x58, 0xe7, 0xe4, 0xb9, 0xee, 0xe8, 0x35, 0x86, 0xee, 0x43, 0x5c, 0xe8, 0xa5, 0x8e, + 0xc5, 0x5b, 0x97, 0x5a, 0xd0, 0x2d, 0x45, 0x77, 0x21, 0x56, 0x77, 0x19, 0xdc, 0x0d, 0x26, 0x57, + 0xa7, 0x3a, 0xb7, 0xc9, 0xe3, 0xdd, 0x1c, 0x3d, 0xf9, 0x9e, 0x8b, 0x68, 0xed, 0x1a, 0x71, 0xe6, + 0x83, 0x73, 0x7b, 0xc1, 0xfa, 0x94, 0x98, 0xb7, 0xcb, 0x59, 0x98, 0xf1, 0x7e, 0xaa, 0x80, 0xbc, + 0xce, 0x98, 0xab, 0xbf, 0xa2, 0x10, 0x2d, 0x31, 0x13, 0x3d, 0x86, 0x78, 0xf7, 0x35, 0x48, 0x0f, + 0xba, 0xc1, 0xca, 0xec, 0xa0, 0xac, 0xef, 0xd7, 0x2e, 0x24, 0xc3, 0xaf, 0xaa, 0x1c, 0x28, 0x0f, + 0x21, 0x4a, 0x7e, 0x18, 0xe2, 0x93, 0xed, 0x03, 0x1a, 0xf0, 0xc7, 0x36, 0xd7, 0xdb, 0x17, 0x82, + 0x95, 0x85, 0xbf, 0xc2, 0x3e, 0xf7, 0x0b, 0x48, 0xf5, 0x5e, 0x56, 0x25, 0xd0, 0xd9, 0x83, 0x29, + 0x85, 0xe1, 0x98, 0x4f, 0xf9, 0x1a, 0xd2, 0x03, 0xef, 0x41, 0xae, 0xbf, 0x37, 0x2c, 0xf9, 0xce, + 0x25, 0x05, 0xfe, 0x0e, 0xdb, 0x90, 0x08, 0x9d, 0xae, 0x4c, 0xb0, 0x31, 0x00, 0x28, 0xb9, 0x21, + 0x40, 0x87, 0x49, 0x19, 0x7b, 0x7b, 0x71, 0xbc, 0x24, 0x6d, 0x3e, 0x3c, 0x39, 0xcb, 0x4a, 0xa7, + 0x67, 0x59, 0xe9, 0xc7, 0x59, 0x56, 0x7a, 0x7f, 0x9e, 0x8d, 0x9c, 0x9e, 0x67, 0x23, 0xdf, 0xce, + 0xb3, 0x91, 0xfd, 0x79, 0xd3, 0xe2, 0x95, 0xc6, 0x41, 0xd1, 0xa0, 0x35, 0x95, 0x51, 0xdb, 0x59, + 0xb6, 0xa8, 0xca, 0x6c, 0x07, 0xab, 0x4d, 0x55, 0x7c, 0x9e, 0xf0, 0x56, 0x9d, 0xb0, 0x83, 0x98, + 0xfb, 0x11, 0x72, 0xef, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0xab, 0x39, 0xaa, 0xff, 0x08, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/dwn/autocli.go b/x/dwn/autocli.go index 0c7cd0b33..8f0b37dfe 100644 --- a/x/dwn/autocli.go +++ b/x/dwn/autocli.go @@ -2,7 +2,7 @@ package module import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" - modulev1 "github.com/onsonr/sonr/api/dwn/v1" + modulev1 "github.com/sonr-io/snrd/api/dwn/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/dwn/client/cli/query.go b/x/dwn/client/cli/query.go index 8ecd129fc..60b6d4c50 100644 --- a/x/dwn/client/cli/query.go +++ b/x/dwn/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" ) // !NOTE: Must enable in module.go (disabled in favor of autocli.go) diff --git a/x/dwn/client/cli/tx.go b/x/dwn/client/cli/tx.go index b4bb79e37..c9de7c7c8 100644 --- a/x/dwn/client/cli/tx.go +++ b/x/dwn/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" ) // !NOTE: Must enable in module.go (disabled in favor of autocli.go) diff --git a/x/dwn/depinject.go b/x/dwn/depinject.go index ffbc5bbf5..66d913dd0 100644 --- a/x/dwn/depinject.go +++ b/x/dwn/depinject.go @@ -16,8 +16,8 @@ import ( "cosmossdk.io/depinject" "cosmossdk.io/log" - modulev1 "github.com/onsonr/sonr/api/dwn/module/v1" - "github.com/onsonr/sonr/x/dwn/keeper" + modulev1 "github.com/sonr-io/snrd/api/dwn/module/v1" + "github.com/sonr-io/snrd/x/dwn/keeper" ) var _ appmodule.AppModule = AppModule{} diff --git a/x/dwn/keeper/genesis_test.go b/x/dwn/keeper/genesis_test.go index 8a18e86ba..1dff6e03a 100644 --- a/x/dwn/keeper/genesis_test.go +++ b/x/dwn/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "testing" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" "github.com/stretchr/testify/require" ) diff --git a/x/dwn/keeper/keeper.go b/x/dwn/keeper/keeper.go index 0357613c1..14968e9f4 100644 --- a/x/dwn/keeper/keeper.go +++ b/x/dwn/keeper/keeper.go @@ -13,8 +13,8 @@ import ( "cosmossdk.io/log" "cosmossdk.io/orm/model/ormdb" - apiv1 "github.com/onsonr/sonr/api/dwn/v1" - "github.com/onsonr/sonr/x/dwn/types" + apiv1 "github.com/sonr-io/snrd/api/dwn/v1" + "github.com/sonr-io/snrd/x/dwn/types" ) type Keeper struct { diff --git a/x/dwn/keeper/keeper_test.go b/x/dwn/keeper/keeper_test.go index 154bc8b53..e94817208 100644 --- a/x/dwn/keeper/keeper_test.go +++ b/x/dwn/keeper/keeper_test.go @@ -25,9 +25,9 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - module "github.com/onsonr/sonr/x/dwn" - "github.com/onsonr/sonr/x/dwn/keeper" - "github.com/onsonr/sonr/x/dwn/types" + module "github.com/sonr-io/snrd/x/dwn" + "github.com/sonr-io/snrd/x/dwn/keeper" + "github.com/sonr-io/snrd/x/dwn/types" ) var maccPerms = map[string][]string{ diff --git a/x/dwn/keeper/msg_server.go b/x/dwn/keeper/msg_server.go index 52d637dfa..ba05b9771 100644 --- a/x/dwn/keeper/msg_server.go +++ b/x/dwn/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "cosmossdk.io/errors" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" ) type msgServer struct { diff --git a/x/dwn/keeper/msg_server_test.go b/x/dwn/keeper/msg_server_test.go index 58580e911..82c13b1e3 100644 --- a/x/dwn/keeper/msg_server_test.go +++ b/x/dwn/keeper/msg_server_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" ) func TestParams(t *testing.T) { diff --git a/x/dwn/keeper/query_server.go b/x/dwn/keeper/query_server.go index c4e572466..3f0a6aac0 100644 --- a/x/dwn/keeper/query_server.go +++ b/x/dwn/keeper/query_server.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" ) var _ types.QueryServer = Querier{} diff --git a/x/dwn/module.go b/x/dwn/module.go index c6015efa0..3d971e2f2 100644 --- a/x/dwn/module.go +++ b/x/dwn/module.go @@ -18,8 +18,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/onsonr/sonr/x/dwn/keeper" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/keeper" + "github.com/sonr-io/snrd/x/dwn/types" ) const ( diff --git a/x/dwn/types/genesis.pb.go b/x/dwn/types/genesis.pb.go index 9087f6adb..487c16953 100644 --- a/x/dwn/types/genesis.pb.go +++ b/x/dwn/types/genesis.pb.go @@ -309,34 +309,34 @@ func init() { func init() { proto.RegisterFile("dwn/v1/genesis.proto", fileDescriptor_8e7492a25d5871dc) } var fileDescriptor_8e7492a25d5871dc = []byte{ - // 423 bytes of a gzipped FileDescriptorProto + // 427 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x92, 0xc1, 0x6e, 0xd3, 0x30, - 0x18, 0xc7, 0x93, 0xb5, 0x8a, 0xda, 0x2f, 0x11, 0xda, 0xcc, 0x84, 0x42, 0x85, 0xd2, 0x2a, 0xa7, - 0x0a, 0xa6, 0x58, 0x2b, 0x12, 0x48, 0xd3, 0x2e, 0x8c, 0x03, 0x47, 0x50, 0xb8, 0x71, 0x41, 0x6e, - 0x62, 0x05, 0x8b, 0xc4, 0x8e, 0x6c, 0xa7, 0xdd, 0x1e, 0x01, 0x4e, 0x1c, 0x39, 0xee, 0x11, 0x78, - 0x8c, 0x1d, 0x77, 0xe4, 0x84, 0x50, 0x7b, 0x80, 0xc7, 0x98, 0xe2, 0xc4, 0xeb, 0x7a, 0xb1, 0x3e, - 0xff, 0xfe, 0xdf, 0xe7, 0xff, 0xdf, 0x96, 0xe1, 0x38, 0x5f, 0x73, 0xbc, 0x3a, 0xc5, 0x05, 0xe5, - 0x54, 0x31, 0x95, 0xd4, 0x52, 0x68, 0x81, 0xbc, 0x7c, 0xcd, 0x93, 0xd5, 0xe9, 0xe4, 0xb8, 0x10, - 0x85, 0x30, 0x08, 0xb7, 0x55, 0xa7, 0x4e, 0x8e, 0x48, 0xc5, 0xb8, 0xc0, 0x66, 0xed, 0x50, 0x7c, - 0x0e, 0xc1, 0xbb, 0xee, 0x84, 0x8f, 0x9a, 0x68, 0x8a, 0x4e, 0xc0, 0xab, 0x89, 0x24, 0x95, 0x0a, - 0xdd, 0x99, 0x3b, 0xf7, 0x17, 0x8f, 0x92, 0xee, 0xc4, 0xe4, 0x83, 0xa1, 0x17, 0xc3, 0x9b, 0x3f, - 0x53, 0x27, 0xed, 0x7b, 0xe2, 0x6f, 0x2e, 0x78, 0x9d, 0x80, 0x5e, 0x43, 0x40, 0xb4, 0xa6, 0xbc, - 0x21, 0x9a, 0x09, 0xde, 0x8e, 0x0f, 0xe6, 0xfe, 0xe2, 0xb1, 0x1d, 0x7f, 0xb3, 0xd3, 0xd2, 0xbd, - 0x46, 0xf4, 0x02, 0x8e, 0x48, 0x59, 0x8a, 0x35, 0xcd, 0x3f, 0x8b, 0x9a, 0x4a, 0xa2, 0x85, 0x54, - 0xe1, 0xc1, 0x6c, 0x30, 0x1f, 0xa7, 0x87, 0xbd, 0xf0, 0xde, 0xf2, 0xb3, 0xa7, 0x3f, 0xaf, 0xa7, - 0xce, 0xff, 0xeb, 0xa9, 0xfb, 0xfd, 0xdf, 0xaf, 0xe7, 0xc1, 0x8a, 0x34, 0xa5, 0xc6, 0x7d, 0x16, - 0x05, 0xfe, 0x03, 0x13, 0x74, 0x02, 0x23, 0x49, 0x95, 0x68, 0x64, 0x46, 0xfb, 0xab, 0x1c, 0xda, - 0x2c, 0x69, 0xcf, 0xd3, 0xfb, 0x0e, 0xf4, 0x0a, 0x82, 0x8c, 0xd4, 0x64, 0xc9, 0x4a, 0xa6, 0x19, - 0xed, 0xfc, 0xfd, 0x05, 0xb2, 0x13, 0x6f, 0xad, 0x76, 0x95, 0xee, 0xf5, 0xc5, 0x97, 0x00, 0x3b, - 0x0d, 0x21, 0x18, 0x72, 0x52, 0x75, 0x7e, 0xe3, 0xd4, 0xd4, 0xe8, 0x89, 0x79, 0x50, 0xca, 0x75, - 0x78, 0x60, 0x68, 0xbf, 0x43, 0x33, 0xf0, 0x73, 0xaa, 0x32, 0xc9, 0xea, 0x36, 0x6e, 0x38, 0x30, - 0xe2, 0x43, 0x84, 0x9e, 0xc1, 0xd8, 0xe6, 0x53, 0xe1, 0xd0, 0x3c, 0xc8, 0x0e, 0xc4, 0x67, 0x30, - 0xb2, 0xf7, 0x68, 0x7d, 0xbf, 0x32, 0x9e, 0x5b, 0xdf, 0xb6, 0x46, 0x13, 0x18, 0x69, 0x5a, 0xd5, - 0x25, 0xd1, 0xb4, 0x77, 0xbe, 0xdf, 0x5f, 0x9c, 0xdf, 0x6c, 0x22, 0xf7, 0x76, 0x13, 0xb9, 0x7f, - 0x37, 0x91, 0xfb, 0x63, 0x1b, 0x39, 0xb7, 0xdb, 0xc8, 0xf9, 0xbd, 0x8d, 0x9c, 0x4f, 0x71, 0xc1, - 0xf4, 0x97, 0x66, 0x99, 0x64, 0xa2, 0xc2, 0x82, 0x2b, 0xc1, 0x25, 0x36, 0xcb, 0x25, 0x6e, 0xbf, - 0x9b, 0xbe, 0xaa, 0xa9, 0x5a, 0x7a, 0xe6, 0xe7, 0xbc, 0xbc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x3e, - 0x67, 0x8d, 0xbb, 0x82, 0x02, 0x00, 0x00, + 0x18, 0xc7, 0x93, 0xb5, 0x8a, 0xda, 0x2f, 0x11, 0xda, 0xcc, 0x84, 0x42, 0x85, 0xd2, 0x2a, 0x5c, + 0x2a, 0x18, 0xb1, 0x56, 0x24, 0x90, 0x26, 0x38, 0x30, 0x0e, 0x1c, 0x41, 0xe1, 0xc6, 0x05, 0xb9, + 0x89, 0x15, 0x2c, 0x12, 0x3b, 0xb2, 0x9d, 0x76, 0x7b, 0x04, 0x38, 0x71, 0xe4, 0xb8, 0x47, 0xe0, + 0x31, 0x76, 0xdc, 0x91, 0x13, 0x42, 0xed, 0x01, 0x1e, 0x63, 0x8a, 0x13, 0xaf, 0xdb, 0xc5, 0xfa, + 0xfc, 0xfb, 0x7f, 0x9f, 0xff, 0x7f, 0x5b, 0x86, 0xc3, 0x7c, 0xcd, 0xf1, 0xea, 0x18, 0x17, 0x94, + 0x53, 0xc5, 0x54, 0x52, 0x4b, 0xa1, 0x05, 0xf2, 0xf2, 0x35, 0x4f, 0x56, 0xc7, 0x93, 0xc3, 0x42, + 0x14, 0xc2, 0x20, 0xdc, 0x56, 0x9d, 0x3a, 0x39, 0x20, 0x15, 0xe3, 0x02, 0x9b, 0xb5, 0x43, 0xf1, + 0x2b, 0x08, 0xde, 0x75, 0x27, 0x7c, 0xd4, 0x44, 0x53, 0x74, 0x04, 0x5e, 0x4d, 0x24, 0xa9, 0x54, + 0xe8, 0xce, 0xdc, 0xb9, 0xbf, 0xb8, 0x97, 0x74, 0x27, 0x26, 0x1f, 0x0c, 0x3d, 0x1d, 0x5e, 0xfe, + 0x99, 0x3a, 0x69, 0xdf, 0x13, 0x7f, 0x73, 0xc1, 0xeb, 0x04, 0xf4, 0x12, 0x02, 0xa2, 0x35, 0xe5, + 0x0d, 0xd1, 0x4c, 0xf0, 0x76, 0x7c, 0x30, 0xf7, 0x17, 0xf7, 0xed, 0xf8, 0x9b, 0x9d, 0x96, 0xde, + 0x69, 0x44, 0x4f, 0xe1, 0x80, 0x94, 0xa5, 0x58, 0xd3, 0xfc, 0xb3, 0xa8, 0xa9, 0x24, 0x5a, 0x48, + 0x15, 0xee, 0xcd, 0x06, 0xf3, 0x71, 0xba, 0xdf, 0x0b, 0xef, 0x2d, 0x3f, 0x79, 0xf8, 0xf3, 0x62, + 0xea, 0xfc, 0xbf, 0x98, 0xba, 0xdf, 0xff, 0xfd, 0x7a, 0x12, 0xac, 0x48, 0x53, 0x6a, 0xdc, 0x67, + 0x51, 0xe0, 0xdf, 0x32, 0x41, 0x47, 0x30, 0x92, 0x54, 0x89, 0x46, 0x66, 0xb4, 0xbf, 0xca, 0xbe, + 0xcd, 0x92, 0xf6, 0x3c, 0xbd, 0xe9, 0x40, 0x2f, 0x20, 0xc8, 0x48, 0x4d, 0x96, 0xac, 0x64, 0x9a, + 0xd1, 0xce, 0xdf, 0x5f, 0x20, 0x3b, 0xf1, 0xd6, 0x6a, 0xe7, 0xe9, 0x9d, 0xbe, 0xf8, 0x0c, 0x60, + 0xa7, 0x21, 0x04, 0x43, 0x4e, 0xaa, 0xce, 0x6f, 0x9c, 0x9a, 0x1a, 0x3d, 0x30, 0x0f, 0x4a, 0xb9, + 0x0e, 0xf7, 0x0c, 0xed, 0x77, 0x68, 0x06, 0x7e, 0x4e, 0x55, 0x26, 0x59, 0xdd, 0xc6, 0x0d, 0x07, + 0x46, 0xbc, 0x8d, 0xd0, 0x23, 0x18, 0xdb, 0x7c, 0x2a, 0x1c, 0x9a, 0x07, 0xd9, 0x81, 0xf8, 0x04, + 0x46, 0xf6, 0x1e, 0xad, 0xef, 0x57, 0xc6, 0x73, 0xeb, 0xdb, 0xd6, 0x68, 0x02, 0x23, 0x4d, 0xab, + 0xba, 0x24, 0x9a, 0xf6, 0xce, 0x37, 0xfb, 0xd3, 0xd7, 0x97, 0x9b, 0xc8, 0xbd, 0xda, 0x44, 0xee, + 0xdf, 0x4d, 0xe4, 0xfe, 0xd8, 0x46, 0xce, 0xd5, 0x36, 0x72, 0x7e, 0x6f, 0x23, 0xe7, 0xd3, 0xe3, + 0x82, 0xe9, 0x2f, 0xcd, 0x32, 0xc9, 0x44, 0x85, 0x95, 0xe0, 0xf2, 0x19, 0x13, 0x58, 0x71, 0x99, + 0xe3, 0x33, 0xdc, 0xfe, 0x37, 0x7d, 0x5e, 0x53, 0xb5, 0xf4, 0xcc, 0xd7, 0x79, 0x7e, 0x1d, 0x00, + 0x00, 0xff, 0xff, 0x05, 0xf3, 0x81, 0x01, 0x83, 0x02, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/dwn/types/genesis_test.go b/x/dwn/types/genesis_test.go index 8c5a25dd7..ebf4097c3 100644 --- a/x/dwn/types/genesis_test.go +++ b/x/dwn/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/onsonr/sonr/x/dwn/types" + "github.com/sonr-io/snrd/x/dwn/types" "github.com/stretchr/testify/require" ) diff --git a/x/dwn/types/query.pb.go b/x/dwn/types/query.pb.go index 37d026958..f4d7de82e 100644 --- a/x/dwn/types/query.pb.go +++ b/x/dwn/types/query.pb.go @@ -119,7 +119,7 @@ func init() { func init() { proto.RegisterFile("dwn/v1/query.proto", fileDescriptor_9a31dfed63924cb3) } var fileDescriptor_9a31dfed63924cb3 = []byte{ - // 254 bytes of a gzipped FileDescriptorProto + // 258 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0x29, 0xcf, 0xd3, 0x2f, 0x33, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x4b, 0x29, 0xcf, 0xd3, 0x2b, 0x33, 0x94, 0x92, 0x49, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x4f, @@ -131,11 +131,12 @@ var fileDescriptor_9a31dfed63924cb3 = []byte{ 0xaa, 0x83, 0xca, 0x1a, 0xa5, 0x70, 0xb1, 0x82, 0xb5, 0x0b, 0x45, 0x73, 0xb1, 0x41, 0xa4, 0x84, 0xa4, 0x60, 0x4a, 0x31, 0x6d, 0x93, 0x92, 0xc6, 0x2a, 0x07, 0xb1, 0x53, 0x49, 0xa2, 0xe9, 0xf2, 0x93, 0xc9, 0x4c, 0x42, 0x42, 0x02, 0xfa, 0x65, 0x89, 0xa5, 0x39, 0x25, 0x20, 0x1f, 0x40, 0x6c, - 0x71, 0xb2, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, - 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xa5, 0xf4, 0xcc, - 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xfc, 0xbc, 0xe2, 0xfc, 0xbc, 0x22, 0x7d, - 0x30, 0x51, 0xa1, 0x0f, 0x0a, 0x83, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0xff, 0x8d, - 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xd6, 0xd8, 0xe6, 0x51, 0x01, 0x00, 0x00, + 0x71, 0xb2, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, + 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xe5, 0xf4, 0xcc, + 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe2, 0xfc, 0xbc, 0x22, 0xdd, 0xcc, 0x7c, + 0xfd, 0xe2, 0xbc, 0xa2, 0x14, 0xfd, 0x0a, 0x7d, 0x50, 0x20, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, + 0xb1, 0x81, 0x03, 0xc0, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x54, 0x03, 0x4e, 0x52, 0x01, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/dwn/types/state.pb.go b/x/dwn/types/state.pb.go index f139d28cc..da062a55b 100644 --- a/x/dwn/types/state.pb.go +++ b/x/dwn/types/state.pb.go @@ -167,29 +167,29 @@ func init() { func init() { proto.RegisterFile("dwn/v1/state.proto", fileDescriptor_040a9b061177db90) } var fileDescriptor_040a9b061177db90 = []byte{ - // 339 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xb1, 0x4e, 0xeb, 0x30, - 0x14, 0x86, 0xeb, 0x34, 0x37, 0xbd, 0x39, 0xba, 0xea, 0xad, 0x3c, 0x80, 0x41, 0x22, 0x44, 0x9d, - 0xc2, 0xd2, 0xa8, 0x62, 0xab, 0x58, 0x80, 0x91, 0x05, 0x45, 0x4c, 0x08, 0xa9, 0x72, 0x13, 0x03, - 0x56, 0x1b, 0x3b, 0x72, 0x4e, 0x5b, 0xf2, 0x12, 0x88, 0x27, 0xe0, 0x79, 0x60, 0xab, 0xc4, 0xc2, - 0x88, 0xda, 0x37, 0xe0, 0x09, 0x50, 0xdc, 0x16, 0x75, 0xb1, 0x7c, 0x3e, 0xff, 0xfe, 0x74, 0x8e, - 0x0d, 0x34, 0x9b, 0xab, 0x78, 0xd6, 0x8f, 0x4b, 0xe4, 0x28, 0x7a, 0x85, 0xd1, 0xa8, 0xa9, 0x97, - 0xcd, 0x55, 0x6f, 0xd6, 0x3f, 0xdc, 0x4f, 0x75, 0x99, 0xeb, 0x32, 0xd6, 0x26, 0xaf, 0x23, 0xda, - 0xe4, 0xeb, 0x40, 0xf7, 0x9d, 0x00, 0x5c, 0x1a, 0x91, 0x09, 0x85, 0x92, 0x4f, 0x68, 0x1b, 0x1c, - 0x99, 0x31, 0x12, 0x92, 0xe8, 0x5f, 0xe2, 0xc8, 0x8c, 0x52, 0x70, 0xc7, 0x52, 0x65, 0xcc, 0x09, - 0x49, 0xe4, 0x27, 0x76, 0x4f, 0x03, 0x00, 0x34, 0x5c, 0x95, 0x85, 0x36, 0x58, 0xb2, 0x66, 0xd8, - 0x8c, 0xfc, 0x64, 0x87, 0xd0, 0x23, 0x80, 0x62, 0x3a, 0x9a, 0xc8, 0x74, 0x38, 0x16, 0x15, 0x73, - 0xad, 0xcb, 0x5f, 0x93, 0x2b, 0x51, 0xd1, 0x13, 0xe8, 0x70, 0x44, 0x51, 0x77, 0x29, 0xb5, 0x1a, - 0x62, 0x55, 0x08, 0xf6, 0xc7, 0xea, 0xff, 0xef, 0xf0, 0x9b, 0xaa, 0x10, 0xb5, 0x29, 0x35, 0x82, - 0xa3, 0xc8, 0x86, 0x1c, 0x99, 0x17, 0x92, 0xc8, 0x4d, 0xfc, 0x0d, 0x39, 0xc7, 0x41, 0xfb, 0xfb, - 0xf5, 0xe3, 0xb9, 0xf9, 0x17, 0xdc, 0x75, 0xd3, 0xdd, 0x3b, 0x68, 0x5d, 0x1b, 0x7d, 0x2f, 0x27, - 0x82, 0x32, 0x68, 0xf1, 0x34, 0xd5, 0x53, 0x85, 0x9b, 0x61, 0xb6, 0x25, 0xdd, 0x03, 0x8f, 0xe7, - 0xf6, 0xc0, 0xb1, 0xbe, 0x4d, 0x35, 0x38, 0xb6, 0xb2, 0x03, 0xf0, 0x7f, 0x6f, 0x52, 0xd8, 0x46, - 0x3b, 0x84, 0x39, 0x17, 0x67, 0x6f, 0xcb, 0x80, 0x2c, 0x96, 0x01, 0xf9, 0x5a, 0x06, 0xe4, 0x65, - 0x15, 0x34, 0x16, 0xab, 0xa0, 0xf1, 0xb9, 0x0a, 0x1a, 0xb7, 0xdd, 0x07, 0x89, 0x8f, 0xd3, 0x51, - 0x2f, 0xd5, 0x79, 0xac, 0x55, 0xa9, 0x95, 0x89, 0xed, 0xf2, 0x14, 0xd7, 0x3f, 0x52, 0x0f, 0x58, - 0x8e, 0x3c, 0xfb, 0xdc, 0xa7, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x45, 0xf1, 0xed, 0xf9, 0xa5, - 0x01, 0x00, 0x00, + // 340 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xc1, 0x4a, 0xc3, 0x30, + 0x18, 0xc7, 0x97, 0xae, 0x76, 0xf6, 0x43, 0xe6, 0xc8, 0x41, 0xa3, 0x60, 0x2d, 0xf3, 0x52, 0x0f, + 0xae, 0x0c, 0x6f, 0x03, 0x0f, 0xea, 0xd1, 0x8b, 0x14, 0x4f, 0x22, 0x8c, 0xac, 0x89, 0x1a, 0xb6, + 0x26, 0x25, 0xc9, 0x36, 0xfb, 0x12, 0xe2, 0x13, 0xf8, 0x3c, 0x7a, 0x1b, 0x78, 0xf1, 0x28, 0xdb, + 0x1b, 0xf8, 0x04, 0xd2, 0x6e, 0x93, 0xdd, 0xf2, 0xfd, 0xf2, 0xcf, 0x8f, 0xef, 0xcb, 0x07, 0x98, + 0x4d, 0x65, 0x3c, 0xe9, 0xc6, 0xc6, 0x52, 0xcb, 0x3b, 0xb9, 0x56, 0x56, 0x61, 0x8f, 0x4d, 0x65, + 0x67, 0xd2, 0x3d, 0xdc, 0x4f, 0x95, 0xc9, 0x94, 0x89, 0x95, 0xce, 0xca, 0x88, 0xd2, 0xd9, 0x32, + 0xd0, 0xfe, 0x44, 0x00, 0xd7, 0x9a, 0x33, 0x2e, 0xad, 0xa0, 0x23, 0xdc, 0x04, 0x47, 0x30, 0x82, + 0x42, 0x14, 0xed, 0x24, 0x8e, 0x60, 0x18, 0x83, 0x3b, 0x14, 0x92, 0x11, 0x27, 0x44, 0x91, 0x9f, + 0x54, 0x67, 0x1c, 0x00, 0x58, 0x4d, 0xa5, 0xc9, 0x95, 0xb6, 0x86, 0xd4, 0xc3, 0x7a, 0xe4, 0x27, + 0x1b, 0x04, 0x1f, 0x01, 0xe4, 0xe3, 0xc1, 0x48, 0xa4, 0xfd, 0x21, 0x2f, 0x88, 0x5b, 0xb9, 0xfc, + 0x25, 0xb9, 0xe1, 0x05, 0x3e, 0x85, 0x16, 0xb5, 0x96, 0x97, 0x5d, 0x0a, 0x25, 0xfb, 0xb6, 0xc8, + 0x39, 0xd9, 0xaa, 0xf4, 0xbb, 0x1b, 0xfc, 0xae, 0xc8, 0x79, 0x69, 0x4a, 0x35, 0xa7, 0x96, 0xb3, + 0x3e, 0xb5, 0xc4, 0x0b, 0x51, 0xe4, 0x26, 0xfe, 0x8a, 0x5c, 0xda, 0x5e, 0xf3, 0xf7, 0xfd, 0xeb, + 0xb5, 0xbe, 0x0d, 0xee, 0xb2, 0xe9, 0xf6, 0x03, 0x34, 0x6e, 0xb5, 0x7a, 0x14, 0x23, 0x8e, 0x09, + 0x34, 0x68, 0x9a, 0xaa, 0xb1, 0xb4, 0xab, 0x61, 0xd6, 0x25, 0xde, 0x03, 0x8f, 0x66, 0xd5, 0x85, + 0x53, 0xf9, 0x56, 0x55, 0xef, 0xb8, 0x92, 0x1d, 0x80, 0xff, 0xff, 0x12, 0xc3, 0x3a, 0xda, 0x42, + 0xc4, 0xb9, 0xba, 0xf8, 0x98, 0x07, 0x68, 0x36, 0x0f, 0xd0, 0xcf, 0x3c, 0x40, 0x6f, 0x8b, 0xa0, + 0x36, 0x5b, 0x04, 0xb5, 0xef, 0x45, 0x50, 0xbb, 0x3f, 0x79, 0x12, 0xf6, 0x79, 0x3c, 0xe8, 0xa4, + 0x2a, 0x8b, 0x8d, 0x92, 0xfa, 0x4c, 0xa8, 0xd8, 0x48, 0xcd, 0xe2, 0x97, 0xb8, 0x5c, 0x49, 0x39, + 0xa1, 0x19, 0x78, 0xd5, 0x7f, 0x9f, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x27, 0x3b, 0x14, 0xc6, + 0xa6, 0x01, 0x00, 0x00, } func (m *Credential) Marshal() (dAtA []byte, err error) { diff --git a/x/dwn/types/tx.pb.go b/x/dwn/types/tx.pb.go index 9e6e7b0d7..c28f49b3b 100644 --- a/x/dwn/types/tx.pb.go +++ b/x/dwn/types/tx.pb.go @@ -239,7 +239,7 @@ func init() { func init() { proto.RegisterFile("dwn/v1/tx.proto", fileDescriptor_32d2464465560de7) } var fileDescriptor_32d2464465560de7 = []byte{ - // 361 bytes of a gzipped FileDescriptorProto + // 366 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4f, 0x29, 0xcf, 0xd3, 0x2f, 0x33, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x4b, 0x29, 0xcf, 0xd3, 0x2b, 0x33, 0x94, 0x12, 0x4f, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0xd6, 0xcf, 0x2d, 0x4e, 0x07, @@ -257,12 +257,12 @@ var fileDescriptor_32d2464465560de7 = []byte{ 0x51, 0x9c, 0x4b, 0x14, 0xc5, 0x19, 0x30, 0x07, 0x1a, 0xcd, 0x62, 0xe4, 0x62, 0xf6, 0x2d, 0x4e, 0x17, 0xf2, 0xe0, 0xe2, 0x41, 0x09, 0x49, 0x71, 0x98, 0xf1, 0x68, 0x3e, 0x93, 0x92, 0xc7, 0x21, 0x01, 0x33, 0x51, 0xc8, 0x89, 0x8b, 0x0b, 0xc9, 0xbb, 0xa2, 0x48, 0xca, 0x11, 0xc2, 0x52, 0xb2, - 0x58, 0x85, 0x61, 0x66, 0x48, 0xb1, 0x36, 0x3c, 0xdf, 0xa0, 0xc5, 0xe8, 0x64, 0x73, 0xe2, 0x91, + 0x58, 0x85, 0x61, 0x66, 0x48, 0xb1, 0x36, 0x3c, 0xdf, 0xa0, 0xc5, 0xe8, 0x64, 0x7b, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, - 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x4a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, - 0xc9, 0xf9, 0xb9, 0xfa, 0xf9, 0x79, 0xc5, 0xf9, 0x79, 0x45, 0xfa, 0x60, 0xa2, 0x42, 0x1f, 0x94, - 0xb8, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xe9, 0xc4, 0x18, 0x10, 0x00, 0x00, 0xff, - 0xff, 0xbb, 0x62, 0x4e, 0x8b, 0xa2, 0x02, 0x00, 0x00, + 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xca, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, + 0xc9, 0xf9, 0xb9, 0xfa, 0xc5, 0xf9, 0x79, 0x45, 0xba, 0x99, 0xf9, 0xfa, 0xc5, 0x79, 0x45, 0x29, + 0xfa, 0x15, 0xfa, 0xa0, 0xd4, 0x55, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x4e, 0x28, 0xc6, + 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaf, 0x47, 0x63, 0x9c, 0xa3, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/svc/README.md b/x/svc/README.md index c376bd38b..f08c733c4 100644 --- a/x/svc/README.md +++ b/x/svc/README.md @@ -11,9 +11,9 @@ The svc module is responsible for managing the registration and authorization of ### Dependencies -- [x/did](https://github.com/onsonr/sonr/tree/master/x/did) -- [x/group](https://github.com/onsonr/sonr/tree/master/x/group) -- [x/nft](https://github.com/onsonr/sonr/tree/master/x/nft) +- [x/did](https://github.com/sonr-io/snrd/tree/master/x/did) +- [x/group](https://github.com/sonr-io/snrd/tree/master/x/group) +- [x/nft](https://github.com/sonr-io/snrd/tree/master/x/nft) ## State diff --git a/x/svc/autocli.go b/x/svc/autocli.go index c6ef5491e..93dd46800 100644 --- a/x/svc/autocli.go +++ b/x/svc/autocli.go @@ -2,7 +2,7 @@ package module import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" - modulev1 "github.com/onsonr/sonr/api/svc/v1" + modulev1 "github.com/sonr-io/snrd/api/svc/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/svc/client/cli/query.go b/x/svc/client/cli/query.go index 5aa13f08b..24b3c7e1d 100644 --- a/x/svc/client/cli/query.go +++ b/x/svc/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" ) // !NOTE: Must enable in module.go (disabled in favor of autocli.go) diff --git a/x/svc/client/cli/tx.go b/x/svc/client/cli/tx.go index f389a8d5c..cb2f71c8e 100644 --- a/x/svc/client/cli/tx.go +++ b/x/svc/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" ) // !NOTE: Must enable in module.go (disabled in favor of autocli.go) diff --git a/x/svc/depinject.go b/x/svc/depinject.go index b9dc2fa9a..1410f1570 100644 --- a/x/svc/depinject.go +++ b/x/svc/depinject.go @@ -16,8 +16,8 @@ import ( "cosmossdk.io/depinject" "cosmossdk.io/log" - modulev1 "github.com/onsonr/sonr/api/svc/module/v1" - "github.com/onsonr/sonr/x/svc/keeper" + modulev1 "github.com/sonr-io/snrd/api/svc/module/v1" + "github.com/sonr-io/snrd/x/svc/keeper" ) var _ appmodule.AppModule = AppModule{} diff --git a/x/svc/keeper/genesis_test.go b/x/svc/keeper/genesis_test.go index 9f5396c9c..e6095b583 100644 --- a/x/svc/keeper/genesis_test.go +++ b/x/svc/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "testing" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" "github.com/stretchr/testify/require" ) diff --git a/x/svc/keeper/keeper.go b/x/svc/keeper/keeper.go index e0a9d0a57..47e44f257 100644 --- a/x/svc/keeper/keeper.go +++ b/x/svc/keeper/keeper.go @@ -13,8 +13,8 @@ import ( "cosmossdk.io/log" "cosmossdk.io/orm/model/ormdb" - apiv1 "github.com/onsonr/sonr/api/svc/v1" - "github.com/onsonr/sonr/x/svc/types" + apiv1 "github.com/sonr-io/snrd/api/svc/v1" + "github.com/sonr-io/snrd/x/svc/types" ) type Keeper struct { diff --git a/x/svc/keeper/keeper_test.go b/x/svc/keeper/keeper_test.go index 1f1563755..6966ef978 100644 --- a/x/svc/keeper/keeper_test.go +++ b/x/svc/keeper/keeper_test.go @@ -25,9 +25,9 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - module "github.com/onsonr/sonr/x/svc" - "github.com/onsonr/sonr/x/svc/keeper" - "github.com/onsonr/sonr/x/svc/types" + module "github.com/sonr-io/snrd/x/svc" + "github.com/sonr-io/snrd/x/svc/keeper" + "github.com/sonr-io/snrd/x/svc/types" ) var maccPerms = map[string][]string{ diff --git a/x/svc/keeper/msg_server.go b/x/svc/keeper/msg_server.go index a4e939a59..32ce2e693 100644 --- a/x/svc/keeper/msg_server.go +++ b/x/svc/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "cosmossdk.io/errors" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" ) type msgServer struct { diff --git a/x/svc/keeper/msg_server_test.go b/x/svc/keeper/msg_server_test.go index 85dddea7b..fa450c6f3 100644 --- a/x/svc/keeper/msg_server_test.go +++ b/x/svc/keeper/msg_server_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" ) func TestParams(t *testing.T) { diff --git a/x/svc/keeper/query_server.go b/x/svc/keeper/query_server.go index fc158b671..5be9c7396 100644 --- a/x/svc/keeper/query_server.go +++ b/x/svc/keeper/query_server.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" ) var _ types.QueryServer = Querier{} diff --git a/x/svc/module.go b/x/svc/module.go index bd9a85ef0..d45d479f4 100644 --- a/x/svc/module.go +++ b/x/svc/module.go @@ -18,8 +18,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/onsonr/sonr/x/svc/keeper" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/keeper" + "github.com/sonr-io/snrd/x/svc/types" ) const ( diff --git a/x/svc/types/genesis.pb.go b/x/svc/types/genesis.pb.go index dfa8a815b..ae1bfca44 100644 --- a/x/svc/types/genesis.pb.go +++ b/x/svc/types/genesis.pb.go @@ -402,38 +402,38 @@ func init() { func init() { proto.RegisterFile("svc/v1/genesis.proto", fileDescriptor_86658d95daaa12a9) } var fileDescriptor_86658d95daaa12a9 = []byte{ - // 492 bytes of a gzipped FileDescriptorProto + // 496 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0x31, 0x8f, 0xd3, 0x30, - 0x14, 0x6e, 0x9a, 0x92, 0xb6, 0xaf, 0xa5, 0x02, 0x73, 0x42, 0x56, 0x41, 0x69, 0x15, 0x96, 0x0a, - 0x9d, 0x12, 0xdd, 0x21, 0x81, 0x74, 0xba, 0x85, 0x63, 0x80, 0x11, 0xe5, 0x36, 0x06, 0x90, 0x9b, - 0x5a, 0xa9, 0xc5, 0xc5, 0x8e, 0x6c, 0x37, 0x6a, 0xff, 0x02, 0x13, 0x23, 0xe3, 0xfd, 0x04, 0x7e, - 0xc6, 0x8d, 0x37, 0x32, 0x21, 0xd4, 0x0e, 0xf0, 0x17, 0xd8, 0x50, 0x9c, 0xb8, 0xed, 0x1d, 0xcb, - 0x2d, 0xd6, 0x7b, 0xdf, 0x7b, 0xdf, 0xfb, 0xbe, 0x67, 0xd9, 0x70, 0xa0, 0x8a, 0x24, 0x2a, 0x8e, - 0xa2, 0x94, 0x72, 0xaa, 0x98, 0x0a, 0x73, 0x29, 0xb4, 0x40, 0x9e, 0x2a, 0x92, 0xb0, 0x38, 0x1a, - 0x1e, 0xa4, 0x22, 0x15, 0x06, 0x8a, 0xca, 0xa8, 0xaa, 0x0e, 0x1f, 0x92, 0x8c, 0x71, 0x11, 0x99, - 0xb3, 0x82, 0x82, 0x53, 0xe8, 0xbf, 0xad, 0x26, 0x9c, 0x6b, 0xa2, 0x29, 0x3a, 0x04, 0x2f, 0x27, - 0x92, 0x64, 0x0a, 0x3b, 0x63, 0x67, 0xd2, 0x3b, 0x1e, 0x84, 0xd5, 0xc4, 0xf0, 0xbd, 0x41, 0xcf, - 0x5a, 0x57, 0x3f, 0x47, 0x8d, 0xb8, 0xee, 0x09, 0x3e, 0x82, 0x57, 0xe1, 0xe8, 0x15, 0xf4, 0x89, - 0xd6, 0x94, 0x2f, 0x88, 0x66, 0x82, 0x97, 0x6c, 0x77, 0xd2, 0x3b, 0x7e, 0x64, 0xd9, 0xaf, 0x77, - 0xb5, 0xf8, 0x46, 0xe3, 0xc9, 0x93, 0x6f, 0x97, 0xa3, 0xc6, 0x9f, 0xcb, 0x91, 0xf3, 0xe5, 0xf7, - 0xf7, 0xe7, 0x03, 0x45, 0x65, 0xc1, 0x12, 0x1a, 0xd5, 0xf3, 0x15, 0xf4, 0xf6, 0x98, 0xe8, 0x10, - 0x3a, 0x92, 0x2a, 0xb1, 0x90, 0x09, 0xad, 0xed, 0x3d, 0xb0, 0x02, 0x71, 0x8d, 0xc7, 0xdb, 0x0e, - 0xf4, 0x12, 0xfa, 0x09, 0xc9, 0xc9, 0x94, 0x5d, 0x30, 0xcd, 0xa8, 0xc2, 0x4d, 0x63, 0x09, 0x59, - 0xc6, 0x1b, 0x5b, 0x5b, 0xc5, 0x37, 0xfa, 0x82, 0x25, 0xc0, 0xae, 0x86, 0x10, 0xb4, 0x38, 0xc9, - 0x2a, 0xbd, 0x6e, 0x6c, 0x62, 0xf4, 0xd8, 0x5c, 0x12, 0xe5, 0x1a, 0x37, 0x0d, 0x5a, 0x67, 0x68, - 0x0c, 0xbd, 0x19, 0x55, 0x89, 0x64, 0x79, 0x69, 0x17, 0xbb, 0xa6, 0xb8, 0x0f, 0xa1, 0xa7, 0xd0, - 0xb5, 0xfe, 0x14, 0x6e, 0x8d, 0xdd, 0x49, 0x37, 0xde, 0x01, 0xc1, 0x09, 0x74, 0xec, 0x1e, 0xa5, - 0xee, 0x67, 0xc6, 0x67, 0x56, 0xb7, 0x8c, 0xd1, 0x10, 0x3a, 0x9a, 0x66, 0xf9, 0x05, 0xd1, 0xb4, - 0x56, 0xde, 0xe6, 0xc1, 0x5f, 0x07, 0xda, 0xe7, 0xd5, 0xed, 0xa1, 0x01, 0x34, 0x99, 0x65, 0x36, - 0xd9, 0xac, 0x54, 0x25, 0x0b, 0x3d, 0x17, 0x92, 0xe9, 0x55, 0x4d, 0xdc, 0x01, 0x08, 0x43, 0x5b, - 0x48, 0x96, 0x32, 0xae, 0xb0, 0x6b, 0x1c, 0xd9, 0x74, 0xbb, 0x7b, 0x6b, 0x6f, 0xf7, 0x5b, 0x3b, - 0xde, 0xfb, 0x7f, 0xc7, 0xdb, 0x4f, 0xc1, 0xbb, 0xe3, 0x53, 0x28, 0xe5, 0x34, 0x49, 0x15, 0x6e, - 0x1b, 0x17, 0x26, 0x46, 0xcf, 0xe0, 0x3e, 0x5d, 0xe6, 0x4c, 0xae, 0x3e, 0xcd, 0x29, 0x4b, 0xe7, - 0x1a, 0x77, 0xc6, 0xce, 0xc4, 0x8d, 0xfb, 0x15, 0xf8, 0xce, 0x60, 0x67, 0xa7, 0x57, 0x6b, 0xdf, - 0xb9, 0x5e, 0xfb, 0xce, 0xaf, 0xb5, 0xef, 0x7c, 0xdd, 0xf8, 0x8d, 0xeb, 0x8d, 0xdf, 0xf8, 0xb1, - 0xf1, 0x1b, 0x1f, 0x82, 0x94, 0xe9, 0xf9, 0x62, 0x1a, 0x26, 0x22, 0x8b, 0x04, 0x57, 0x82, 0xcb, - 0xc8, 0x1c, 0xcb, 0xa8, 0xfc, 0x3e, 0x7a, 0x95, 0x53, 0x35, 0xf5, 0xcc, 0x4f, 0x78, 0xf1, 0x2f, - 0x00, 0x00, 0xff, 0xff, 0x48, 0x21, 0x03, 0xf7, 0x52, 0x03, 0x00, 0x00, + 0x14, 0x4e, 0x9a, 0x92, 0xb6, 0xaf, 0xa5, 0x02, 0x73, 0x42, 0x51, 0x41, 0x69, 0x95, 0x5b, 0x2a, + 0x74, 0x24, 0xba, 0x43, 0x02, 0xe9, 0x04, 0x03, 0xc7, 0x00, 0x23, 0xca, 0x6d, 0x0c, 0x20, 0x37, + 0xb5, 0x52, 0x8b, 0x8b, 0x1d, 0xd9, 0x6e, 0xd4, 0xfe, 0x05, 0x26, 0x46, 0xc6, 0xfb, 0x09, 0xfc, + 0x8c, 0x1b, 0x6f, 0x64, 0x42, 0xa8, 0x1d, 0xe0, 0x2f, 0xb0, 0xa1, 0x38, 0x71, 0xdb, 0x2b, 0xcb, + 0x2d, 0xd6, 0x7b, 0xdf, 0x7b, 0xdf, 0xfb, 0xbe, 0x67, 0xd9, 0x70, 0x20, 0x8b, 0x24, 0x2a, 0x8e, + 0xa3, 0x94, 0x30, 0x22, 0xa9, 0x0c, 0x73, 0xc1, 0x15, 0x47, 0xae, 0x2c, 0x92, 0xb0, 0x38, 0x1e, + 0x1c, 0xa4, 0x3c, 0xe5, 0x1a, 0x8a, 0xca, 0xa8, 0xaa, 0x0e, 0xee, 0xe3, 0x8c, 0x32, 0x1e, 0xe9, + 0xb3, 0x82, 0x82, 0x97, 0xd0, 0x7b, 0x5b, 0x4d, 0x38, 0x57, 0x58, 0x11, 0x74, 0x04, 0x6e, 0x8e, + 0x05, 0xce, 0xa4, 0x67, 0x8f, 0xec, 0x71, 0xf7, 0xa4, 0x1f, 0x56, 0x13, 0xc3, 0xf7, 0x1a, 0x3d, + 0x6b, 0x5e, 0xfd, 0x1c, 0x5a, 0x71, 0xdd, 0x13, 0x7c, 0x04, 0xb7, 0xc2, 0xd1, 0x0b, 0xe8, 0x61, + 0xa5, 0x08, 0x9b, 0x63, 0x45, 0x39, 0x2b, 0xd9, 0xce, 0xb8, 0x7b, 0xf2, 0xc0, 0xb0, 0x5f, 0x6f, + 0x6b, 0xf1, 0x8d, 0xc6, 0xd3, 0x47, 0xdf, 0x2e, 0x87, 0xd6, 0x9f, 0xcb, 0xa1, 0xfd, 0xe5, 0xf7, + 0xf7, 0x27, 0x7d, 0x49, 0x44, 0x41, 0x13, 0x12, 0xd5, 0xf3, 0x25, 0x74, 0x77, 0x98, 0xe8, 0x08, + 0xda, 0x82, 0x48, 0x3e, 0x17, 0x09, 0xa9, 0xed, 0xdd, 0x33, 0x02, 0x71, 0x8d, 0xc7, 0x9b, 0x0e, + 0xf4, 0x1c, 0x7a, 0x09, 0xce, 0xf1, 0x84, 0x5e, 0x50, 0x45, 0x89, 0xf4, 0x1a, 0xda, 0x12, 0x32, + 0x8c, 0x37, 0xa6, 0xb6, 0x8c, 0x6f, 0xf4, 0x05, 0x0b, 0x80, 0x6d, 0x0d, 0x21, 0x68, 0x32, 0x9c, + 0x55, 0x7a, 0x9d, 0x58, 0xc7, 0xe8, 0xa1, 0xbe, 0x24, 0xc2, 0x94, 0xd7, 0xd0, 0x68, 0x9d, 0xa1, + 0x11, 0x74, 0xa7, 0x44, 0x26, 0x82, 0xe6, 0xa5, 0x5d, 0xcf, 0xd1, 0xc5, 0x5d, 0x08, 0x3d, 0x86, + 0x8e, 0xf1, 0x27, 0xbd, 0xe6, 0xc8, 0x19, 0x77, 0xe2, 0x2d, 0x10, 0x9c, 0x42, 0xdb, 0xec, 0x51, + 0xea, 0x7e, 0xa6, 0x6c, 0x6a, 0x74, 0xcb, 0x18, 0x0d, 0xa0, 0xad, 0x48, 0x96, 0x5f, 0x60, 0x45, + 0x6a, 0xe5, 0x4d, 0x1e, 0xfc, 0xb5, 0xa1, 0x75, 0x5e, 0xdd, 0x1e, 0xea, 0x43, 0x83, 0x1a, 0x66, + 0x83, 0x4e, 0x4b, 0x55, 0x3c, 0x57, 0x33, 0x2e, 0xa8, 0x5a, 0xd6, 0xc4, 0x2d, 0x80, 0x3c, 0x68, + 0x71, 0x41, 0x53, 0xca, 0xa4, 0xe7, 0x68, 0x47, 0x26, 0xdd, 0xec, 0xde, 0xdc, 0xd9, 0x7d, 0x6f, + 0xc7, 0x3b, 0xff, 0xef, 0xb8, 0xff, 0x14, 0xdc, 0x5b, 0x3e, 0x85, 0x52, 0x4e, 0xe1, 0x54, 0x7a, + 0x2d, 0xed, 0x42, 0xc7, 0xe8, 0x10, 0xee, 0x92, 0x45, 0x4e, 0xc5, 0xf2, 0xd3, 0x8c, 0xd0, 0x74, + 0xa6, 0xbc, 0xf6, 0xc8, 0x1e, 0x3b, 0x71, 0xaf, 0x02, 0xdf, 0x69, 0xec, 0xec, 0xd5, 0xd5, 0xca, + 0xb7, 0xaf, 0x57, 0xbe, 0xfd, 0x6b, 0xe5, 0xdb, 0x5f, 0xd7, 0xbe, 0x75, 0xbd, 0xf6, 0xad, 0x1f, + 0x6b, 0xdf, 0xfa, 0x70, 0x98, 0x52, 0x35, 0x9b, 0x4f, 0xc2, 0x84, 0x67, 0x91, 0xe4, 0x4c, 0x3c, + 0xa5, 0x3c, 0x92, 0x4c, 0x4c, 0xa3, 0x45, 0x54, 0xfe, 0x1f, 0xb5, 0xcc, 0x89, 0x9c, 0xb8, 0xfa, + 0x2b, 0x3c, 0xfb, 0x17, 0x00, 0x00, 0xff, 0xff, 0x87, 0x70, 0x6f, 0x9c, 0x53, 0x03, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/svc/types/genesis_test.go b/x/svc/types/genesis_test.go index 0b72f2e92..77aed6742 100644 --- a/x/svc/types/genesis_test.go +++ b/x/svc/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/onsonr/sonr/x/svc/types" + "github.com/sonr-io/snrd/x/svc/types" "github.com/stretchr/testify/require" ) diff --git a/x/svc/types/query.pb.go b/x/svc/types/query.pb.go index 40f1b55aa..4d88b209f 100644 --- a/x/svc/types/query.pb.go +++ b/x/svc/types/query.pb.go @@ -307,32 +307,33 @@ func init() { func init() { proto.RegisterFile("svc/v1/query.proto", fileDescriptor_81a1010cdbf4bc9c) } var fileDescriptor_81a1010cdbf4bc9c = []byte{ - // 398 bytes of a gzipped FileDescriptorProto + // 402 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x4b, 0xe3, 0x40, - 0x1c, 0xc5, 0x9b, 0xc2, 0x86, 0xdd, 0xd9, 0xdd, 0x2a, 0x63, 0x29, 0x75, 0x94, 0xd8, 0xe6, 0x60, - 0x3d, 0x65, 0x68, 0x7b, 0xd5, 0x8b, 0xd0, 0xb3, 0x1a, 0x4f, 0x7a, 0x4b, 0xe3, 0x10, 0x07, 0xda, - 0x99, 0x74, 0x26, 0x09, 0x2d, 0x22, 0x82, 0x9f, 0x40, 0xf0, 0x4b, 0x79, 0x2c, 0x78, 0x11, 0x4f, - 0xd2, 0xfa, 0x41, 0xc4, 0x99, 0x89, 0x18, 0x8c, 0xf5, 0x12, 0x32, 0xff, 0xff, 0x7b, 0xef, 0xc7, - 0xbc, 0x04, 0x40, 0x99, 0x85, 0x38, 0xeb, 0xe2, 0x49, 0x4a, 0xc4, 0xcc, 0x8b, 0x05, 0x4f, 0x38, - 0xb4, 0x65, 0x16, 0x7a, 0x59, 0x17, 0x6d, 0x47, 0x9c, 0x47, 0x23, 0x82, 0x83, 0x98, 0xe2, 0x80, - 0x31, 0x9e, 0x04, 0x09, 0xe5, 0x4c, 0x6a, 0x15, 0xaa, 0x1b, 0x67, 0x44, 0x18, 0x91, 0xd4, 0x4c, - 0xdd, 0x3a, 0x80, 0x27, 0xef, 0x51, 0xc7, 0x81, 0x08, 0xc6, 0xd2, 0x27, 0x93, 0x94, 0xc8, 0xc4, - 0x3d, 0x00, 0x1b, 0x85, 0xa9, 0x8c, 0x39, 0x93, 0x04, 0xee, 0x02, 0x3b, 0x56, 0x93, 0xa6, 0xd5, - 0xb2, 0xf6, 0xfe, 0xf6, 0x6a, 0x9e, 0x26, 0x7b, 0x46, 0x67, 0xb6, 0x6e, 0x0f, 0x34, 0x95, 0xfd, - 0x48, 0xd0, 0x88, 0xb2, 0xc1, 0x94, 0xca, 0x24, 0x8f, 0x86, 0x0d, 0x60, 0x73, 0x35, 0x56, 0x19, - 0x7f, 0x7c, 0x73, 0x72, 0xfb, 0x60, 0xb3, 0xc4, 0x63, 0xc0, 0x0d, 0x60, 0x13, 0x35, 0x51, 0xa6, - 0xdf, 0xbe, 0x39, 0x7d, 0x98, 0x7c, 0x22, 0xf9, 0x28, 0x23, 0xda, 0xfb, 0x13, 0x69, 0x00, 0x50, - 0x99, 0xc9, 0xa0, 0x3a, 0xc0, 0x16, 0x24, 0xe4, 0xe2, 0xc2, 0xdc, 0x71, 0x2d, 0xbf, 0xe3, 0x29, - 0x11, 0x19, 0x0d, 0x89, 0x6f, 0xd6, 0xbd, 0xe7, 0x2a, 0xf8, 0xa5, 0x72, 0xe0, 0x19, 0xb0, 0x75, - 0x01, 0x10, 0xe5, 0xe2, 0xaf, 0x9d, 0xa2, 0xad, 0xd2, 0x9d, 0xa6, 0xba, 0x8d, 0xdb, 0xc7, 0xd7, - 0xfb, 0xea, 0x3a, 0xac, 0x61, 0xf3, 0x95, 0x74, 0x93, 0x30, 0x05, 0xff, 0x3e, 0x17, 0x02, 0x5b, - 0x85, 0x90, 0x92, 0x7e, 0x51, 0x7b, 0x85, 0xc2, 0xc0, 0x5a, 0x0a, 0x86, 0x60, 0x33, 0x87, 0xe9, - 0x62, 0x24, 0xbe, 0xd2, 0x2f, 0xd7, 0xf0, 0x06, 0xfc, 0x2f, 0xb4, 0x03, 0x8b, 0xa9, 0x65, 0x75, - 0x23, 0x77, 0x95, 0xc4, 0x90, 0x3b, 0x8a, 0xdc, 0x86, 0x3b, 0xdf, 0x91, 0xb1, 0x2e, 0xf7, 0x70, - 0xff, 0x61, 0xe1, 0x58, 0xf3, 0x85, 0x63, 0xbd, 0x2c, 0x1c, 0xeb, 0x6e, 0xe9, 0x54, 0xe6, 0x4b, - 0xa7, 0xf2, 0xb4, 0x74, 0x2a, 0xe7, 0x6e, 0x44, 0x93, 0xcb, 0x74, 0xe8, 0x85, 0x7c, 0x8c, 0x39, - 0x93, 0x9c, 0x09, 0xac, 0x1e, 0x53, 0x15, 0x99, 0xcc, 0x62, 0x22, 0x87, 0xb6, 0xfa, 0xb7, 0xfb, - 0x6f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x55, 0xd8, 0x48, 0x2d, 0x03, 0x00, 0x00, + 0x1c, 0xc5, 0x9b, 0xc2, 0x86, 0xdd, 0xd9, 0xdd, 0xee, 0x32, 0x5b, 0x4a, 0x77, 0x76, 0x89, 0x6d, + 0x04, 0xeb, 0xc5, 0x0c, 0x6d, 0xcf, 0xbd, 0x08, 0x3d, 0xab, 0xf1, 0xa4, 0xb7, 0x34, 0x1d, 0xe2, + 0x40, 0x3b, 0x93, 0xce, 0x24, 0xa1, 0x45, 0x44, 0xf0, 0x13, 0x08, 0x7e, 0x29, 0x8f, 0x05, 0x2f, + 0xe2, 0x49, 0x5a, 0x3f, 0x88, 0x38, 0x33, 0x11, 0x83, 0xb1, 0xde, 0x32, 0xff, 0xff, 0x7b, 0xef, + 0xc7, 0xbc, 0x0c, 0x80, 0x32, 0x0b, 0x71, 0xd6, 0xc5, 0xb3, 0x94, 0x88, 0x85, 0x17, 0x0b, 0x9e, + 0x70, 0x68, 0xcb, 0x2c, 0xf4, 0xb2, 0x2e, 0xfa, 0x1f, 0x71, 0x1e, 0x4d, 0x08, 0x0e, 0x62, 0x8a, + 0x03, 0xc6, 0x78, 0x12, 0x24, 0x94, 0x33, 0xa9, 0x55, 0xa8, 0x6e, 0x9c, 0x11, 0x61, 0x44, 0x52, + 0x33, 0x75, 0xeb, 0x00, 0x1e, 0xbd, 0x44, 0x1d, 0x06, 0x22, 0x98, 0x4a, 0x9f, 0xcc, 0x52, 0x22, + 0x13, 0x77, 0x00, 0xfe, 0x14, 0xa6, 0x32, 0xe6, 0x4c, 0x12, 0xb8, 0x03, 0xec, 0x58, 0x4d, 0x9a, + 0x56, 0xcb, 0xda, 0xfd, 0xde, 0xab, 0x79, 0x9a, 0xec, 0x19, 0x9d, 0xd9, 0xba, 0x3d, 0xd0, 0x54, + 0xf6, 0x03, 0x41, 0x23, 0xca, 0x86, 0x73, 0x2a, 0x93, 0x3c, 0x1a, 0x36, 0x80, 0xcd, 0xd5, 0x58, + 0x65, 0x7c, 0xf3, 0xcd, 0xc9, 0xed, 0x83, 0xbf, 0x25, 0x1e, 0x03, 0x6e, 0x00, 0x9b, 0xa8, 0x89, + 0x32, 0x7d, 0xf5, 0xcd, 0xe9, 0xd5, 0xe4, 0x13, 0xc9, 0x27, 0x19, 0xd1, 0xde, 0xcf, 0x48, 0x43, + 0x80, 0xca, 0x4c, 0x06, 0xd5, 0x01, 0xb6, 0x20, 0x21, 0x17, 0x63, 0x73, 0xc7, 0x5f, 0xf9, 0x1d, + 0x8f, 0x89, 0xc8, 0x68, 0x48, 0x7c, 0xb3, 0xee, 0x3d, 0x54, 0xc1, 0x17, 0x95, 0x03, 0x4f, 0x80, + 0xad, 0x0b, 0x80, 0x28, 0x17, 0xbf, 0xef, 0x14, 0xfd, 0x2b, 0xdd, 0x69, 0xaa, 0xdb, 0xb8, 0xba, + 0x7b, 0xba, 0xa9, 0xfe, 0x86, 0x35, 0x6c, 0xfe, 0x92, 0x6e, 0x12, 0xa6, 0xe0, 0xc7, 0xdb, 0x42, + 0x60, 0xab, 0x10, 0x52, 0xd2, 0x2f, 0x6a, 0x6f, 0x50, 0x18, 0x58, 0x4b, 0xc1, 0x10, 0x6c, 0xe6, + 0x30, 0x5d, 0x8c, 0xc4, 0xe7, 0xfa, 0xe3, 0x02, 0x5e, 0x82, 0x9f, 0x85, 0x76, 0x60, 0x31, 0xb5, + 0xac, 0x6e, 0xe4, 0x6e, 0x92, 0x18, 0x72, 0x47, 0x91, 0xdb, 0x70, 0xeb, 0x23, 0x32, 0xd6, 0xe5, + 0xee, 0x0f, 0x6e, 0x57, 0x8e, 0xb5, 0x5c, 0x39, 0xd6, 0xe3, 0xca, 0xb1, 0xae, 0xd7, 0x4e, 0x65, + 0xb9, 0x76, 0x2a, 0xf7, 0x6b, 0xa7, 0x72, 0xba, 0x1d, 0xd1, 0xe4, 0x2c, 0x1d, 0x79, 0x21, 0x9f, + 0x62, 0xc9, 0x99, 0xd8, 0xa3, 0x1c, 0x4b, 0x26, 0xc6, 0x78, 0xae, 0x32, 0x93, 0x45, 0x4c, 0xe4, + 0xc8, 0x56, 0x8f, 0xbb, 0xff, 0x1c, 0x00, 0x00, 0xff, 0xff, 0x56, 0x4f, 0x6f, 0x03, 0x2e, 0x03, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/svc/types/state.pb.go b/x/svc/types/state.pb.go index e7f9e4f88..0282561fe 100644 --- a/x/svc/types/state.pb.go +++ b/x/svc/types/state.pb.go @@ -196,29 +196,29 @@ func init() { func init() { proto.RegisterFile("svc/v1/state.proto", fileDescriptor_2859adb306f7c51f) } var fileDescriptor_2859adb306f7c51f = []byte{ - // 344 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xb1, 0x6a, 0x23, 0x31, - 0x10, 0x86, 0xad, 0xdd, 0xbd, 0xb5, 0xad, 0x3b, 0x8c, 0x11, 0xc7, 0x9d, 0x70, 0x21, 0x16, 0x73, - 0x85, 0x8b, 0xc3, 0x8b, 0x49, 0x67, 0x52, 0x85, 0xb4, 0x69, 0x5c, 0xa6, 0x93, 0xb5, 0x62, 0xa3, - 0xe0, 0xd5, 0x18, 0x49, 0x5e, 0xe2, 0x97, 0x08, 0x21, 0x0f, 0x90, 0xe7, 0x09, 0xa9, 0x0c, 0x69, - 0x52, 0x06, 0xfb, 0x0d, 0xf2, 0x04, 0x41, 0xf2, 0x3a, 0x6c, 0x1a, 0x31, 0xf3, 0xcf, 0xf0, 0xeb, - 0xff, 0x18, 0x4c, 0x6c, 0x2d, 0xf2, 0x7a, 0x96, 0x5b, 0xc7, 0x9d, 0x9c, 0xae, 0x0d, 0x38, 0x20, - 0xa9, 0xad, 0xc5, 0xb4, 0x9e, 0x8d, 0xfe, 0x0a, 0xb0, 0x15, 0xd8, 0x1c, 0x4c, 0xe5, 0x57, 0xc0, - 0x54, 0xc7, 0x85, 0xf1, 0x0b, 0xc2, 0xe9, 0x25, 0x54, 0x5c, 0x69, 0x32, 0xc0, 0x91, 0x2a, 0x28, - 0xca, 0xd0, 0x24, 0x59, 0x44, 0xaa, 0x20, 0x7f, 0x70, 0x0a, 0x46, 0x95, 0x4a, 0xd3, 0x28, 0x43, - 0x93, 0xfe, 0xa2, 0xe9, 0x08, 0xc1, 0x89, 0xe6, 0x95, 0xa4, 0x71, 0x50, 0x43, 0x4d, 0x32, 0xfc, - 0xb3, 0x90, 0x56, 0x18, 0xb5, 0x76, 0x0a, 0x34, 0x4d, 0xc2, 0xa8, 0x2d, 0x91, 0x11, 0xee, 0x09, - 0xee, 0x64, 0x09, 0x66, 0x4b, 0x7f, 0x84, 0xf1, 0x57, 0xef, 0x1d, 0x95, 0x00, 0x4d, 0xd3, 0xa3, - 0xa3, 0xaf, 0xbd, 0xe6, 0x78, 0x69, 0x69, 0x37, 0x8b, 0xbd, 0xe6, 0xeb, 0x39, 0xfb, 0x78, 0x7a, - 0xbd, 0x8f, 0x29, 0x4e, 0x7d, 0xd2, 0x21, 0x22, 0xbf, 0x4e, 0x09, 0x87, 0x88, 0x22, 0x8a, 0xc6, - 0x8f, 0x08, 0xf7, 0xae, 0xa4, 0xe3, 0x05, 0x77, 0xbc, 0x85, 0xd3, 0x0f, 0x38, 0x14, 0x77, 0xed, - 0x66, 0x79, 0x2b, 0x85, 0x6b, 0x78, 0x4e, 0x6d, 0x0b, 0x34, 0xfe, 0x06, 0xca, 0x30, 0x16, 0xa0, - 0x9d, 0x81, 0xd5, 0x4a, 0x9a, 0x86, 0xa9, 0xa5, 0xcc, 0xff, 0x85, 0x38, 0x0c, 0x27, 0xfe, 0x27, - 0xf2, 0x1b, 0x0f, 0x1a, 0xc3, 0xff, 0xad, 0x50, 0xd1, 0xc5, 0xf9, 0xf3, 0x9e, 0xa1, 0xdd, 0x9e, - 0xa1, 0xf7, 0x3d, 0x43, 0x0f, 0x07, 0xd6, 0xd9, 0x1d, 0x58, 0xe7, 0xed, 0xc0, 0x3a, 0xd7, 0xe3, - 0x52, 0xb9, 0x9b, 0xcd, 0x72, 0x2a, 0xa0, 0xca, 0x41, 0x5b, 0xd0, 0x26, 0x0f, 0xcf, 0x5d, 0xee, - 0x2f, 0xe9, 0xb6, 0x6b, 0x69, 0x97, 0x69, 0x38, 0xd3, 0xd9, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x13, 0x81, 0x47, 0xf4, 0xdd, 0x01, 0x00, 0x00, + // 346 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xc1, 0x4a, 0x2b, 0x31, + 0x14, 0x86, 0x9b, 0x99, 0xb9, 0xd3, 0x36, 0xf7, 0x52, 0x4a, 0xb8, 0x68, 0xe8, 0x22, 0x0c, 0xd5, + 0x45, 0x17, 0xda, 0xa1, 0xb8, 0x2b, 0xb8, 0x11, 0xb7, 0x6e, 0xba, 0x74, 0x97, 0x66, 0xc2, 0x18, + 0xe9, 0xe4, 0x94, 0x24, 0x1d, 0xec, 0x4b, 0x88, 0xf8, 0x00, 0x3e, 0x8f, 0xb8, 0x2a, 0xb8, 0x71, + 0x29, 0xed, 0x1b, 0xf8, 0x04, 0x92, 0xe9, 0x54, 0xc6, 0xdd, 0xf9, 0xff, 0x1c, 0xfe, 0xfc, 0x1f, + 0x07, 0x13, 0x5b, 0x8a, 0xb4, 0x9c, 0xa4, 0xd6, 0x71, 0x27, 0xc7, 0x4b, 0x03, 0x0e, 0x48, 0x6c, + 0x4b, 0x31, 0x2e, 0x27, 0x83, 0x63, 0x01, 0xb6, 0x00, 0x9b, 0x82, 0x29, 0xfc, 0x0a, 0x98, 0x62, + 0xbf, 0x30, 0x7c, 0x43, 0x38, 0xbe, 0x86, 0x82, 0x2b, 0x4d, 0x7a, 0x38, 0x50, 0x19, 0x45, 0x09, + 0x1a, 0x45, 0xb3, 0x40, 0x65, 0xe4, 0x08, 0xc7, 0x60, 0x54, 0xae, 0x34, 0x0d, 0x12, 0x34, 0xea, + 0xce, 0x6a, 0x45, 0x08, 0x8e, 0x34, 0x2f, 0x24, 0x0d, 0x2b, 0xb7, 0x9a, 0x49, 0x82, 0xff, 0x66, + 0xd2, 0x0a, 0xa3, 0x96, 0x4e, 0x81, 0xa6, 0x51, 0xf5, 0xd4, 0xb4, 0xc8, 0x00, 0x77, 0x04, 0x77, + 0x32, 0x07, 0xb3, 0xa6, 0x7f, 0xaa, 0xe7, 0x1f, 0xed, 0x13, 0x95, 0x00, 0x4d, 0xe3, 0x7d, 0xa2, + 0x9f, 0xbd, 0xe7, 0x78, 0x6e, 0x69, 0x3b, 0x09, 0xbd, 0xe7, 0xe7, 0x29, 0xfb, 0x7a, 0x79, 0x7f, + 0x0c, 0x29, 0x8e, 0x7d, 0xd3, 0x3e, 0x22, 0xff, 0x0e, 0x0d, 0xfb, 0x88, 0x22, 0x8a, 0x86, 0xcf, + 0x08, 0x77, 0x6e, 0xa4, 0xe3, 0x19, 0x77, 0xbc, 0x81, 0xd3, 0xad, 0x70, 0x28, 0x6e, 0xdb, 0xd5, + 0xfc, 0x5e, 0x0a, 0x57, 0xf3, 0x1c, 0x64, 0x03, 0x34, 0xfc, 0x05, 0xca, 0x30, 0x16, 0xa0, 0x9d, + 0x81, 0xc5, 0x42, 0x9a, 0x9a, 0xa9, 0xe1, 0x4c, 0x4f, 0xab, 0x3a, 0x0c, 0x47, 0xfe, 0x27, 0xf2, + 0x1f, 0xf7, 0xea, 0xc0, 0xb3, 0x46, 0xa9, 0xe0, 0xea, 0xf2, 0x75, 0xcb, 0xd0, 0x66, 0xcb, 0xd0, + 0xe7, 0x96, 0xa1, 0xa7, 0x1d, 0x6b, 0x6d, 0x76, 0xac, 0xf5, 0xb1, 0x63, 0xad, 0xdb, 0x93, 0x5c, + 0xb9, 0xbb, 0xd5, 0x7c, 0x2c, 0xa0, 0x48, 0x2d, 0x68, 0x73, 0xae, 0x20, 0xb5, 0xda, 0x64, 0xe9, + 0x43, 0xea, 0x4f, 0xe9, 0xd6, 0x4b, 0x69, 0xe7, 0x71, 0x75, 0xa7, 0x8b, 0xef, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x5b, 0xbc, 0xd5, 0x60, 0xde, 0x01, 0x00, 0x00, } func (m *Domain) Marshal() (dAtA []byte, err error) { diff --git a/x/svc/types/tx.pb.go b/x/svc/types/tx.pb.go index 2fb06a722..8e0e0f3f9 100644 --- a/x/svc/types/tx.pb.go +++ b/x/svc/types/tx.pb.go @@ -248,34 +248,34 @@ func init() { func init() { proto.RegisterFile("svc/v1/tx.proto", fileDescriptor_084252b8c07dd202) } var fileDescriptor_084252b8c07dd202 = []byte{ - // 428 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x8b, 0xd3, 0x40, - 0x14, 0xc7, 0x33, 0xae, 0x76, 0xed, 0x28, 0x1b, 0x19, 0x16, 0x9a, 0xcd, 0x21, 0xbb, 0xe4, 0xb4, - 0x2e, 0x9a, 0xb0, 0x15, 0x44, 0x8a, 0x17, 0x7b, 0xea, 0xa5, 0xa0, 0x29, 0x5e, 0xbc, 0x48, 0x3a, - 0x19, 0xa6, 0x81, 0x26, 0x13, 0xe6, 0x4d, 0x43, 0x7b, 0x13, 0x2f, 0x82, 0x27, 0xbf, 0x86, 0xb7, - 0x1e, 0xfc, 0x10, 0x3d, 0x16, 0x4f, 0x9e, 0x44, 0xda, 0x43, 0xbf, 0x86, 0x24, 0x93, 0xd8, 0x1a, - 0x29, 0x5e, 0xc2, 0x9b, 0xf9, 0xbf, 0xff, 0x7f, 0x7e, 0x79, 0x3c, 0x6c, 0x42, 0x4e, 0xfd, 0xfc, - 0xd6, 0x57, 0x73, 0x2f, 0x93, 0x42, 0x09, 0xd2, 0x82, 0x9c, 0x7a, 0xf9, 0xad, 0xdd, 0xa1, 0x02, - 0x12, 0x01, 0x7e, 0x02, 0xbc, 0xd0, 0x13, 0xe0, 0xba, 0xc1, 0x3e, 0xaf, 0x1c, 0x9c, 0xa5, 0x0c, - 0x62, 0xa8, 0x6f, 0xb9, 0xe0, 0xa2, 0x2c, 0xfd, 0xa2, 0xaa, 0x6e, 0x2f, 0x74, 0xc8, 0x7b, 0x2d, - 0xe8, 0x83, 0x96, 0xdc, 0x4f, 0x08, 0x9b, 0x43, 0xe0, 0x6f, 0xb3, 0x28, 0x54, 0xec, 0x75, 0x28, - 0xc3, 0x04, 0xc8, 0x73, 0xdc, 0x0e, 0x67, 0x6a, 0x22, 0x64, 0xac, 0x16, 0x16, 0xba, 0x42, 0xd7, - 0xed, 0xbe, 0xf5, 0xfd, 0xdb, 0xd3, 0xf3, 0xca, 0xf8, 0x2a, 0x8a, 0x24, 0x03, 0x18, 0x29, 0x19, - 0xa7, 0x3c, 0xd8, 0xb7, 0x92, 0x27, 0xb8, 0x95, 0x95, 0x09, 0xd6, 0x9d, 0x2b, 0x74, 0xfd, 0xa0, - 0x7b, 0xe6, 0xe9, 0x9f, 0xf0, 0x74, 0x6e, 0xff, 0xee, 0xea, 0xe7, 0xa5, 0x11, 0x54, 0x3d, 0xbd, - 0xb3, 0x8f, 0xbb, 0xe5, 0xcd, 0xde, 0xed, 0x5e, 0xe0, 0x4e, 0x03, 0x24, 0x60, 0x90, 0x89, 0x14, - 0x98, 0xfb, 0x19, 0x61, 0x32, 0x04, 0x1e, 0x30, 0x1e, 0x83, 0x62, 0x72, 0xc4, 0x64, 0x1e, 0x53, - 0x46, 0x5e, 0x60, 0x4c, 0x45, 0xaa, 0xa4, 0x98, 0x4e, 0x99, 0xfc, 0x2f, 0xe8, 0x41, 0x2f, 0x79, - 0x8c, 0x4f, 0x41, 0x87, 0x54, 0xa8, 0x66, 0x8d, 0x5a, 0x65, 0x07, 0xb5, 0xde, 0x33, 0x0b, 0xcc, - 0x03, 0xaf, 0x3b, 0xc0, 0xf6, 0xbf, 0x2c, 0x35, 0x2a, 0xb1, 0xf0, 0x29, 0xcc, 0x28, 0x65, 0x00, - 0x25, 0xd0, 0xfd, 0xa0, 0x3e, 0x92, 0x47, 0xf8, 0x24, 0x8a, 0xa3, 0xf2, 0xbd, 0x76, 0x50, 0x94, - 0xdd, 0xaf, 0x08, 0x9f, 0x0c, 0x81, 0x93, 0x01, 0x7e, 0xf8, 0xd7, 0xfc, 0x3b, 0x35, 0x4c, 0x63, - 0x1e, 0xf6, 0xe5, 0x11, 0xe1, 0xcf, 0xeb, 0x6f, 0xb0, 0xd9, 0x1c, 0x92, 0x7d, 0xe0, 0x69, 0x68, - 0xb6, 0x7b, 0x5c, 0xab, 0x23, 0xed, 0x7b, 0x1f, 0x76, 0xcb, 0x1b, 0xd4, 0x7f, 0xb9, 0xda, 0x38, - 0x68, 0xbd, 0x71, 0xd0, 0xaf, 0x8d, 0x83, 0xbe, 0x6c, 0x1d, 0x63, 0xbd, 0x75, 0x8c, 0x1f, 0x5b, - 0xc7, 0x78, 0xe7, 0xf2, 0x58, 0x4d, 0x66, 0x63, 0x8f, 0x8a, 0xc4, 0x17, 0x29, 0x88, 0x54, 0xfa, - 0xe5, 0x67, 0xee, 0x17, 0x1b, 0xaa, 0x16, 0x19, 0x83, 0x71, 0xab, 0x5c, 0xb6, 0x67, 0xbf, 0x03, - 0x00, 0x00, 0xff, 0xff, 0x98, 0xbc, 0xa7, 0xbe, 0xe7, 0x02, 0x00, 0x00, + // 432 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x6b, 0xd4, 0x40, + 0x14, 0xc7, 0x33, 0x56, 0xb7, 0xee, 0x28, 0x8d, 0x0c, 0x85, 0x4d, 0x73, 0x48, 0x4b, 0xbc, 0xd4, + 0x62, 0x33, 0xb4, 0x82, 0x48, 0xc1, 0x83, 0x7b, 0xea, 0x65, 0x41, 0x53, 0xbc, 0x78, 0x91, 0x74, + 0x32, 0x4c, 0x07, 0x9a, 0x4c, 0x98, 0x37, 0x1b, 0xda, 0x9b, 0x78, 0x11, 0x3c, 0xf9, 0x35, 0xbc, + 0xed, 0xc1, 0x0f, 0xb1, 0xc7, 0xc5, 0x93, 0x27, 0x91, 0xdd, 0xc3, 0x7e, 0x0d, 0x49, 0x26, 0x71, + 0xd7, 0xc8, 0xe2, 0xed, 0xcd, 0xfc, 0xdf, 0xff, 0x3f, 0xbf, 0x79, 0x3c, 0xec, 0x42, 0xc9, 0x68, + 0x79, 0x42, 0xcd, 0x4d, 0x54, 0x68, 0x65, 0x14, 0xe9, 0x41, 0xc9, 0xa2, 0xf2, 0xc4, 0x1f, 0x30, + 0x05, 0x99, 0x02, 0x9a, 0x81, 0xa8, 0xf4, 0x0c, 0x84, 0x6d, 0xf0, 0x77, 0x1b, 0x87, 0xe0, 0x39, + 0x07, 0x09, 0xed, 0xad, 0x50, 0x42, 0xd5, 0x25, 0xad, 0xaa, 0xe6, 0x76, 0xcf, 0x86, 0xbc, 0xb7, + 0x82, 0x3d, 0x58, 0x29, 0xfc, 0x84, 0xb0, 0x3b, 0x02, 0xf1, 0xb6, 0x48, 0x13, 0xc3, 0x5f, 0x27, + 0x3a, 0xc9, 0x80, 0x3c, 0xc7, 0xfd, 0x64, 0x6c, 0xae, 0x94, 0x96, 0xe6, 0xd6, 0x43, 0x07, 0xe8, + 0xb0, 0x3f, 0xf4, 0xbe, 0x7f, 0x3b, 0xde, 0x6d, 0x8c, 0xaf, 0xd2, 0x54, 0x73, 0x80, 0x0b, 0xa3, + 0x65, 0x2e, 0xe2, 0x55, 0x2b, 0x79, 0x8a, 0x7b, 0x45, 0x9d, 0xe0, 0xdd, 0x39, 0x40, 0x87, 0x0f, + 0x4e, 0x77, 0x22, 0xfb, 0x89, 0xc8, 0xe6, 0x0e, 0xef, 0x4e, 0x7f, 0xee, 0x3b, 0x71, 0xd3, 0x73, + 0xb6, 0xf3, 0x71, 0x39, 0x39, 0x5a, 0xb9, 0xc3, 0x3d, 0x3c, 0xe8, 0x80, 0xc4, 0x1c, 0x0a, 0x95, + 0x03, 0x0f, 0x3f, 0x23, 0x4c, 0x46, 0x20, 0x62, 0x2e, 0x24, 0x18, 0xae, 0x2f, 0xb8, 0x2e, 0x25, + 0xe3, 0xe4, 0x05, 0xc6, 0x4c, 0xe5, 0x46, 0xab, 0xeb, 0x6b, 0xae, 0xff, 0x0b, 0xba, 0xd6, 0x4b, + 0x9e, 0xe0, 0x6d, 0xb0, 0x21, 0x0d, 0xaa, 0xdb, 0xa2, 0x36, 0xd9, 0x71, 0xab, 0x9f, 0xb9, 0x15, + 0xe6, 0x9a, 0x37, 0x3c, 0xc7, 0xfe, 0xbf, 0x2c, 0x2d, 0x2a, 0xf1, 0xf0, 0x36, 0x8c, 0x19, 0xe3, + 0x00, 0x35, 0xd0, 0xfd, 0xb8, 0x3d, 0x92, 0x47, 0x78, 0x2b, 0x95, 0x69, 0xfd, 0x5e, 0x3f, 0xae, + 0xca, 0xd3, 0xaf, 0x08, 0x6f, 0x8d, 0x40, 0x90, 0x73, 0xfc, 0xf0, 0xaf, 0xf9, 0x0f, 0x5a, 0x98, + 0xce, 0x3c, 0xfc, 0xfd, 0x0d, 0xc2, 0x9f, 0xd7, 0xdf, 0x60, 0xb7, 0x3b, 0x24, 0x7f, 0xcd, 0xd3, + 0xd1, 0xfc, 0x70, 0xb3, 0xd6, 0x46, 0xfa, 0xf7, 0x3e, 0x2c, 0x27, 0x47, 0x68, 0xf8, 0x72, 0x3a, + 0x0f, 0xd0, 0x6c, 0x1e, 0xa0, 0x5f, 0xf3, 0x00, 0x7d, 0x59, 0x04, 0xce, 0x6c, 0x11, 0x38, 0x3f, + 0x16, 0x81, 0xf3, 0xee, 0xb1, 0x90, 0xe6, 0x6a, 0x7c, 0x19, 0x31, 0x95, 0x51, 0x50, 0xb9, 0x3e, + 0x96, 0x8a, 0x42, 0xae, 0x53, 0x7a, 0x43, 0xab, 0x15, 0x35, 0xb7, 0x05, 0x87, 0xcb, 0x5e, 0xbd, + 0x6d, 0xcf, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0xce, 0x06, 0xf5, 0x1a, 0xe8, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.