Blank contract.

This commit is contained in:
ravinsp
2022-08-21 15:47:49 +05:30
parent e282484c60
commit 7e2ec90542
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const HotPocket = require("hotpocket-nodejs-contract");
const _projname_ = async (ctx) => {
// Your smart contract logic.
console.log('Blank contract');
}
const hpc = new HotPocket.Contract();
hpc.init(_projname_);