We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e2254 commit 5fe1d4fCopy full SHA for 5fe1d4f
packages/plugin-solana/README.MD
@@ -141,13 +141,25 @@ Transfers tokens between wallets.
141
142
```typescript
143
// Example usage
144
-const result = await runtime.executeAction("TRANSFER_TOKEN", {
+const result = await runtime.executeAction("SEND_TOKEN", {
145
tokenAddress: "TokenAddressHere",
146
recipient: "RecipientAddressHere",
147
amount: "1000",
148
});
149
```
150
151
+### transferSol
152
+
153
+Transfers SOL between wallets.
154
155
+```typescript
156
+// Example usage
157
+const result = await runtime.executeAction("SEND_SOL", {
158
+ recipient: "RecipientAddressHere",
159
+ amount: "1000",
160
+});
161
+```
162
163
### takeOrder
164
165
Places a buy order based on conviction level.
0 commit comments