Motoko Code
public type Memo = Blob;
public shared(msg) func send_memo(from: Principal, to: Principal, value: Nat,memo: Memo) : async TxReceipt
{
// Store the memo as Blob.toArray(memo);
};
deploying as memo_can
How i can call this in the dfx cli - command line ?
String memo i want to send : “Bill Payment” and “Cash Receipt”
How to send from dfx cli ? to the canister calling the send_memo function ?
Appreciate your reply. Thanks