@moonpay/cli 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +41 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/moonpay-missions/SKILL.md +124 -0
package/dist/index.js
CHANGED
|
@@ -3006,6 +3006,47 @@ var schemas_default = [
|
|
|
3006
3006
|
$schema: "http://json-schema.org/draft-07/schema#"
|
|
3007
3007
|
}
|
|
3008
3008
|
},
|
|
3009
|
+
{
|
|
3010
|
+
name: "token_trending_list",
|
|
3011
|
+
description: "Get currently trending tokens on a blockchain. Perfect for discovering what's hot right now.",
|
|
3012
|
+
inputSchema: {
|
|
3013
|
+
$ref: "#/definitions/token_trending_list_input",
|
|
3014
|
+
definitions: {
|
|
3015
|
+
token_trending_list_input: {
|
|
3016
|
+
type: "object",
|
|
3017
|
+
properties: {
|
|
3018
|
+
chain: {
|
|
3019
|
+
type: "string",
|
|
3020
|
+
enum: [
|
|
3021
|
+
"solana",
|
|
3022
|
+
"ethereum",
|
|
3023
|
+
"base",
|
|
3024
|
+
"polygon",
|
|
3025
|
+
"arbitrum",
|
|
3026
|
+
"optimism"
|
|
3027
|
+
],
|
|
3028
|
+
description: "Blockchain to get trending tokens from (e.g. 'solana', 'ethereum', 'base')"
|
|
3029
|
+
},
|
|
3030
|
+
limit: {
|
|
3031
|
+
type: "number",
|
|
3032
|
+
description: "Number of results per page"
|
|
3033
|
+
},
|
|
3034
|
+
page: {
|
|
3035
|
+
type: "number",
|
|
3036
|
+
description: "The page number of results"
|
|
3037
|
+
}
|
|
3038
|
+
},
|
|
3039
|
+
required: [
|
|
3040
|
+
"chain",
|
|
3041
|
+
"limit",
|
|
3042
|
+
"page"
|
|
3043
|
+
],
|
|
3044
|
+
additionalProperties: false
|
|
3045
|
+
}
|
|
3046
|
+
},
|
|
3047
|
+
$schema: "http://json-schema.org/draft-07/schema#"
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
3009
3050
|
{
|
|
3010
3051
|
name: "transaction_send",
|
|
3011
3052
|
description: "Broadcast a signed transaction to Solana. Simulates first, then sends and confirms.",
|