changedInput schema / examples
Previous value: -[
- {
- "chain": "ethereum"
- },
- {
- "chain": "solana",
- "token": "EPjFWaLb3hyccqaLmc4ZeAQJ5v4J8DTfWWrpqkc2Egw"
- }
-]New value: +[
+ {},
+ {
+ "chain": "solana"
+ }
+]
changedOutput schema / description
Previous value: -"Most-boosted tokens optionally filtered by chain/token"New value: +"Most-boosted tokens, optionally filtered to a chain/token"
addedOutput schema / properties / boost_count
Added value: +{
+ "description": "Number of boost entries returned",
+ "type": "number"
+}
changedOutput schema / properties / boosts / description
Previous value: -"Top boosted tokens"New value: +"Boost entries"
changedOutput schema / properties / boosts / items / properties / amount / description
Previous value: -"Total boost amount"New value: +"Boost amount"
addedOutput schema / properties / boosts / items / properties / description
Added value: +{
+ "description": "Token description",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedOutput schema / properties / boosts / items / properties / totalAmount
Added value: +{
+ "description": "Cumulative boost amount",
+ "type": [
+ "number",
+ "null"
+ ]
+}
addedOutput schema / properties / chain
Added value: +{
+ "description": "Chain filter that was applied, when one was passed",
+ "type": "string"
+}
addedOutput schema / properties / filtered
Added value: +{
+ "description": "Whether a chain/token filter was applied",
+ "type": "boolean"
+}
removedOutput schema / properties / schemaVersion
Removed value: -{
- "description": "API schema version",
- "type": "string"
-}
addedOutput schema / properties / token
Added value: +{
+ "description": "Token filter that was applied, when one was passed",
+ "type": "string"
+}
addedOutput schema / required
Added value: +[
+ "boost_count",
+ "filtered",
+ "boosts"
+]