v1.2.9
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
ppe
2022-09-20 13:53:39 +02:00
parent f3f7889f9d
commit 1d0c1a4688
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "warp-contracts",
"version": "1.2.8",
"version": "1.2.9",
"description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",

View File

@@ -1,8 +1,8 @@
/* eslint-disable */
import cloneDeep from 'lodash/cloneDeep';
import copy from 'fast-copy';
import {Buffer} from 'redstone-isomorphic';
import {randomUUID} from "crypto";
import { Buffer } from 'redstone-isomorphic';
import { randomUUID } from 'crypto';
export const sleep = (ms: number): Promise<void> => {
return new Promise((resolve) => setTimeout(resolve, ms));