50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: "transfer"
|
|
description: |-
|
|
Transfer SOL from one address to another.
|
|
inputs:
|
|
- name: "to_address"
|
|
description: >-
|
|
The address to send SOL to.
|
|
- name: "from_address"
|
|
description: >-
|
|
The address to send SOL from.
|
|
- name: "amount"
|
|
description: >-
|
|
The amount of SOL to send.
|
|
step:
|
|
- type: "internal-load-file"
|
|
values:
|
|
filename: "nonce.json"
|
|
outputs:
|
|
nonce_authority: "nonce_authority"
|
|
nonce_data: "nonce_data"
|
|
nonce_address: "nonce_address"
|
|
- type: "sol-transfer"
|
|
inputs:
|
|
from_address: "from_address"
|
|
to_address: "to_address"
|
|
amount: "amount"
|
|
outputs:
|
|
instructions: "instructions"
|
|
derivation_accounts: "derivation_accounts"
|
|
- type: "sol-compile"
|
|
inputs:
|
|
instructions: "instructions"
|
|
derivation_accounts: "derivation_accounts"
|
|
nonce_address: "nonce_address"
|
|
nonce_authority: "nonce_authority"
|
|
nonce_data: "nonce_data"
|
|
outputs:
|
|
instructions: "nonced_instructions"
|
|
- type: "sol-sign"
|
|
inputs:
|
|
blockhash: "nonce_data"
|
|
instructions: "nonced_instructions"
|
|
outputs:
|
|
transaction: "signed_transaction"
|
|
- type: "internal-save-file"
|
|
values:
|
|
filename: "transaction.json"
|
|
inputs:
|
|
transaction: "signed_transaction"
|