Sends a new transaction to the selected metagraph.
Parameters
Name
Type
Description
Data
Object<Transaction>
The transaction object.
Transaction
type Transaction = {
metagraphAddress: Address; // Address of the metagraph
source: Address; // Address of the sender.
destination: Address; // Address of the receiver.
amount: Number; // Amount sent with this transaction to the receiver. (8 decimals)
fee?: Number; // Fee used for the transaction. (8 decimals)
};