Skip to content

Commit

Permalink
Merge pull request #20 from FigureTechnologies/tsilva/sc-256087/multi…
Browse files Browse the repository at this point in the history
…-like-capital-denom

Tsilva/sc 256087/multi like capital denom
  • Loading branch information
tsilva-figure authored Sep 5, 2023
2 parents 9d6bdef + 14a181e commit b86ab4f
Show file tree
Hide file tree
Showing 8 changed files with 297 additions and 53 deletions.
12 changes: 12 additions & 0 deletions schema/handle_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,12 @@
"format": "uint64",
"minimum": 0.0
},
"capital_denom": {
"type": [
"string",
"null"
]
},
"to": {
"$ref": "#/definitions/Addr"
}
Expand All @@ -181,6 +187,12 @@
],
"format": "int64"
},
"cap_d": {
"type": [
"string",
"null"
]
},
"com": {
"type": [
"integer",
Expand Down
11 changes: 7 additions & 4 deletions schema/instantiate_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,16 @@
"type": "object",
"required": [
"admin",
"capital_denom",
"capital_per_share",
"commitment_denom",
"investment_denom",
"like_capital_denoms",
"lp"
],
"properties": {
"admin": {
"$ref": "#/definitions/Addr"
},
"capital_denom": {
"type": "string"
},
"capital_per_share": {
"type": "integer",
"format": "uint64",
Expand All @@ -36,6 +33,12 @@
"investment_denom": {
"type": "string"
},
"like_capital_denoms": {
"type": "array",
"items": {
"type": "string"
}
},
"lp": {
"$ref": "#/definitions/Addr"
},
Expand Down
11 changes: 7 additions & 4 deletions schema/state.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,17 @@
"type": "object",
"required": [
"admin",
"capital_denom",
"capital_per_share",
"commitment_denom",
"investment_denom",
"like_capital_denoms",
"lp",
"raise"
],
"properties": {
"admin": {
"$ref": "#/definitions/Addr"
},
"capital_denom": {
"type": "string"
},
"capital_per_share": {
"type": "integer",
"format": "uint64",
Expand All @@ -29,6 +26,12 @@
"investment_denom": {
"type": "string"
},
"like_capital_denoms": {
"type": "array",
"items": {
"type": "string"
}
},
"lp": {
"$ref": "#/definitions/Addr"
},
Expand Down
Loading

0 comments on commit b86ab4f

Please sign in to comment.