-
Notifications
You must be signed in to change notification settings - Fork 4
feat/update_for_release_v1_16_4 #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,27 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Parameter": "id", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Description": "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Parameter": "round", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Description": "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Parameter": "amount_deposited", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Type": "string", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Description": "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Parameter": "is_claimable", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Type": "bool", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Description": "Whether the auction rewards can be claimed." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Parameter": "claimed_assets", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Type": "ClaimedAssets array", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Description": "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+3
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fill missing descriptions and align terminology Several descriptions are empty, which degrades the docs. Propose concise, informative text. {
"Parameter": "id",
"Type": "uint64",
- "Description": ""
+ "Description": "Unique identifier of the account’s auction participation."
},
{
"Parameter": "round",
"Type": "uint64",
- "Description": ""
+ "Description": "Auction round number."
},
{
"Parameter": "amount_deposited",
"Type": "string",
- "Description": ""
+ "Description": "Amount deposited by the account (string‑encoded)."
},
{
"Parameter": "is_claimable",
"Type": "bool",
"Description": "Whether the auction rewards can be claimed."
},
{
"Parameter": "claimed_assets",
"Type": "ClaimedAssets array",
- "Description": ""
+ "Description": "List of assets already claimed by the account."
}Also ensure the request type for round matches this file (see note in AuctionV2Request.json). 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| [ | ||
| { | ||
| "Parameter": "address", | ||
| "Type": "string", | ||
| "Description": "Address of account", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "per_page", | ||
| "Type": "int32", | ||
| "Description": "", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "token", | ||
| "Type": "string", | ||
| "Description": "Pagination token", | ||
| "Required": "Yes" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [ | ||
| { | ||
| "Parameter": "auctions", | ||
| "Type": "AccountAuctionV2 array", | ||
| "Description": "The historical auctions" | ||
| }, | ||
| { | ||
| "Parameter": "next", | ||
| "Type": "string array", | ||
| "Description": "Next tokens for pagination" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,47 @@ | ||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "id", | ||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||
| "Description": "" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "bid_target", | ||||||||||||||||||||||||||||||||||||||
| "Type": "string", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Bid target of the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "current_slots", | ||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Total slots of the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "total_slots", | ||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Total slots of the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+13
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix mismatch in slots descriptions. current_slots should not have the same description as total_slots. - "Description": "Total slots of the auction"
+ "Description": "Current filled slots of the auction"
@@
- "Description": "Total slots of the auction"
+ "Description": "Total available slots of the auction"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "max_user_allocation", | ||||||||||||||||||||||||||||||||||||||
| "Type": "string", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Max user allocation of the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "total_committed", | ||||||||||||||||||||||||||||||||||||||
| "Type": "string", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Total committed amount of the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "whitelist_addresses", | ||||||||||||||||||||||||||||||||||||||
| "Type": "string array", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Whitelist addresses for the auction" | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "start_timestamp", | ||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Auction start timestamp in UNIX millis." | ||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| "Parameter": "end_timestamp", | ||||||||||||||||||||||||||||||||||||||
| "Type": "uint64", | ||||||||||||||||||||||||||||||||||||||
| "Description": "Auction end timestamp in UNIX millis." | ||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,8 @@ | ||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||
| { | ||||||||||||||||||||||||
| "Parameter": "round", | ||||||||||||||||||||||||
| "Type": "int64", | ||||||||||||||||||||||||
| "Description": "The auction round number.", | ||||||||||||||||||||||||
| "Required": "Yes" | ||||||||||||||||||||||||
| } | ||||||||||||||||||||||||
|
Comment on lines
+3
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Type mismatch with AccountAuctionV2.round (uint64 vs int64) AccountAuctionV2.json defines round as uint64, but this request uses int64. Align types to avoid client confusion and codegen inconsistencies. {
"Parameter": "round",
- "Type": "int64",
+ "Type": "uint64",
"Description": "The auction round number.",
"Required": "Yes"
}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| [ | ||
| { | ||
| "Parameter": "auction", | ||
| "Type": "Auction", | ||
| "Description": "The auction" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| [ | ||
| { | ||
| "Parameter": "per_page", | ||
| "Type": "int32", | ||
| "Description": "", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "token", | ||
| "Type": "string", | ||
| "Description": "Pagination token", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "end_time", | ||
| "Type": "int64", | ||
| "Description": "The ending timestamp in UNIX milliseconds to filter the auctions", | ||
| "Required": "Yes" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [ | ||
| { | ||
| "Parameter": "auctions", | ||
| "Type": "Auction array", | ||
| "Description": "The historical auctions" | ||
| }, | ||
| { | ||
| "Parameter": "next", | ||
| "Type": "string array", | ||
| "Description": "Next tokens for pagination" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [ | ||
| { | ||
| "Parameter": "denom", | ||
| "Type": "string", | ||
| "Description": "" | ||
| }, | ||
| { | ||
| "Parameter": "amount", | ||
| "Type": "string", | ||
| "Description": "" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| [ | ||
| { | ||
| "Parameter": "value", | ||
| "Type": "string", | ||
| "Description": "APR value" | ||
| }, | ||
| { | ||
| "Parameter": "original_lp_price", | ||
| "Type": "string", | ||
| "Description": "Original LP price" | ||
| }, | ||
| { | ||
| "Parameter": "current_lp_price", | ||
| "Type": "string", | ||
| "Description": "Current LP price" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| [ | ||
| { | ||
| "Parameter": "thirty_days", | ||
| "Type": "Apr", | ||
| "Description": "30-day APR" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| [ | ||
| { | ||
| "Parameter": "vault_address", | ||
| "Type": "string", | ||
| "Description": "Vault address", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "operator_address", | ||
| "Type": "string", | ||
| "Description": "Operator address", | ||
| "Required": "Yes" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| [ | ||
| { | ||
| "Parameter": "buckets", | ||
| "Type": "RedemptionBucket array", | ||
| "Description": "The redemption buckets" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| [ | ||
| { | ||
| "Parameter": "vault_address", | ||
| "Type": "string", | ||
| "Description": "Vault address", | ||
| "Required": "Yes" | ||
| }, | ||
| { | ||
| "Parameter": "user_address", | ||
| "Type": "string", | ||
| "Description": "User address", | ||
| "Required": "Yes" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| [ | ||
| { | ||
| "Parameter": "user", | ||
| "Type": "User", | ||
| "Description": "The user" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| [ | ||
| { | ||
| "Parameter": "vault_address", | ||
| "Type": "string", | ||
| "Description": "Vault address", | ||
| "Required": "Yes" | ||
| } | ||
| ] |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,12 @@ | ||||||||||||||||||
| [ | ||||||||||||||||||
| { | ||||||||||||||||||
| "Parameter": "t", | ||||||||||||||||||
| "Type": "int32", | ||||||||||||||||||
| "Description": "Time, Unix timestamp in milliseconds (UTC)" | ||||||||||||||||||
| }, | ||||||||||||||||||
|
Comment on lines
+3
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use int64 for millisecond timestamps. Unix time in milliseconds does not fit in int32. This will be rendered incorrectly. - "Type": "int32",
+ "Type": "int64",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||
| { | ||||||||||||||||||
| "Parameter": "v", | ||||||||||||||||||
| "Type": "string", | ||||||||||||||||||
| "Description": "PnL Value" | ||||||||||||||||||
| } | ||||||||||||||||||
| ] | ||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Version bumps LGTM; verify tags exist
Confirm these tags exist and are published.
🏁 Script executed:
Length of output: 123
🏁 Script executed:
Length of output: 386
Publish missing tags
injective-core v1.16.4 and injective-indexer v1.16.91 aren’t found in their GitHub repos. Ensure those tags are created or update the Makefile to reference existing versions.
🤖 Prompt for AI Agents