mirror of
https://github.com/zhigang1992/liquid-stacking.git
synced 2026-01-12 22:48:34 +08:00
9 lines
274 B
TypeScript
9 lines
274 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);
|