CommodityD_C

Git Source

Author: Tinotenda Joe

This contract represents a dispatch and collection model for commodities

State Variables

Owner

Storage for contract owner's address

address Owner;

medAddr

Addresses for medAddr, sender, transporter, receiver

address medAddr;

sender

address sender;

transporter

address transporter;

receiver

address receiver;

status

Store the status of package

packageStatus status;

Functions

constructor

Constructor that initializes contract with initial parameters

constructor(address _address, address Sender, address Transporter, address Receiver);

Parameters

NameTypeDescription
_addressaddressThe medAddr
SenderaddressThe sender's address
TransporteraddressThe transporter's address
ReceiveraddressThe receiver's address

pickDC

Called when the associated transporter initiates this function

function pickDC(address _address, address transporterAddr) public;

Parameters

NameTypeDescription
_addressaddressThe commodity address
transporterAddraddressThe transporter's address

receiveDC

Called when the associated receiver initiates this function

function receiveDC(address _address, address Receiver) public;

Parameters

NameTypeDescription
_addressaddressThe commodity address
ReceiveraddressThe receiver's address

get_addressStatus

Returns the current status of the package

function get_addressStatus() public view returns (uint256);

Returns

NameTypeDescription
<none>uint256status The current status of the package

Errors

UnAuthorised_Receiver

error UnAuthorised_Receiver();

Transporter_is_not_Authorised

error Transporter_is_not_Authorised();

Enums

packageStatus

Enumeration of different package statuses

enum packageStatus {
    atcreator,
    picked,
    delivered
}