Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Jul 11, 2024
1 parent f4ca081 commit 36bf175
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions documentation/sdk/typescript/00_sdk_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ await initializeWasm();

/// Create a new Aleo account
const account = new Account();
````
```

An example of how to initialize WebAssembly in a React app is shown in [Section 2.8](#28-React-Example)

Expand Down Expand Up @@ -299,7 +299,6 @@ const executionResponse = await programManager.execute(
);

const transaction = await programManager.networkClient.getTransaction(executionResponse);
```

A reader of the above example may notice the `RecordProvider` and `KeyProvider` classes that were not present in the local
Expand Down Expand Up @@ -401,7 +400,7 @@ export const useAleoWASM = () => {
}, []); // eslint-disable-line react-hooks/exhaustive-deps
return aleoInstance;
};
````
```
Once a hook for the WASM initialization is created, it can be used anywhere within the app.

#### Program Execution
Expand Down

0 comments on commit 36bf175

Please sign in to comment.