Socket
Socket
Sign inDemoInstall

@arianee/arianee-abi

Package Overview
Dependencies
53
Maintainers
8
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.21.0 to 0.22.0

dist/ethers6/v1_1/Aria.d.ts

12

package.json
{
"name": "@arianee/arianee-abi",
"version": "0.21.0",
"version": "0.22.0",
"description": "abi definition of Arianee and typescript declaration files",

@@ -12,3 +12,4 @@ "publishConfig": {

},
"main": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {

@@ -21,3 +22,4 @@ "generate": "./node_modules/.bin/typechain --target=web3-v1.2.2/dist './abi/json/**/*.json' --outDir=./types",

"minify": "node ./minify.js",
"build": "npm run generate && npm run minify"
"build": "npm run generate && npm run minify",
"prepublish": "tsc"
},

@@ -36,4 +38,6 @@ "author": "",

"bn": "1.0.5",
"lodash": "4.17.21"
"lodash": "4.17.21",
"ts-generator": "^0.1.1",
"typescript": "^5.1.3"
}
}
/* Generated by ts-generator ver. 0.0.8 */
/* tslint:disable */
import { EventLog } from "web3-core";
import { TransactionObject } from "./types";
import BN from "bn.js";
import { EventEmitter } from "events";
import { EventLog } from 'web3-core';
import BN from 'bn.js';
import { EventEmitter } from 'events';
// @ts-ignore
import PromiEvent from "web3/promiEvent";
import PromiEvent from 'web3/promiEvent';

@@ -35,7 +34,4 @@ interface EstimateGasOptions {

export interface ContractEventEmitter<T> extends EventEmitter {
on(
event: "data" | "changed",
listener: (event: ContractEventLog<T>) => void
): this;
on(event: "error", listener: (error: Error) => void): this;
on(event: 'data' | 'changed', listener: (event: ContractEventLog<T>) => void): this;
on(event: 'error', listener: (error: Error) => void): this;
}

@@ -42,0 +38,0 @@ export type ContractEvent<T> = (

@@ -88,3 +88,3 @@ import {

function generateEvent(event: EventDeclaration) {
return `${event.name}: ContractEvent<${generateOutputTypes(event.inputs)}>`;
return `${event.name}: ContractEvent<${generateOutputTypes(event.inputs as any)}>`;
}

@@ -91,0 +91,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc