File tree 4 files changed +8
-5
lines changed
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 207
207
" docu" ,
208
208
" fundme" ,
209
209
" hardhat" ,
210
+ " hodlvault" ,
210
211
" infima" ,
211
212
" jedex" ,
212
213
" lichos" ,
221
222
" setfiletype" ,
222
223
" tada" ,
223
224
" tapswap" ,
225
+ " tokenaut" ,
224
226
" txage" ,
225
227
" txbytecode" ,
226
228
" txhashoutputs" ,
227
229
" txtime" ,
228
230
" vite" ,
231
+ " walletconnect" ,
229
232
" withage" ,
230
233
" withfeeperbyte" ,
231
234
" withhardcodedfee" ,
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ The [CashScript Playground](https://playground.cashscript.org/) is a great way t
15
15
Here are the 5 simple steps for creating your first smart contract transaction with the Playground:
16
16
1 . Compile a contract, for example the default ` TransferWithTimeout ` contract.
17
17
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
20
20
5 . Finally, specify the in- and outputs for the transaction and click 'Send'!
21
21
22
22
## Creating a CashScript Contract
Original file line number Diff line number Diff line change @@ -111,6 +111,6 @@ interface Artifact {
111
111
This way you can still use the CashScript TypeScript SDK while using a hand-optimized contract.
112
112
113
113
::: 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.
116
116
:::
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ async function transactionWalletConnect(){
50
50
decodedTransaction .inputs [1 ].unlockingBytecode = Uint8Array .from ([]);
51
51
52
52
// construct list SourceOutputs, see source code
53
- const listSourceOutputs = constructSourceOuputs (decodedTransaction, utxoInfo, contract)
53
+ const listSourceOutputs = constructSourceOutputs (decodedTransaction, utxoInfo, contract)
54
54
55
55
// wcTransactionObj to pass to signTransaction endpoint
56
56
const wcTransactionObj = {
You can’t perform that action at this time.
0 commit comments