mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-04-29 15:37:58 +00:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
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_); |