ethereum-types
Advanced tools
Comparing version 3.0.0 to 3.1.0
[ | ||
{ | ||
"version": "3.1.0", | ||
"changes": [ | ||
{ | ||
"note": "Add `linkReferences` to `EvmBytecodeOutput` and `EvmBytecodeOutputLinkReferences` type", | ||
"pr": 2462 | ||
} | ||
], | ||
"timestamp": 1581204851 | ||
}, | ||
{ | ||
"version": "3.0.0", | ||
@@ -4,0 +14,0 @@ "changes": [ |
@@ -8,2 +8,6 @@ <!-- | ||
## v3.1.0 - _February 8, 2020_ | ||
* Add `linkReferences` to `EvmBytecodeOutput` and `EvmBytecodeOutputLinkReferences` type (#2462) | ||
## v3.0.0 - _December 2, 2019_ | ||
@@ -10,0 +14,0 @@ |
@@ -486,5 +486,14 @@ import { BigNumber } from 'bignumber.js'; | ||
export interface EvmBytecodeOutput { | ||
linkReferences: EvmBytecodeOutputLinkReferences; | ||
object: string; | ||
sourceMap: string; | ||
} | ||
export interface EvmBytecodeOutputLinkReferences { | ||
[sourceFile: string]: { | ||
[libraryName: string]: Array<{ | ||
start: number; | ||
length: number; | ||
}>; | ||
}; | ||
} | ||
export interface DevdocOutput { | ||
@@ -491,0 +500,0 @@ title?: string; |
{ | ||
"name": "ethereum-types", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"engines": { | ||
@@ -50,3 +50,3 @@ "node": ">=6.12" | ||
}, | ||
"gitHead": "761d0a0f1849c6e247f7219b9cee4f7a18473409" | ||
"gitHead": "5754c11e34b6c833898184360398fb6287d54138" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54906
1114