@moonpay/cli 0.3.0 → 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 +42 -1
- 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
|
@@ -2993,7 +2993,7 @@ var schemas_default = [
|
|
|
2993
2993
|
},
|
|
2994
2994
|
requestId: {
|
|
2995
2995
|
type: "string",
|
|
2996
|
-
description: "
|
|
2996
|
+
description: "Request ID from token_swap_build"
|
|
2997
2997
|
}
|
|
2998
2998
|
},
|
|
2999
2999
|
required: [
|
|
@@ -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.",
|