We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The action specification supports advanced input types, which are an important feature to create a large number of new Solana Actions.
Allow to add the "type" and "options" fields on the action's parameters. Like this:
{ type: "select", name: "amount", // parameter name in the `href` above label: "Donation Amount in SOL", // placeholder of the text input required: true, options: [ { label: "1", value: "1" }, { label: "5", value: "5" }, { label: "10", value: "10" }, ], },
It is not possible to add the "type" and "options" fields on the parameters.
Add the fields in the struct ActionLinkParameterStruct
ActionLinkParameterStruct
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
The action specification supports advanced input types, which are an important feature to create a large number of new Solana Actions.
Expected Behavior
Allow to add the "type" and "options" fields on the action's parameters. Like this:
Found Behavior
It is not possible to add the "type" and "options" fields on the parameters.
Possible Solution
Add the fields in the struct
ActionLinkParameterStruct
Reference links
Advanced types result example
The text was updated successfully, but these errors were encountered: