mirror of
https://github.com/zhigang1992/liquid-stacking.git
synced 2026-01-12 17:23:23 +08:00
8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
// SPDX-License-Identifier: BUSL-1.1
|
|
import { initSimnet } from '@hirosystems/clarinet-sdk';
|
|
import { createErrorsTable } from './lib/error-codes.ts';
|
|
const manifestFile = './Clarinet.toml';
|
|
const simnet = await initSimnet(manifestFile);
|
|
|
|
createErrorsTable(simnet, false);
|