Skip to content

Commit

Permalink
add template voting contract
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfschoen committed Oct 6, 2024
1 parent dacfd69 commit 9a76a0e
Show file tree
Hide file tree
Showing 21 changed files with 3,403 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/secret-contracts/voting-contract/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[alias]
unit-test = "test --lib --features backtraces"
schema = "run --example schema"
11 changes: 11 additions & 0 deletions packages/secret-contracts/voting-contract/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.rs]
indent_size = 4
32 changes: 32 additions & 0 deletions packages/secret-contracts/voting-contract/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/node_modules*
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
.env
!.env.example


npm-debug.log*
yarn-debug.log*
yarn-error.log*

contract.wasm
contract.wasm.gz

/target
Loading

0 comments on commit 9a76a0e

Please sign in to comment.