Skip to content

Commit

Permalink
added version number in schema id
Browse files Browse the repository at this point in the history
  • Loading branch information
arnabghose997 committed Aug 30, 2022
1 parent ca0b22c commit 139fc2b
Show file tree
Hide file tree
Showing 11 changed files with 241 additions and 185 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GOBIN = $(shell go env GOPATH)/bin
ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=hid-node \
-X github.com/cosmos/cosmos-sdk/version.AppName=hid-node \
-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.Commit=$(COMMIT)

BUILD_FLAGS := -ldflags '$(ldflags)'

Expand Down
172 changes: 88 additions & 84 deletions docs/static/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20745,50 +20745,52 @@ paths:
type: object
properties:
schema:
type: object
properties:
type:
type: string
modelVersion:
type: string
id:
type: string
name:
type: string
author:
type: string
authored:
type: string
schema:
type: object
properties:
schema:
type: string
description:
type: string
type:
type: string
type: array
items:
type: object
properties:
type:
type: string
modelVersion:
type: string
id:
type: string
name:
type: string
author:
type: string
authored:
type: string
schema:
type: object
properties:
type: string
required:
type: array
items:
schema:
type: string
description:
type: string
type:
type: string
properties:
type: string
required:
type: array
items:
type: string
additionalProperties:
type: boolean
proof:
type: object
properties:
type:
type: string
created:
type: string
verificationMethod:
type: string
proofPurpose:
type: string
proofValue:
type: string
additionalProperties:
type: boolean
proof:
type: object
properties:
type:
type: string
created:
type: string
verificationMethod:
type: string
proofPurpose:
type: string
proofValue:
type: string
default:
description: An unexpected error response.
schema:
Expand Down Expand Up @@ -47798,50 +47800,52 @@ definitions:
type: object
properties:
schema:
type: object
properties:
type:
type: string
modelVersion:
type: string
id:
type: string
name:
type: string
author:
type: string
authored:
type: string
schema:
type: object
properties:
schema:
type: string
description:
type: string
type:
type: string
type: array
items:
type: object
properties:
type:
type: string
modelVersion:
type: string
id:
type: string
name:
type: string
author:
type: string
authored:
type: string
schema:
type: object
properties:
type: string
required:
type: array
items:
schema:
type: string
description:
type: string
type:
type: string
properties:
type: string
required:
type: array
items:
type: string
additionalProperties:
type: boolean
proof:
type: object
properties:
type:
type: string
created:
type: string
verificationMethod:
type: string
proofPurpose:
type: string
proofValue:
type: string
additionalProperties:
type: boolean
proof:
type: object
properties:
type:
type: string
created:
type: string
verificationMethod:
type: string
proofPurpose:
type: string
proofValue:
type: string
hypersignprotocol.hidnode.ssi.QueryParamsResponse:
type: object
properties:
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ require (
require (
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/golang/protobuf v1.5.2
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
github.com/multiformats/go-multibase v0.0.3
github.com/regen-network/cosmos-proto v0.3.1 // indirect
github.com/spf13/viper v1.12.0
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
gopkg.in/yaml.v2 v2.4.0
Expand Down
Loading

0 comments on commit 139fc2b

Please sign in to comment.