New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@helios-lang/contract-utils

Package Overview
Dependencies
Maintainers
0
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@helios-lang/contract-utils - npm Package Compare versions

Comparing version 0.2.13 to 0.2.14

4

package.json
{
"name": "@helios-lang/contract-utils",
"version": "0.2.13",
"version": "0.2.14",
"description": "Convenience and type-safety utilities for using Helios validators from within Typescript",

@@ -42,5 +42,5 @@ "main": "src/index.js",

"@helios-lang/ledger": "^0.2.8",
"@helios-lang/type-utils": "^0.1.20",
"@helios-lang/type-utils": "^0.1.21",
"@helios-lang/uplc": "^0.1.31"
}
}

@@ -21,3 +21,7 @@ export {}

/**
* @template {((args: Record<string, UplcData>) => UplcData)} T
* @template {((args: {
* $currentScript? : string
* } & {
* [key: string]: UplcData
* }) => UplcData)} T
*/

@@ -24,0 +28,0 @@ export class UserFunc {

@@ -17,5 +17,13 @@ /**

/**
* @template {((args: Record<string, UplcData>) => UplcData)} T
* @template {((args: {
* $currentScript? : string
* } & {
* [key: string]: UplcData
* }) => UplcData)} T
*/
export class UserFunc<T extends (args: Record<string, UplcData>) => UplcData> {
export class UserFunc<T extends (args: {
$currentScript?: string | undefined;
} & {
[key: string]: import("@helios-lang/uplc").UplcData;
}) => UplcData> {
/**

@@ -22,0 +30,0 @@ * @param {UserFuncProps} props

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc