Skip to content

Commit 66c7724

Browse files
committedOct 22, 2024
Spelling fixes
1 parent 7bd9ba5 commit 66c7724

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
 

‎.cspell.json

+3
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@
207207
"docu",
208208
"fundme",
209209
"hardhat",
210+
"hodlvault",
210211
"infima",
211212
"jedex",
212213
"lichos",
@@ -221,11 +222,13 @@
221222
"setfiletype",
222223
"tada",
223224
"tapswap",
225+
"tokenaut",
224226
"txage",
225227
"txbytecode",
226228
"txhashoutputs",
227229
"txtime",
228230
"vite",
231+
"walletconnect",
229232
"withage",
230233
"withfeeperbyte",
231234
"withhardcodedfee",

‎website/docs/basics/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ The [CashScript Playground](https://playground.cashscript.org/) is a great way t
1515
Here are the 5 simple steps for creating your first smart contract transaction with the Playground:
1616
1. Compile a contract, for example the default `TransferWithTimeout` contract.
1717
2. Create a new contract in the 'New Contract' tab by providing the contract arguments.
18-
3. Add UTXOs to the smart contract address and the wallets used for testing.
19-
4. Next, go to the TansactionBuilder select the contract and the function to invoke
18+
3. Add UTXOs to the smart contract address and the wallets used for testing.
19+
4. Next, go to the TransactionBuilder select the contract and the function to invoke
2020
5. Finally, specify the in- and outputs for the transaction and click 'Send'!
2121

2222
## Creating a CashScript Contract

‎website/docs/guides/optimization.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,6 @@ interface Artifact {
111111
This way you can still use the CashScript TypeScript SDK while using a hand-optimized contract.
112112

113113
:::caution
114-
If you manually overwite the `bytecode` in the artifact, this will make the auto generated 2-way-mapping to become obsolete.
115-
This result of this is that the dubugging functionality will no longer work for the contract.
114+
If you manually overwrite the `bytecode` in the artifact, this will make the auto generated 2-way-mapping to become obsolete.
115+
This result of this is that the debugging functionality will no longer work for the contract.
116116
:::

‎website/docs/guides/walletconnect.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async function transactionWalletConnect(){
5050
decodedTransaction.inputs[1].unlockingBytecode = Uint8Array.from([]);
5151

5252
// construct list SourceOutputs, see source code
53-
const listSourceOutputs = constructSourceOuputs(decodedTransaction, utxoInfo, contract)
53+
const listSourceOutputs = constructSourceOutputs(decodedTransaction, utxoInfo, contract)
5454

5555
// wcTransactionObj to pass to signTransaction endpoint
5656
const wcTransactionObj = {

0 commit comments

Comments
 (0)