solana-developers / solana-actions

https://solana-developers.github.io/solana-actions/
Apache License 2.0
92 stars 38 forks source link

express example #8

Closed ZYJLiu closed 2 months ago

ZYJLiu commented 2 months ago

This example demonstrates a Solana Action built with Node.js using the Express framework. It provides an API endpoint for transferring SOL.

Setup

Navigate to ./examples/express.

Install dependencies:

npm install

Start the application:

npm start

The server will start running on http://localhost:8080.

The endpoint for the Action is: http://localhost:8080/api/actions/transfer-sol

You can test the Action on devnet as a Blink at https://dial.to/devnet: https://www.dial.to/devnet?action=solana-action%3Ahttp%3A%2F%2Flocalhost%3A8080%2Fapi%2Factions%2Ftransfer-sol

nickfrosty commented 2 months ago

This is awesome and was on the todo list! Glad you were able to get to it :) One nit: see my review comment