Get Started
Go to https://app.simbachain.com/ or click below.
Get an invitation and login to the SIMBA Dashboard with your email and password
Setup Ethereum Wallet
Create a Smart Contract
///////////////////////////////////////////////////////////////////
pragma solidity ^0.4.24;
contract CarDealership {
string bundleHash;
function registerCar(string VIN, string Make, string Model, string _bundleHash, bytes32 assetId, bytes32 car) public {}
function accidentReport(string report_name, string assetID, string _bundleHash, bytes32 assetId, bytes32 car) public {}
function carSale(string soldTo, bytes20 amount, string assetID, string _bundleHash, bytes32 assetId, bytes32 car) public {}
}
///////////////////////////////////////////////////////////////////