Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pgebal committed Nov 13, 2019
1 parent baa9f58 commit ebffeb7
Show file tree
Hide file tree
Showing 72 changed files with 89 additions and 109 deletions.
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Address.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/AddressPayable.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,3 @@ returns(address payable)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Bits.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,3 @@ True, if the bit is '0'; otherwise, False
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
17 changes: 0 additions & 17 deletions plasma_framework/docs/contracts/BlockController.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ event ChildChainActivated(address authority);

- [(uint256 _interval, uint256 _minExitPeriod, uint256 _initialImmuneVaults, address _authority)](#)
- [activateChildChain()](#activatechildchain)
- [setAuthority(address newAuthority)](#setauthority)
- [submitBlock(bytes32 _blockRoot)](#submitblock)
- [submitDepositBlock(bytes32 _blockRoot)](#submitdepositblock)
- [nextDepositBlock()](#nextdepositblock)
Expand Down Expand Up @@ -66,21 +65,6 @@ function activateChildChain() external nonpayable onlyFrom
| Name | Type | Description |
| ------------- |------------- | -----|

### setAuthority

Allows the operator to set a new authority address, enabling implementation of mechanical
re-org protection mechanism described here: https://github.com/omisego/plasma-contracts/issues/118

```js
function setAuthority(address newAuthority) external nonpayable onlyFrom
```

**Arguments**

| Name | Type | Description |
| ------------- |------------- | -----|
| newAuthority | address | Address of new authority, which cannot be blank |

### submitBlock

Allows the authority to submit the Merkle root of a Plasma block
Expand Down Expand Up @@ -200,4 +184,3 @@ returns(uint256)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/BlockModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,3 @@ struct Block {
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/BondSize.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,3 @@ function validateBondSize(struct BondSize.Params self, uint128 newBondSize) priv
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ECDSA.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,3 @@ returns(bytes32)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
11 changes: 4 additions & 7 deletions plasma_framework/docs/contracts/Erc20DepositVerifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,27 @@ Implementation of Erc20 deposit verifier using payment transaction as the deposi
**Constants & Variables**

```js
//public members
uint256 public depositTxType;
uint256 public supportedOutputType;

//private members
uint8 private constant DEPOSIT_TX_TYPE;

```

## Functions

- [(uint256 outputType)](#)
- [(uint256 txType, uint256 outputType)](#)
- [verify(bytes depositTx, address sender, address vault)](#verify)

###

```js
function (uint256 outputType) public nonpayable
function (uint256 txType, uint256 outputType) public nonpayable
```

**Arguments**

| Name | Type | Description |
| ------------- |------------- | -----|
| txType | uint256 | |
| outputType | uint256 | |

### verify
Expand Down Expand Up @@ -135,4 +133,3 @@ Verified (owner, token, amount) of the deposit ERC20 token data
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Erc20Vault.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,3 @@ function withdraw(address payable receiver, address token, uint256 amount) exter
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
11 changes: 4 additions & 7 deletions plasma_framework/docs/contracts/EthDepositVerifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,27 @@ Implementation of ETH deposit verifier using payment transaction as the deposit
**Constants & Variables**

```js
//public members
uint256 public depositTxType;
uint256 public supportedOutputType;

//internal members
uint8 internal constant DEPOSIT_TX_TYPE;

```

## Functions

- [(uint256 outputType)](#)
- [(uint256 txType, uint256 outputType)](#)
- [verify(bytes depositTx, uint256 amount, address sender)](#verify)

###

```js
function (uint256 outputType) public nonpayable
function (uint256 txType, uint256 outputType) public nonpayable
```

**Arguments**

| Name | Type | Description |
| ------------- |------------- | -----|
| txType | uint256 | |
| outputType | uint256 | |

### verify
Expand Down Expand Up @@ -130,4 +128,3 @@ function verify(bytes depositTx, uint256 amount, address sender) external view
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/EthVault.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,3 @@ function withdraw(address payable receiver, uint256 amount) external nonpayable
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ExitGameController.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ExitGameRegistry.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,3 @@ returns(uint256)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ExitId.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,3 @@ returns(uint160)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ExitPriority.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,3 @@ returns(uint160)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ExitableTimestamp.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,3 @@ returns(uint64)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/FailFastReentrancyGuard.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,3 @@ modifier nonReentrant(PlasmaFramework framework) internal
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IERC20.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IErc20DepositVerifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,3 @@ Verified (owner, token, amount) of the deposit ERC20 token data
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IEthDepositVerifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,3 @@ function verify(bytes depositTx, uint256 amount, address sender) external view
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IExitProcessor.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,3 @@ function processExit(uint160 exitId, uint256 vaultId, address token) external no
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IOutputGuardHandler.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,3 @@ returns(address)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ISpendingCondition.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/ITxFinalizationVerifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/IsDeposit.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Math.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,3 @@ returns(uint256)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
16 changes: 12 additions & 4 deletions plasma_framework/docs/contracts/Merkle.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,25 @@ View Source: [contracts/src/utils/Merkle.sol](../../contracts/src/utils/Merkle.s

Library for working with Merkle trees

## Contract Members
**Constants & Variables**

```js
bytes1 private constant LEAF_SALT;
bytes1 private constant NODE_SALT;

```

## Functions

- [checkMembership(bytes32 leaf, uint256 index, bytes32 rootHash, bytes proof)](#checkmembership)
- [checkMembership(bytes leaf, uint256 index, bytes32 rootHash, bytes proof)](#checkmembership)

### checkMembership

Checks that a leaf hash is contained in a root hash

```js
function checkMembership(bytes32 leaf, uint256 index, bytes32 rootHash, bytes proof) internal pure
function checkMembership(bytes leaf, uint256 index, bytes32 rootHash, bytes proof) internal pure
returns(bool)
```

Expand All @@ -27,7 +36,7 @@ True, if the leaf hash is in the Merkle tree; otherwise, False

| Name | Type | Description |
| ------------- |------------- | -----|
| leaf | bytes32 | Leaf hash to verify |
| leaf | bytes | Leaf hash to verify |
| index | uint256 | Position of the leaf hash in the Merkle tree |
| rootHash | bytes32 | Root of the Merkle tree |
| proof | bytes | A Merkle proof demonstrating membership of the leaf hash |
Expand Down Expand Up @@ -106,4 +115,3 @@ True, if the leaf hash is in the Merkle tree; otherwise, False
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,3 @@ function upgrade(address new_address) public nonpayable restricted
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/OnlyFromAddress.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,3 @@ modifier onlyFrom(address caller) internal
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/OnlyWithValue.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,3 @@ modifier onlyWithValue(uint256 _value) internal
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,3 @@ function registerOutputGuardHandler(uint256 outputType, IOutputGuardHandler hand
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/OutputGuardModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,3 @@ struct Data {
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/OutputId.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,3 @@ returns(bytes32)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/Ownable.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,3 @@ function _transferOwnership(address newOwner) internal nonpayable
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,3 @@ function verifySpendingCondition(struct PaymentChallengeIFEInputSpent.ChallengeI
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,3 @@ returns(uint256)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,3 @@ function verifyChallengingTransactionSpendsOutput(struct PaymentChallengeIFEOutp
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,3 @@ function verifySpendingCondition(struct PaymentChallengeStandardExit.ChallengeSt
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/PaymentEip712Lib.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,3 @@ returns(bytes32)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/PaymentExitDataModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,3 @@ uint8 public constant MAX_OUTPUT_NUM;
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/PaymentExitGame.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,3 @@ returns(uint160)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,3 @@ function updatePiggybackBondSize(uint128 newBondSize) public nonpayable onlyFrom
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,3 @@ struct ChallengeOutputSpent {
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,3 @@ returns(address)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
1 change: 0 additions & 1 deletion plasma_framework/docs/contracts/PaymentOutputModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,3 @@ returns(struct PaymentOutputModel.Output)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,3 @@ returns(bool)
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,3 @@ function run(struct PaymentProcessStandardExit.Controller self, struct PaymentEx
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,3 @@ function processStandardExit(uint160 exitId, address token) internal nonpayable
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,3 @@ struct ChallengeStandardExitArgs {
* [Vault](Vault.md)
* [VaultRegistry](VaultRegistry.md)
* [WireTransaction](WireTransaction.md)
* [ZeroHashesProvider](ZeroHashesProvider.md)

0 comments on commit ebffeb7

Please sign in to comment.