Skip to content

Commit

Permalink
Implement contract and wrapper for Sending Messages topic
Browse files Browse the repository at this point in the history
  • Loading branch information
Swafox committed Apr 14, 2024
1 parent f435304 commit 11ef40e
Show file tree
Hide file tree
Showing 14 changed files with 6,620 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- BlankProject
- SimpleCounter
- Mathematics
- SendingMessages

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions SendingMessages/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
7 changes: 7 additions & 0 deletions SendingMessages/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": true,
"semi": true
}
26 changes: 26 additions & 0 deletions SendingMessages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SendingMessages

## Project structure

- `contracts` - source code of all the smart contracts of the project and their dependencies.
- `wrappers` - wrapper classes (implementing `Contract` from ton-core) for the contracts, including any [de]serialization primitives and compilation functions.
- `tests` - tests for the contracts.
- `scripts` - scripts used by the project, mainly the deployment scripts.

## How to use

### Build

`npx blueprint build` or `yarn blueprint build`

### Test

`npx blueprint test` or `yarn blueprint test`

### Deploy or run another script

`npx blueprint run` or `yarn blueprint run`

### Add a new contract

`npx blueprint create ContractName` or `yarn blueprint create ContractName`
Loading

0 comments on commit 11ef40e

Please sign in to comment.