CommodityD_C
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
Name | Type | Description |
---|---|---|
_address | address | The medAddr |
Sender | address | The sender's address |
Transporter | address | The transporter's address |
Receiver | address | The receiver's address |
pickDC
Called when the associated transporter initiates this function
function pickDC(address _address, address transporterAddr) public;
Parameters
Name | Type | Description |
---|---|---|
_address | address | The commodity address |
transporterAddr | address | The transporter's address |
receiveDC
Called when the associated receiver initiates this function
function receiveDC(address _address, address Receiver) public;
Parameters
Name | Type | Description |
---|---|---|
_address | address | The commodity address |
Receiver | address | The receiver's address |
get_addressStatus
Returns the current status of the package
function get_addressStatus() public view returns (uint256);
Returns
Name | Type | Description |
---|---|---|
<none> | uint256 | status 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
}