mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 10:01:01 +00:00
+2
-1
@@ -11,4 +11,5 @@
|
|||||||
node_modules
|
node_modules
|
||||||
artifacts
|
artifacts
|
||||||
tmp
|
tmp
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
/*.html
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean
|
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean docs docs-build
|
||||||
|
|
||||||
install: install-bin install-npm
|
install: install-bin install-npm
|
||||||
|
|
||||||
@@ -48,6 +48,12 @@ bench: install-bin
|
|||||||
clippy:
|
clippy:
|
||||||
cargo clippy --all-features --workspace --tests --benches
|
cargo clippy --all-features --workspace --tests --benches
|
||||||
|
|
||||||
|
docs: docs-build
|
||||||
|
mdbook serve --open docs/
|
||||||
|
|
||||||
|
docs-build:
|
||||||
|
mdbook test docs/ && mdbook build docs/
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cargo clean ; \
|
cargo clean ; \
|
||||||
rm -rf node_modules ; \
|
rm -rf node_modules ; \
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
book
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
[book]
|
||||||
|
authors = ["Cyrill Leutwiler <cyrill@parity.io>"]
|
||||||
|
language = "en"
|
||||||
|
multilingual = false
|
||||||
|
src = "src"
|
||||||
|
title = "revive documentation"
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# revive documentation
|
||||||
|
|
||||||
|
Welcome to the revive Solidty compiler documentation!
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
# Summary
|
||||||
|
|
||||||
|
[Introduction](README.md)
|
||||||
|
|
||||||
|
- [User guide](./user-guide.md)
|
||||||
|
- [Installation](./installation.md)
|
||||||
|
- [CLI guide](./cli.md)
|
||||||
|
- [Hardhat integration](./hardhat.md)
|
||||||
|
- [Architecture](./architecture.md)
|
||||||
|
- [Overview](./overview.md)
|
||||||
|
- [Runtime](./runtime.md)
|
||||||
|
- [Differences from EVM](./differences-evm.md)
|
||||||
|
- [Development](./development.md)
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Architecture
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# CLI guide
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Development
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Differences from EVM
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Differences from EVM
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Hardhat integration
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Installation
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# Overview
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# Runtime
|
||||||
|
|
||||||
|
revive compiled contract target the new contracts pallet runtime environment API.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# User guide
|
||||||
Reference in New Issue
Block a user