This client spec of OVM. A whole document is here.
We have several primitive types for inner representation.
BigNumber = max uint256(L1 dependent)
struct Range {
start: BigNumber,
end: BigNumber
}
struct Property {
address: Address,
inputs: Bytes[]
}
struct StateUpdate {
blockNumber: Integer,
depositContractAddress: Address,
range: Range,
stateObject: Property
}
Property({
address: StateUpdate.address,
inputs: [blockNumber, depositContractAddress, range, stateObject]
})
Block: {
blockNumber: Integer
stateUpdatesMap: Map<Address, StateUpdate[]>
}
struct Transaction {
deprecatedBlockNumber: Integer,
depositContractAddress: Address,
range: Range,
stateObject: Property
}
Developed in lite client and aggregator.
Manage StateUpdates which have been verified by Merkle Tree.
Plasma Cash's lite client to send a transaction and recieve a transaction verifying coin history.
Plasma aggregator client collects transactions in BlockManager and constructs their Merkle tree. The aggregator submits Merkle Root to Commitment Contract.
getBlock(blockNumber: Integer): Promise<Block>
/send_tx
Developed in db
.
Core Databases are general purpose database such as KeyValueStore or RangeDb. RangeDb is a special form of KVS which can handle record using range(start: u64, end: u64) as a key.
put(key: Bytes, value: Bytes): Promise<void>
get(key: Bytes): Promise<Bytes | null>
del(key: Bytes): Promise<void>
iter(bound: Bytes)
: Creates iterator with bound key. Iterator seek greater than equal bound.bucket(name: Bytes)
: Returns bucket instance with bucket name. Bucket just appends a prefix to key but connecting one database.put(start: Integer, end: Integer, value: Bytes): Promise<void>
get(start: Integer, end: Integer): Promise<Bytes[]>
bucket(name: Bytes): Bucket
start
and end
must support 256bit integer.
The database for local information. local infomation is described in this article.
We call these database WitnessDatabase.
moved WitnessDatabase to here.
We use "hint-data" to query witness database.
The format is "type
struct SignedByRecord {
address,
message,
signature
}
A key is address + Hash(message).
https://github.com/cryptoeconomicslab/wakkanay/tree/master/src/ovm
OVM decider system check a property is true or false. This system include various deciders and each decider load witness from database to decide.
The list of deciders.
struct Decision {
outcome: bool,
challenges: Challenge[]
}
It stands for validChallenge of a property.
e.g.) Challenge of Not(P)
is Challenge
struct Challenge {
challengeInput: Bytes | null,
challengeProperty: Property
}
getWitnesses
function get witnesses from database by hint string.
bucket,type,param
type is KEY, RANGE, ITER or NUMBER.
bucket is db bucket where witnesses are stored.
THe format of param is different by type
. For KEY
, param is hex string of key of KVS db. For RANGE
, param is L1 specific encoded Range data(hex). For ITER
, the format is same as KEY
.
For NUMBER
, param is ${s}-${e}
: s and e are hex string of numbers.
{
amount: 10000,
decimal: 3,
unit: "gwei"
}
Create a wallet instance from private key.
Create a wallet instance from encrypted JSON data and a password.
Encrypted JSON should be stored at a user's device such as PC or smartphone.
The password is provided by the user every time the user opens the wallet.
The purpose of this password is for encrypting privatekey. So even if user lost their smartphone, nobody can’t peek(spy?) the password.
Return a wallet instance connecting to Metamask extension.
Contract API. we may use Web3 like library for implementing this.
These are minimal requirement. We need more contract wrapper
contract repo is here
Gets EventWatcher instance connecting to Commitment Contract.
subscribeCheckpointFinalized(
handler: (checkpointId: Bytes, checkpoint: [Range, Property]) => void
): void
subscribeExitFinalized(
handler: (exitId: Bytes) => void
): void
subscribePropertyClaimed(
handler: (claimedProperty: Property, createdBlock: Integer) => void
)
Polling ethereum events. Default polling interval is 10000 seconds, but we can set interval in constructor.
constructor(endpoint: URL, targetContract: Address, contractInterface: ContractInterface, options: EventWatcherOptions)
ContractInterface
is created by ethereum contract abi, and most web3 library has this class. It is used by pasing log bytes.
options has only polling interval as interval
.
Add handler for a contract event.
Unsubscribe an event and remove all handlers.
Start polling.
(event: Log) => void
We should think EventHandler argument shouldbe raw log byte data or parsed log data. If EventHandler pass raw log bytes, contractInterface isn't required in EventWatcher's constructor.
Also you can check contracts.