Skip to main content

Smart Contract Interactions using sudo clio

Overview

In the article you’ll learn how to execute actions on a contract with the sudo clio tool. It guides you through inserting and updating records, checking updates, and testing out behavior on unauthorized change attempt.

Prerequisites

sudo clio create account sysio jack $PUBLIC_KEY -p sysio@active 
sudo clio create account sysio nick $PUBLIC_KEY -p sysio@active

Steps

Step 1: Insert a record

First, let’s have Jack insert or update his own record.

sudo clio push action company upsertemp '["jack", "Jack Sparrow", "[email protected]", "active"]' -p jack@active

Output:

create-record

You could use block explorer to inspect the table and the transactions.

be-table-check

Step 2: Perfom an update

Next, we update Jack’s record,

sudo clio push action company upsertemp '["jack", "Jack Nicholson", "[email protected]", "active"]' -p jack@active

Output:

![update-record](/img/sudo clio-update-record.png)

Post-Action Check:

• Inspect Logs to ensure the update was executed. • Inspect Table to see Jack’s updated record.

Step 3: Retrieve all users

sudo clio push action company getallemp '{}' -p jack@active

Ouput:

retrieve-records

Step 4: Attempt unauthorized transaction

sudo clio push action company upsertemp '["nick", "Nick Fury", "[email protected]", "active"]' -p jack@active

This should fail since Jack should not be able to add records for other users because the contract enforces proper authorization via require_auth().

unauthorized

To insert Nick's record execute the following command:

sudo clio push action company upsertemp '["nick", "Nick Fury", "[email protected]", "active"]' -p nick@active