Update fetch checker
This commit is contained in:
@@ -25,11 +25,11 @@ export const GitHubRepoSearch = () => {
|
||||
<Box>
|
||||
<TextField
|
||||
type="text"
|
||||
placeholder="Enter GitHub Repo URL: https://github.com/nymtech/nym/"
|
||||
placeholder="Enter GitHub repo URL: https://github.com/nymtech/nym/"
|
||||
value={repoUrl}
|
||||
onChange={(e) => setRepoUrl(e.target.value)}
|
||||
size="small"
|
||||
sx={{width: "400px"}}
|
||||
sx={{width: "450px"}}
|
||||
/>
|
||||
|
||||
<Button
|
||||
|
||||
@@ -18,7 +18,7 @@ If you're unsure where to start, the following set of questions should help you
|
||||
|
||||
<GitHubRepoSearch />
|
||||
|
||||
This should open a window showcasing all your repo's files calling the `fetch` method. The best way to integrate Nym into your application will be where external network calls and RPC happens, for example, something in the lines of `sendRawTransaction` if you have an ETH-compatible wallet or 'JsonRpcClient' if you use CosmJS.
|
||||
This should open a window showcasing all your repo's files calling the `fetch` method. The best way to integrate Nym into your application will be where external network calls and RPC happens, for example, something in the lines of `sendRawTransaction` if you have an ETH-compatible wallet or `JsonRpcClient` if you use CosmJS.
|
||||
|
||||
Although you can simply search for any JS `fetch` calls in your code (using our tool above) that are easily replaceable with `mixFetch`, keep in mind that `fetch` is not the only way to make `JSONRPC` or `XHR` calls.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user