testContract()
Test the execution of a smart contract project
Method Signature
function testContract(blockchain, from, project)
Parameters
Name
Type
Description
blockchain
String
Blockchain address in hex
from
String
User's wallet address in hex
project
String
Smart Contract's .prj file in hex format
Example
var blockchain = "0x8a20baa40c45dc5055aeb26197c203e576ef389d9acb171bd62da11dc5ad72b2";
var from = "0x8b1dd25076c04c5139acba458f86c69cd2d322c61d19bc28daa3bbd945083738";
var contractAddress = "0x...";
var test = await CircularProtocolAPI.testContract(blockchain, from, contractAddress);
Result
The result will be of type JSON
.
Last updated