@0xcert/scaffold
Advanced tools
Comparing version 2.0.0-alpha3 to 2.0.0-alpha4
@@ -5,4 +5,4 @@ { | ||
{ | ||
"version": "2.0.0-alpha3", | ||
"tag": "@0xcert/scaffold_v2.0.0-alpha3", | ||
"version": "2.0.0-alpha4", | ||
"tag": "@0xcert/scaffold_v2.0.0-alpha4", | ||
"date": "Wed, 19 Jun 2019 10:31:05 GMT", | ||
@@ -9,0 +9,0 @@ "comments": {} |
@@ -5,3 +5,3 @@ # Change Log - @0xcert/scaffold | ||
## 2.0.0-alpha3 | ||
## 2.0.0-alpha4 | ||
Wed, 19 Jun 2019 10:31:05 GMT | ||
@@ -8,0 +8,0 @@ |
@@ -52,3 +52,4 @@ import { GatewayBase } from './gateway'; | ||
symbol: string; | ||
uriBase: string; | ||
uriPrefix: string; | ||
uriPostfix: string; | ||
schemaId: string; | ||
@@ -65,3 +66,4 @@ capabilities?: AssetLedgerCapability[]; | ||
symbol: string; | ||
uriBase: string; | ||
uriPrefix: string; | ||
uriPostfix: string; | ||
schemaId: string; | ||
@@ -85,3 +87,4 @@ supply: string; | ||
export interface AssetLedgerUpdateRecipe { | ||
uriBase: string; | ||
uriPrefix: string; | ||
uriPostfix: string; | ||
} |
@@ -77,3 +77,4 @@ import { AssetLedgerCapability } from './asset-ledger'; | ||
symbol: string; | ||
uriBase: string; | ||
uriPrefix: string; | ||
uriPostfix: string; | ||
schemaId: string; | ||
@@ -80,0 +81,0 @@ capabilities?: AssetLedgerCapability[]; |
{ | ||
"files": {}, | ||
"arguments": "npm run clean && npx tsc " | ||
"files": { | ||
"packages/0xcert-scaffold/CHANGELOG.json": "dc0bbdb7323677effd16b01f3b065f4271237709", | ||
"packages/0xcert-scaffold/CHANGELOG.md": "54bd8b9da09795828a3a041928bfc209fd473226", | ||
"packages/0xcert-scaffold/README.md": "7bfbd2643bbb937d12c739e2a406f80a4a2651b6", | ||
"packages/0xcert-scaffold/nodemon.json": "82b893373db9861f1df4b55d8ea68a5d37b118de", | ||
"packages/0xcert-scaffold/package.json": "ba093d67c1293193f319cacdd05828c010dbf59e", | ||
"packages/0xcert-scaffold/src/assets/metadata.ts": "f42e8c108ed586ffc13f1f0a6f3170e86fb69977", | ||
"packages/0xcert-scaffold/src/core/asset-ledger.ts": "8d8126948902a34e429db4950ead028dc3950961", | ||
"packages/0xcert-scaffold/src/core/gateway.ts": "8a058e3431eaa4e967c3948609106a45cbdc1f7f", | ||
"packages/0xcert-scaffold/src/core/mutation.ts": "a10f292c0bb32ac05b729d098b254fec93537f42", | ||
"packages/0xcert-scaffold/src/core/provider.ts": "94b32d34c321b6e8502ef5e052d75b978bb9f7e7", | ||
"packages/0xcert-scaffold/src/core/value-ledger.ts": "0f424113dfe6a16a22b09f230d2b6febb466bf12", | ||
"packages/0xcert-scaffold/src/index.ts": "bca32984b67edd5c57ee258b4a14ad04d6327b20", | ||
"packages/0xcert-scaffold/src/tests/index.test.ts": "704984a6d673fabaf81d796043ee1eed922a2bb0", | ||
"packages/0xcert-scaffold/tsconfig.json": "aaa461c172cf0c93d58ffeef8e3ead76fe299b2e", | ||
"packages/0xcert-scaffold/tslint.json": "c57b3f0cdb7aa74ab2ab02888380f613589cbe66", | ||
"common/config/rush/npm-shrinkwrap.json": "2f2d9986f7c1d779a61e645ffd67426c179b336e" | ||
}, | ||
"arguments": "npm run lint && npx nyc npx hayspec test " | ||
} |
{ | ||
"name": "@0xcert/scaffold", | ||
"version": "2.0.0-alpha3", | ||
"version": "2.0.0-alpha4", | ||
"description": "Overarching module with types, enums, and interfaces for easier development of interoperable modules.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -138,3 +138,3 @@ import { GatewayBase } from './gateway'; | ||
/** | ||
* Gets information about the asset ledger (name, symbol, uriBase, schemaId, supply). | ||
* Gets information about the asset ledger (name, symbol, uriPrefix, schemaId, supply). | ||
*/ | ||
@@ -212,9 +212,16 @@ getInfo(): Promise<AssetLedgerInfo>; | ||
/** | ||
* Uri base for metadata URI-s. At the end of the base the assetId is automatically appended foo each asset. | ||
* Uri prefix for metadata URI-s. At the end of the prefix the assetId is automatically appended for each asset. | ||
* Example: https://example.com/id/ | ||
* Asset 1 URI will become: https://example.com/id/1 | ||
* Asset 1 URI will become: https://example.com/id/1 + postfix | ||
*/ | ||
uriBase: string; | ||
uriPrefix: string; | ||
/** | ||
* URI postfix for metadata URIs. After uriPrefix and assetId, postfix is automatically appended for each asset.. | ||
* Example: .json | ||
* Asset 1 URI will become: uriPrefix + 1.json | ||
*/ | ||
uriPostfix: string; | ||
/** | ||
* Hashed representation of JSON schema defining this object. | ||
@@ -267,9 +274,16 @@ */ | ||
/** | ||
* Uri base for metadata URI-s. At the end of the base the assetId is automatically appended foo each asset. | ||
* Uri prefix for metadata URI-s. At the end of the prefix the assetId is automatically appended for each asset. | ||
* Example: https://example.com/id/ | ||
* Asset 1 URI will become: https://example.com/id/1 | ||
* Asset 1 URI will become: https://example.com/id/1 + postfix | ||
*/ | ||
uriBase: string; | ||
uriPrefix: string; | ||
/** | ||
* URI postfix for metadata URIs. After uriPrefix and assetId, postfix is automatically appended for each asset.. | ||
* Example: .json | ||
* Asset 1 URI will become: uriPrefix + 1.json | ||
*/ | ||
uriPostfix: string; | ||
/** | ||
* Hashed representation of JSON schema defining this object. | ||
@@ -349,7 +363,14 @@ */ | ||
/** | ||
* Uri base for metadata URI-s. At the end of the base the assetId is automatically appended foo each asset. | ||
* Uri prefix for metadata URI-s. At the end of the prefix the assetId is automatically appended for each asset. | ||
* Example: https://example.com/id/ | ||
* Asset 1 URI will become: https://example.com/id/1 | ||
* Asset 1 URI will become: https://example.com/id/1 + postfix | ||
*/ | ||
uriBase: string; | ||
uriPrefix: string; | ||
/** | ||
* URI postfix for metadata URIs. After uriPrefix and assetId, postfix is automatically appended for each asset.. | ||
* Example: .json | ||
* Asset 1 URI will become: uriPrefix + 1.json | ||
*/ | ||
uriPostfix: string; | ||
} |
@@ -312,9 +312,16 @@ import { AssetLedgerCapability } from './asset-ledger'; | ||
/** | ||
* Uri base for metadata URI-s. At the end of the base the assetId is automatically appended foo each asset. | ||
* Uri base for metadata URI-s. At the end of the base the assetId is automatically appended for each asset. | ||
* Example: https://example.com/id/ | ||
* Asset 1 URI will become: https://example.com/id/1 | ||
* Asset 1 URI will become: https://example.com/id/1 + postfix | ||
*/ | ||
uriBase: string; | ||
uriPrefix: string; | ||
/** | ||
* URI postfix for metadata URIs. After uriPrefix and assetId, postfix is automatically appended for each asset.. | ||
* Example: .json | ||
* Asset 1 URI will become: uriPrefix + 1.json | ||
*/ | ||
uriPostfix: string; | ||
/** | ||
* Hashed representation of JSON schema defining this object. | ||
@@ -321,0 +328,0 @@ */ |
Sorry, the diff of this file is not supported yet
67458
44
1665