Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/atpar/ap-monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-es committed Dec 18, 2019
2 parents 7ff85a6 + 6fce7ac commit 23a1579
Show file tree
Hide file tree
Showing 58 changed files with 18,353 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ artifacts/
Database.json
Orderbook-Database.json
Channel-Database.json
packages/ap.js/docs

mnemonic.js

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Monorepo containing all packages related to the ACTUS Protocol.

## Packages

| Package | Version | Description |
|-----------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------|
|[`ap-contracts`](https://github.com/atpar/ap-monorepo/tree/master/packages/ap-contracts) | [![npm (scoped)](https://img.shields.io/npm/v/@atpar/ap-contracts)](https://www.npmjs.com/package/@atpar/ap-contracts "View this project on npm") | Contains the ACTUS Protocol smart contracts |
|[`ap.js`](https://github.com/atpar/ap-monorepo/tree/master/packages/ap.js) | [![npm (scoped)](https://img.shields.io/npm/v/@atpar/ap.js)](https://www.npmjs.com/package/@atpar/ap.js "View this project on npm") | Typescript library for interacting with the ACTUS Protocol smart contracts |
| Package | Version | Coverage | Description |
|-----------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------|
|[`ap-contracts`](https://github.com/atpar/ap-monorepo/tree/master/packages/ap-contracts) | [![npm (scoped)](https://img.shields.io/npm/v/@atpar/ap-contracts)](https://www.npmjs.com/package/@atpar/ap-contracts "View this project on npm") | [![Coverage Status](https://coveralls.io/repos/github/atpar/ap-monorepo/badge.svg?branch=MS1)](https://coveralls.io/github/atpar/ap-monorepo?branch=MS1) | Contains the ACTUS Protocol smart contracts |
|[`ap.js`](https://github.com/atpar/ap-monorepo/tree/master/packages/ap.js) | [![npm (scoped)](https://img.shields.io/npm/v/@atpar/ap.js)](https://www.npmjs.com/package/@atpar/ap.js "View this project on npm") | | Typescript library for interacting with the ACTUS Protocol smart contracts |
303 changes: 303 additions & 0 deletions packages/ap-contracts/docs/contracts/Core/AssetActor.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

335 changes: 335 additions & 0 deletions packages/ap-contracts/docs/contracts/Core/AssetRegistry/Economics.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

260 changes: 260 additions & 0 deletions packages/ap-contracts/docs/contracts/Core/AssetRegistry/Ownership.md

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions packages/ap-contracts/docs/contracts/Core/IAssetActor.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

223 changes: 223 additions & 0 deletions packages/ap-contracts/docs/contracts/Core/SharedTypes.md

Large diffs are not rendered by default.

253 changes: 253 additions & 0 deletions packages/ap-contracts/docs/contracts/Issuance/AssetIssuer.md

Large diffs are not rendered by default.

232 changes: 232 additions & 0 deletions packages/ap-contracts/docs/contracts/Issuance/Custodian.md

Large diffs are not rendered by default.

204 changes: 204 additions & 0 deletions packages/ap-contracts/docs/contracts/Issuance/IAssetIssuer.md

Large diffs are not rendered by default.

201 changes: 201 additions & 0 deletions packages/ap-contracts/docs/contracts/Issuance/ICustodian.md

Large diffs are not rendered by default.

261 changes: 261 additions & 0 deletions packages/ap-contracts/docs/contracts/Issuance/VerifyOrder.md

Large diffs are not rendered by default.

202 changes: 202 additions & 0 deletions packages/ap-contracts/docs/contracts/Migrations.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

181 changes: 181 additions & 0 deletions packages/ap-contracts/docs/contracts/external/Dependencies.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/ap-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"compile": "truffle compile",
"coverage": "truffle run coverage",
"generate-artifacts": "rm -rf ./artifacts && ./scripts/truffle-minimize.sh ./build/contracts ./artifacts",
"generate-docs": "./scripts/generate-docs.sh",
"generate-ts-bindings": "typechain --target web3-v1 --outDir ./ts-bindings './build/contracts/*.json'",
"lint": "solium -d contracts/",
"lint:fix": "solium -d contracts/ --fix",
Expand Down
1 change: 1 addition & 0 deletions packages/ap-contracts/scripts/generate-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
solidity-docgen -i ./ -o docs --contract-pages --exclude="test,node_modules,migrations,docs,scripts,ts-bindings,build,artifacts" --solc-settings "{remappings: ['openzeppelin-solidity/=node_modules/openzeppelin-solidity/','actus-solidity/=node_modules/actus-solidity/','funds-distribution-token/=node_modules/funds-distribution-token/','truffle/=node_modules/truffle/build/']}"
Loading

0 comments on commit 23a1579

Please sign in to comment.