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

@0xproject/typescript-typings

Package Overview
Dependencies
Maintainers
6
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0xproject/typescript-typings - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

types/openapi-schema-validation/index.d.ts

9

CHANGELOG.json
[
{
"timestamp": 1534210131,
"version": "1.0.4",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"timestamp": 1532614997,

@@ -4,0 +13,0 @@ "version": "1.0.3",

8

CHANGELOG.md

@@ -8,2 +8,6 @@ <!--

## v1.0.4 - _August 13, 2018_
* Dependencies updated
## v1.0.3 - _July 26, 2018_

@@ -21,3 +25,3 @@

## v1.0.0 - _July 20, 2018_
## v1.0.0 - _July 19, 2018_

@@ -47,3 +51,3 @@ * Add types for `eth-lightwallet` (#775)

## v0.3.1 - _May 5, 2018_
## v0.3.1 - _May 4, 2018_

@@ -50,0 +54,0 @@ * Dependencies updated

{
"name": "@0xproject/typescript-typings",
"version": "1.0.3",
"version": "1.0.4",
"engines": {

@@ -31,7 +31,7 @@ "node": ">=6.12"

"bignumber.js": "~4.1.0",
"ethereum-types": "^1.0.3",
"ethereum-types": "^1.0.4",
"popper.js": "1.14.3"
},
"devDependencies": {
"@0xproject/monorepo-scripts": "^1.0.4",
"@0xproject/monorepo-scripts": "^1.0.5",
"copyfiles": "^1.2.0",

@@ -43,3 +43,3 @@ "shx": "^0.2.2"

},
"gitHead": "973bcb04833d895c3e69f9c256a7ede038c1f8a0"
"gitHead": "fadd292ecf367e42154856509d0ea0c20b23f2f1"
}

@@ -37,2 +37,20 @@ declare module 'ethers' {

}
export type ParamName = null | string | NestedParamName;
export interface NestedParamName {
name: string | null;
names: ParamName[];
}
export const utils: {
AbiCoder: {
defaultCoder: AbiCoder;
};
};
export interface AbiCoder {
encode: (names: ParamName[] | string[], types: string[] | any[], args: any[] | undefined) => string;
decode: (names: ParamName[] | string[], types: string[] | string, data: string | undefined) => any;
}
}
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