add bid arr in auction type

This commit is contained in:
2022-08-28 02:32:06 +00:00
parent 4246f768a1
commit fcc85ec520
6 changed files with 166 additions and 52 deletions

View File

@@ -20144,8 +20144,14 @@ paths:
description:
type: string
bids:
type: integer
format: int64
type: array
items:
type: object
properties:
owner:
type: string
amount:
type: string
highestBid:
type: integer
format: int64
@@ -20273,8 +20279,14 @@ paths:
description:
type: string
bids:
type: integer
format: int64
type: array
items:
type: object
properties:
owner:
type: string
amount:
type: string
highestBid:
type: integer
format: int64
@@ -47405,11 +47417,24 @@ definitions:
description:
type: string
bids:
type: integer
format: int64
type: array
items:
type: object
properties:
owner:
type: string
amount:
type: string
highestBid:
type: integer
format: int64
cosmostest.cosmostest.Bid:
type: object
properties:
owner:
type: string
amount:
type: string
cosmostest.cosmostest.MsgNewAuctionResponse:
type: object
properties:
@@ -47439,8 +47464,14 @@ definitions:
description:
type: string
bids:
type: integer
format: int64
type: array
items:
type: object
properties:
owner:
type: string
amount:
type: string
highestBid:
type: integer
format: int64
@@ -47482,8 +47513,14 @@ definitions:
description:
type: string
bids:
type: integer
format: int64
type: array
items:
type: object
properties:
owner:
type: string
amount:
type: string
highestBid:
type: integer
format: int64