@0xcert/scaffold
Advanced tools
Comparing version 0.0.0-alpha5 to 0.0.0-alpha6
@@ -5,4 +5,4 @@ { | ||
{ | ||
"version": "0.0.0-alpha5", | ||
"tag": "@0xcert/scaffold_v0.0.0-alpha5", | ||
"version": "0.0.0-alpha6", | ||
"tag": "@0xcert/scaffold_v0.0.0-alpha6", | ||
"date": "Thu, 22 Nov 2018 00:51:03 GMT", | ||
@@ -9,0 +9,0 @@ "comments": {} |
@@ -5,3 +5,3 @@ # Change Log - @0xcert/scaffold | ||
## 0.0.0-alpha5 | ||
## 0.0.0-alpha6 | ||
Thu, 22 Nov 2018 00:51:03 GMT | ||
@@ -8,0 +8,0 @@ |
@@ -26,3 +26,4 @@ import { MutationBase } from "./misc"; | ||
isApprovedAccount(accountId: string, assetId: string): Promise<boolean>; | ||
isEnabled(): Promise<boolean>; | ||
isTransferable(): Promise<boolean>; | ||
isApprovedOperator(accountId: string, operatorId: string): Promise<boolean>; | ||
approveAccount(accountId: string, tokenId: string): Promise<MutationBase>; | ||
@@ -35,5 +36,8 @@ assignAbilities(accountId: string, abilities: AssetLedgerAbility[]): Promise<MutationBase>; | ||
transferAsset(recipe: AssetLedgerTransferRecipe): Promise<MutationBase>; | ||
setEnabled(enabled: boolean): Promise<MutationBase>; | ||
enableTransfer(): Promise<MutationBase>; | ||
disableTransfer(): Promise<MutationBase>; | ||
updateAsset(assetId: string, recipe: AssetLedgerObjectUpdateRecipe): Promise<MutationBase>; | ||
update(recipe: AssetLedgerUpdateRecipe): Promise<MutationBase>; | ||
approveOperator(accountId: string): Promise<MutationBase>; | ||
disapproveOperator(accountId: string): Promise<MutationBase>; | ||
} | ||
@@ -40,0 +44,0 @@ export interface AssetLedgerDeployRecipe { |
@@ -6,3 +6,4 @@ import { MutationBase } from "./misc"; | ||
getInfo(): Promise<ValueLedgerInfo>; | ||
approveAccount(accountId: string, value: string): Promise<MutationBase>; | ||
approveValue(accountId: string, value: string): Promise<MutationBase>; | ||
disapproveValue(accountId: string): Promise<MutationBase>; | ||
} | ||
@@ -9,0 +10,0 @@ export interface ValueLedgerDeployRecipe { |
@@ -8,3 +8,3 @@ { | ||
"packages/0xcert-scaffold/src/assets/metadata.ts": "1bd04e0ee8b5ab49edbd1c2ba23398b321ed0800", | ||
"packages/0xcert-scaffold/src/core/asset-ledger.ts": "8bdde0011302e8a2b9cb537e390a77292744f28b", | ||
"packages/0xcert-scaffold/src/core/asset-ledger.ts": "5e1931007d8919dee36d2e361f5d26de212308f5", | ||
"packages/0xcert-scaffold/src/core/misc.ts": "72309ea533f5280ee023c48ebd8770d3c32cd5f6", | ||
@@ -14,9 +14,9 @@ "packages/0xcert-scaffold/src/core/order-gateway.ts": "58ae19f48d35ea9bd4a6d7ca53b1a6c64c6b0edb", | ||
"packages/0xcert-scaffold/src/core/provider.ts": "be596952ce293259d81442f245f66dd5dacbb7a3", | ||
"packages/0xcert-scaffold/src/core/value-ledger.ts": "19e99f2ee2de345bd68e6ce47b2e50372fcfff16", | ||
"packages/0xcert-scaffold/src/core/value-ledger.ts": "e5f55cf15f50406b5111f8c5d2bd3923890753aa", | ||
"packages/0xcert-scaffold/src/index.ts": "9689f39dbb95ce6fbb159ee26c26ac6a9f8cfcdd", | ||
"packages/0xcert-scaffold/src/tests/.keep": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", | ||
"packages/0xcert-scaffold/tsconfig.json": "99f0fa2e7cf44aa40828236230bc6f15d8648bc6", | ||
"common/config/rush/npm-shrinkwrap.json": "a99d60ec92a85b5d9f934b82b318c4360f4c7083" | ||
"common/config/rush/npm-shrinkwrap.json": "4bd0ff28a23360cdc0ee7546713b1819a52577cd" | ||
}, | ||
"arguments": "npm run clean && npx tsc " | ||
"arguments": "npx hayspec test " | ||
} |
{ | ||
"name": "@0xcert/scaffold", | ||
"version": "0.0.0-alpha5", | ||
"version": "0.0.0-alpha6", | ||
"description": "0xcert protocol scaffold.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -38,3 +38,4 @@ import { MutationBase } from "./misc"; | ||
isApprovedAccount(accountId: string, assetId: string): Promise<boolean>; | ||
isEnabled(): Promise<boolean>; | ||
isTransferable(): Promise<boolean>; | ||
isApprovedOperator(accountId: string, operatorId: string): Promise<boolean>; | ||
approveAccount(accountId: string, tokenId: string): Promise<MutationBase>; | ||
@@ -47,5 +48,8 @@ assignAbilities(accountId: string, abilities: AssetLedgerAbility[]): Promise<MutationBase>; | ||
transferAsset(recipe: AssetLedgerTransferRecipe): Promise<MutationBase>; | ||
setEnabled(enabled: boolean): Promise<MutationBase>; | ||
enableTransfer(): Promise<MutationBase>; | ||
disableTransfer(): Promise<MutationBase>; | ||
updateAsset(assetId: string, recipe: AssetLedgerObjectUpdateRecipe): Promise<MutationBase>; | ||
update(recipe: AssetLedgerUpdateRecipe): Promise<MutationBase>; | ||
approveOperator(accountId: string): Promise<MutationBase>; | ||
disapproveOperator(accountId: string): Promise<MutationBase>; | ||
} | ||
@@ -52,0 +56,0 @@ |
@@ -10,3 +10,4 @@ import { MutationBase } from "./misc"; | ||
getInfo(): Promise<ValueLedgerInfo>; | ||
approveAccount(accountId: string, value: string): Promise<MutationBase>; | ||
approveValue(accountId: string, value: string): Promise<MutationBase>; | ||
disapproveValue(accountId: string): Promise<MutationBase>; | ||
} | ||
@@ -13,0 +14,0 @@ |
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
23183
624