@truffle/contract-schema
Advanced tools
Comparing version 3.1.0-ens-events.0 to 3.1.1-alphaTez.0
@@ -66,2 +66,5 @@ var pkgVersion = require("./package.json").version; | ||
}, | ||
code: { | ||
sources: ["code"] | ||
}, | ||
bytecode: { | ||
@@ -68,0 +71,0 @@ sources: ["bytecode", "binary", "unlinked_binary", "evm.bytecode.object"], |
{ | ||
"name": "@truffle/contract-schema", | ||
"version": "3.1.0-ens-events.0", | ||
"version": "3.1.1-alphaTez.0", | ||
"description": "JSON schema for contract artifacts", | ||
@@ -42,3 +42,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "0327ff65cb9f9cc5641fdad91e6ed0eea2df9f69" | ||
"gitHead": "417061491cba7e36296fd012181ea66958636124" | ||
} |
@@ -19,2 +19,3 @@ { | ||
"metadata": { "$ref": "#/definitions/Metadata" }, | ||
"code": { "$ref": "#/definitions/Code" }, | ||
"bytecode": { | ||
@@ -89,2 +90,6 @@ "$ref": "#/definitions/Bytecode", | ||
"Code": { | ||
"type": "string" | ||
}, | ||
"Bytecode": { | ||
@@ -91,0 +96,0 @@ "type": "string", |
@@ -70,2 +70,3 @@ /** | ||
export type Metadata = string; | ||
export type Code = string; | ||
export type Source = string; | ||
@@ -85,2 +86,3 @@ export type SourcePath = string; | ||
metadata?: Metadata; | ||
code?: Code; | ||
/** | ||
@@ -87,0 +89,0 @@ * Bytecode sent as contract-creation transaction data, with unresolved link references |
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
147909
3739