@@ -263,7 +263,7 @@ runtime.character.settings.secrets = {
263
263
** Example Call**
264
264
265
265
``` typescript
266
- const response = await runtime .triggerAction (" SEND_MASS_PAYOUT" , {
266
+ const response = await runtime .processAction (" SEND_MASS_PAYOUT" , {
267
267
receivingAddresses: [
268
268
" 0xA0ba2ACB5846A54834173fB0DD9444F756810f06" ,
269
269
" 0xF14F2c49aa90BaFA223EE074C1C33b59891826bF" ,
@@ -388,7 +388,7 @@ All contract deployments and interactions are logged to a CSV file for record-ke
388
388
1 . **ERC20 Token**
389
389
390
390
```typescript
391
- const response = await runtime.triggerAction ("DEPLOY_TOKEN_CONTRACT", {
391
+ const response = await runtime.processAction ("DEPLOY_TOKEN_CONTRACT", {
392
392
contractType: "ERC20",
393
393
name: "MyToken",
394
394
symbol: "MTK",
@@ -400,7 +400,7 @@ All contract deployments and interactions are logged to a CSV file for record-ke
400
400
2 . **NFT Collection**
401
401
402
402
```typescript
403
- const response = await runtime.triggerAction ("DEPLOY_TOKEN_CONTRACT", {
403
+ const response = await runtime.processAction ("DEPLOY_TOKEN_CONTRACT", {
404
404
contractType: "ERC721",
405
405
name: "MyNFT",
406
406
symbol: "MNFT",
@@ -411,7 +411,7 @@ All contract deployments and interactions are logged to a CSV file for record-ke
411
411
412
412
3 . **Multi-token Collection**
413
413
```typescript
414
- const response = await runtime.triggerAction ("DEPLOY_TOKEN_CONTRACT", {
414
+ const response = await runtime.processAction ("DEPLOY_TOKEN_CONTRACT", {
415
415
contractType: "ERC1155",
416
416
name: "MyMultiToken",
417
417
symbol: "MMT",
@@ -423,7 +423,7 @@ All contract deployments and interactions are logged to a CSV file for record-ke
423
423
**Contract Interaction Example:**
424
424
425
425
```typescript
426
- const response = await runtime.triggerAction ("INVOKE_CONTRACT", {
426
+ const response = await runtime.processAction ("INVOKE_CONTRACT", {
427
427
contractAddress: "0x123...",
428
428
method: "transfer",
429
429
abi: [...],
@@ -597,7 +597,7 @@ The Webhook Plugin enables Eliza to interact with the Coinbase SDK to create and
597
597
To create a webhook:
598
598
599
599
```typescript
600
- const response = await runtime.triggerAction ("CREATE_WEBHOOK", {
600
+ const response = await runtime.processAction ("CREATE_WEBHOOK", {
601
601
networkId: "base",
602
602
eventType: "transfers",
603
603
notificationUri: "https://your-notification-uri.com",
0 commit comments