UNPKG

@settlemint/solidity-supplychain

Version:

Smart contract set to build a supplychain usecase in SettleMint

12 lines (7 loc) 344 B
// modules/ExampleSupplyChainModule.js import { buildModule } from "@nomicfoundation/hardhat-ignition/modules"; const ExampleSupplyChainModule = buildModule("ExampleSupplyChainModule", (m) => { const exampleSupplyChain = m.contract("ExampleSupplyChain", []); return { exampleSupplyChain }; }); export default ExampleSupplyChainModule;