Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite chapters on testing #90

Merged
merged 6 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/pages/getting-started/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"how-to-build": "How to build?",
"smart-contract-intro": "Smart Contract",
"operations": "Operations over Contract",
"unit-tests": "Unit Tests",
"integration-tests": "Integration Tests",
"testing": "Testing",
"endpoints": "Creating Endpoints",
"browser-integration": "Browser Integration"
}
4 changes: 2 additions & 2 deletions src/pages/getting-started/smart-contract-intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Let's now start by writing a smart contract that we will use to convey framework

## Contract Description

Setting here is that we have a sport match happening and a group of friends want to bet on the number of goals scored by their favorite team in it.
A setting here is that we have a sport match happening and a group of friends want to bet on the number of goals scored by their favorite team in it.

Winner is the one whose guess is closest (and in case of tie - the one who takes it fastest!).

Expand Down Expand Up @@ -49,7 +49,7 @@ data BetRefParams = BetRefParams
}
PlutusTx.makeLift ''BetRefParams
```

### Reference Input Datum

The Oracle tells us the number of goals scored by the concerned team:
Expand Down
Loading