@cryptoeconomicslab/contract
Advanced tools
Comparing version 0.4.0 to 0.4.1-alpha.0
@@ -9,6 +9,6 @@ import { Bytes, BigNumber, List } from '@cryptoeconomicslab/primitives'; | ||
decideClaimToTrue(gameId: Bytes): Promise<void>; | ||
decideClaimToFalse(gameId: Bytes, challengingGameId: Bytes): Promise<void>; | ||
removeChallenge(gameId: Bytes, challengingGameId: Bytes): Promise<void>; | ||
decideClaimWithWitness(gameId: Bytes, witnesses: Bytes[]): Promise<void>; | ||
challenge(gameId: Bytes, challengeInputs: List<Bytes>, challengingGameId: Bytes): Promise<void>; | ||
decideClaimToFalse(property: Property, challengingProperty: Property): Promise<void>; | ||
removeChallenge(property: Property, challengingProperty: Property): Promise<void>; | ||
decideClaimWithWitness(property: Property, witnesses: Bytes[]): Promise<void>; | ||
challenge(property: Property, challengeInputs: List<Bytes>, challengingProperty: Property): Promise<void>; | ||
subscribeAtomicPropositionDecided(handler: (gameId: Bytes, decision: boolean) => void): void; | ||
@@ -15,0 +15,0 @@ subscribeNewPropertyClaimed(handler: (gameId: Bytes, property: Property, createdBlock: BigNumber) => void): void; |
import { Integer } from '@cryptoeconomicslab/primitives'; | ||
import { IERC20Contract } from './IERC20Contract'; | ||
export interface IERC20DetailedContract extends IERC20Contract { | ||
name(): Promise<string>; | ||
symbol(): Promise<string>; | ||
decimals(): Promise<Integer>; | ||
} |
{ | ||
"name": "@cryptoeconomicslab/contract", | ||
"version": "0.4.0", | ||
"version": "0.4.1-alpha.0", | ||
"description": "contract", | ||
@@ -33,6 +33,6 @@ "author": { | ||
"@cryptoeconomicslab/coder": "^0.4.0", | ||
"@cryptoeconomicslab/db": "^0.4.0", | ||
"@cryptoeconomicslab/ovm": "^0.4.0" | ||
"@cryptoeconomicslab/db": "^0.4.1-alpha.0", | ||
"@cryptoeconomicslab/ovm": "^0.4.1-alpha.0" | ||
}, | ||
"gitHead": "865f28448ab08beb7151c14a44c2724dca0e5db4", | ||
"gitHead": "2bf1cfc3867de26d9f177273949558e1ba652aca", | ||
"devDependencies": { | ||
@@ -39,0 +39,0 @@ "@cryptoeconomicslab/level-kvs": "^0.0.4", |
24879
187