npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

signum-smartc-testbed

v1.1.0

Published

A testbed for faster smart contract development with SmartC for Signum blockchain platform

Downloads

285

Readme

signum-smartc-testbed

A Test Environment for automated testing of Signum SmartC - Smart Contract Compiler

Develop your SmartC Contracts faster and more secure using a full TDD approach!

image

Motivation

The SmartC Simulator is an awesome environment to develop SmartC Smart Contracts for Signum Blockchain. It gives you a lot of power to develop and debug your Smart Contracts. But it turns out to be a bit time-consuming. This project's goal is to speed up development by applying pure TDD and give you automation on tests. This way the developer can focus more on the code and develop faster more complex scenarios without being victim of testing fatigue. In the end, it makes the contracts even more secure.


Quick Start

Use the Public Project Template or create your local starter project(*):

  1. npx tiged [email protected]:ohager/signum-smartc-testbed-starter.git <your-project-folder>
  2. yarn (or npm install)
  3. yarn test (or npm test)

If no error occurs you can start developing your own contract!

(*) requires Node.js 20+ installed

How to use?

Use the testbed as a programmable testing environment. Use it together with a test runner like Vitest (recommended) or Jest.

Install it using your favorite package manager:

yarn add signum-smartc-testbed -D or npm i signum-smartc-testbed -D

Follow the instructions for setting up your test runner of choice.

A recommended project structure is like this:

.
├── contract
│   ├── context.ts          ← constants: Account Ids, Map Keys, Method codes, etc.
│   ├── method-1
│   │   ├── method-1.scenarios.ts   ← TransactionObj sets for method-1
│   │   └── method-1.test.ts        ← unit tests
│   ├── method-2
│   │   ├── method-2.scenarios.ts
│   │   └── method-2.test.ts
│   └── contract.smart.c    ← the contract itself
├── package.json
├── README.md
├── tsconfig.json
├── vitest.config.js
└── yarn.lock

Tests must run sequentially (not in parallel) — reset the testbed in beforeEach to avoid state leaking between tests.

Basic Usage

A typical test suite looks like this:

import { SimulatorTestbed } from "signum-smartc-testbed";
import { join } from "path";
import { Context } from "./context";
import { ChangeUsageFee, ChangeUsageFeeNotAllowed } from "./scenarios";

const ContractPath = join(__dirname, "./contract.smart.c");

describe("Stock Contract - Change Usage Fee", () => {
  let testbed: SimulatorTestbed;

  beforeEach(() => {
    testbed = new SimulatorTestbed()
      .loadContract(ContractPath)
      .runScenario(ChangeUsageFee);
  });

  test("should change fee and take effect", () => {
    const bc = testbed.blockchain;
    expect(testbed.getContractMemoryValue("usageFee")).toEqual(2_5000_0000n);
    expect(testbed.getContractMemoryValue("stats_stockQuantity")).toEqual(400n);
    expect(bc.transactions).toHaveLength(7);
    const feepayment = bc.transactions[5];
    expect(feepayment.amount).toEqual(2_5000_0000n);
    expect(feepayment.recipient).toEqual(Context.VeridiBlocAccount);
  });

  test("try to change fee when not creator", () => {
    testbed = new SimulatorTestbed()
      .loadContract(ContractPath)
      .runScenario(ChangeUsageFeeNotAllowed);
    const bc = testbed.blockchain;
    expect(testbed.getContractMemoryValue("usageFee")).toEqual(5_0000_0000n);
    const errors = bc
      .getMapsPerSlot()
      .filter(
        (x) =>
          x.k1 === Context.Maps.KeyError &&
          x.value === Context.ErrorCodes.NoPermission,
      );
    expect(errors).toHaveLength(2);
  });
});

Initializing Contract Variables

To test with configurable contract parameters, declare them in your SmartC source with a TESTBED_ prefix:

// Initializable variables — set by deployer
long var1, var2, var3;

#ifdef TESTBED
  const var1 = TESTBED_var1;
  const var2 = TESTBED_var2;
  const var3 = TESTBED_var3;
#endif

Then pass initial values when loading the contract:

const testbed = new SimulatorTestbed()
  .loadContract(ContractPath, {
    initializers: {
      var1: "Text", // string (max 8 chars)
      var2: 1, // number
      var3: 100n, // bigint
    },
  })
  .runScenario(Scenario1);

Multi-Contract Support

Load and test multiple contracts in the same simulation. Contracts are assigned auto-incrementing IDs, or you can specify them explicitly:

const testbed = new SimulatorTestbed(initialScenario)
  .loadContract(ContractPath, { initializers: { percentage: 20 } }) // id=1
  .loadContract(ContractPath, { initializers: { percentage: 10 } }) // id=2
  .runScenario();

// Inspect a specific contract
const contract1 = testbed.getContract(1n);
const contract2 = testbed.getContract(2n);

// Or list all deployed contracts
const all = testbed.getAllContracts();

// Switch the "current" contract for address-less method calls
testbed.selectContract(1n);
const map = testbed.getContractMap(); // uses contract 1

You can also set the creator or contract ID explicitly:

new SimulatorTestbed().loadContract(ContractPath, {
  contractId: 9999n,
  creator: 4242n,
});

Testing Contract Responses

Use sendTransactionAndGetResponse to send transactions and immediately capture what the contract sends back:

import { asHexMessage, SimulatorTestbed } from "signum-smartc-testbed";

const responses = testbed.sendTransactionAndGetResponse([
  {
    amount: 10_2000_0000n,
    sender: Context.UserAccount,
    recipient: Context.ContractId,
    messageHex: asHexMessage([
      Context.Methods.ForwardPercentage,
      Context.TargetAccount,
    ]),
  },
]);

expect(responses).toHaveLength(1);
expect(responses[0].recipient).toBe(Context.TargetAccount);

API

| Method | Description | | ------------------------------------------------------- | ------------------------------------------------------------------- | | new SimulatorTestbed(scenario?) | Creates testbed, optionally with an initial set of transactions | | .loadContract(path, options?) | Compiles and deploys a contract; chainable | | .runScenario(transactions?) | Appends and executes a transaction set, forges all required blocks | | .selectContract(address) | Sets the current contract for address-less queries | | .sendTransactionAndGetResponse(txs, address?) | Sends transactions and returns the contract's response transactions | | .getContract(address?) | Returns a contract by address (defaults to last deployed) | | .getAllContracts() | Returns all deployed contracts | | .getContractMemory(address?) | Returns the full memory array of a contract | | .getContractMemoryValue(name, address?) | Returns a named memory variable value, or null | | .getContractMap(address?) | Returns the full KKV map of a contract | | .getContractMapValue(k1, k2, address?) | Returns a single map value by keys, or 0n | | .getContractMapValues(k1, address?) | Returns all map entries for a given first key | | .getTransactions() | Returns all blockchain transactions | | .getTransaction(index) | Returns a transaction by index | | .getTransactionById(id) | Returns a transaction by ID, or null | | .getTransactionsSentByContract(blockheight, address?) | Returns transactions sent by the contract at a given block | | .getAccount(accountId) | Returns an account object, or null | | .blockchain | Direct access to the underlying blockchain object |

See the full API Documentation for details.

ROADMAP

  • [x] Github Starter Template
  • [x] Unit Tests
  • [x] Externalize Utility Functions, e.g. method args conversion
  • [x] Stable MultiSlot Support
  • [x] Multi-Contract Support
  • [ ] Adding Testbed for real Blockchain Node