Skip to content

Commit

Permalink
Merge pull request #1 from cybercongress/contract
Browse files Browse the repository at this point in the history
demo ton connect wasm
  • Loading branch information
cyborgshead authored May 29, 2024
2 parents a87c3d8 + 476deea commit 42c4509
Show file tree
Hide file tree
Showing 22 changed files with 4,239 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contract/.cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[alias]
wasm = "build --release --lib --target wasm32-unknown-unknown"
unit-test = "test --lib"
schema = "run --bin schema"
11 changes: 11 additions & 0 deletions 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
17 changes: 17 additions & 0 deletions contract/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Build results
/target
/schema
/artifacts

# Cargo+Git helper file (https://github.com/rust-lang/cargo/blob/0.44.1/src/cargo/sources/git/utils.rs#L320-L327)
.cargo-ok

# Text file backups
**/*.rs.bk

# macOS
.DS_Store

# IDEs
*.iml
.idea
Loading

0 comments on commit 42c4509

Please sign in to comment.