Skip to content

Commit

Permalink
Merge pull request #1 from cblk/main
Browse files Browse the repository at this point in the history
A Substrate-based, EVM-compatible blockchain node for Delta
  • Loading branch information
cblk authored Aug 27, 2021
2 parents 332020d + 3ec1134 commit 32bc9e3
Show file tree
Hide file tree
Showing 128 changed files with 28,957 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
.local
.idea
rust-toolchain
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
root = true

[*.rs]
indent_style=tab
indent_size=tab
tab_width=4
end_of_line=lf
charset=utf-8
trim_trailing_whitespace=true
insert_final_newline=true

[*.toml]
indent_style=tab
indent_size=tab
tab_width=4

[*.ts]
indent_style=tab
indent_size=tab
tab_width=4
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
AliceNodeKey=
BobNodeKey=
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
**/target/
**/node_modules/
**/*.rs.bk
*.swp
.wasm-binaries
polkadot/runtime/wasm/target/
core/executor/wasm/target/
core/test-runtime/wasm/target/
pwasm-alloc/target/
pwasm-libc/target/
pwasm-alloc/Cargo.lock
pwasm-libc/Cargo.lock
node/runtime/wasm/target/
**/._*
**/.criterion/
.vscode
polkadot.*
.DS_Store
.idea/
.cargo-remote.toml

# Added by cargo
/target
.cargo

.local
*.json
.env
Loading

0 comments on commit 32bc9e3

Please sign in to comment.