Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ganache/console.log

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ganache/console.log - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

2

lib/scripts/generate.js

@@ -26,3 +26,3 @@ "use strict";

const signatureFile = `/*
* This file was automatically generated by \`./src/chains/ethereum/console.log/scripts/generate.ts\`; do not edit. */
* This file was automatically generated by \`./packages/ethereum/console.log/scripts/generate.ts\`; do not edit. */

@@ -29,0 +29,0 @@ import { ${handlersKeys.join(", ")}, fixedBytes } from "./handlers";

@@ -6,6 +6,6 @@ {

},
"version": "0.4.0",
"version": "0.4.1",
"description": "A Solidity library and EVM hooks for using console.log from Solidity contracts",
"author": "David Murdoch",
"homepage": "https://github.com/trufflesuite/ganache/tree/develop/src/chains/ethereum/console.log#readme",
"homepage": "https://github.com/trufflesuite/ganache/tree/develop/packages/ethereum/console.log#readme",
"license": "MIT",

@@ -27,3 +27,3 @@ "main": "lib/index.js",

"url": "https://github.com/trufflesuite/ganache.git",
"directory": "src/chains/ethereum/console.log"
"directory": "packages/ethereum/console.log"
},

@@ -68,9 +68,8 @@ "scripts": {

"ts-node": "10.9.1",
"typescript": "4.7.4"
"typescript": "5.1.6"
},
"dependencies": {
"@ethereumjs/util": "8.0.5",
"@ganache/utils": "0.3.0"
"@ganache/utils": "0.9.1"
},
"gitHead": "7cba77c07030f113ddad4258fdf3dd0150f8bcbf"
"gitHead": "d4618893aaa38a41e2c4d51a603f7048b8635be1"
}
import { BytesN } from "../src/handlers";
export declare type SignatureDetail = {
export type SignatureDetail = {
solidity?: string;

@@ -8,3 +8,3 @@ javascript?: string;

};
export declare type FunctionDescriptor = {
export type FunctionDescriptor = {
functionName: string;

@@ -17,3 +17,3 @@ params: {

export declare const combinatorTypes: readonly ["address", "bool", "string memory", "uint256"];
declare type SolidityType = typeof primitiveTypes[number] | BytesN | "uint" | "int";
type SolidityType = typeof primitiveTypes[number] | BytesN | "uint" | "int";
declare const primitiveTypes: readonly ["address", "bool", "string memory", "uint256", "bytes memory", "int256"];

@@ -20,0 +20,0 @@ /**

/// <reference types="node" />
declare type Digits = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
declare type Numbers = Digits | 10 | 20 | `${1}${Digits}` | `2${Digits}` | 30 | 31 | 32;
export declare type BytesN = `bytes${Numbers}`;
export declare type FixedBytesN = `fixedBytes(${Numbers})`;
export declare type Handler = keyof typeof Handlers | FixedBytesN;
type Digits = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
type Numbers = Digits | 10 | 20 | `${1}${Digits}` | `2${Digits}` | 30 | 31 | 32;
export type BytesN = `bytes${Numbers}`;
export type FixedBytesN = `fixedBytes(${Numbers})`;
export type Handler = keyof typeof Handlers | FixedBytesN;
/**

@@ -8,0 +8,0 @@ * EVM word size for abi encoded data

@@ -21,4 +21,4 @@ /// <reference types="node" />

}) => ConsoleLogs | null;
export declare type ConsoleLog = string | bigint | boolean;
export declare type ConsoleLogs = ConsoleLog[];
export type ConsoleLog = string | bigint | boolean;
export type ConsoleLogs = ConsoleLog[];
//# sourceMappingURL=maybe-get-logs.d.ts.map

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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