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

fix some typos #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ Tenderly keeps track of all executions. Webhook execution can have several statu
* **Success** - indicates that the webhook was successfully executed and the event was delivered to the specified URL
* **Failed** - indicates that the webhook was unable to be executed due to an error, such as a connectivity issue, a problem with the URL, or something else (check the response content to see what caused the error or contact our support)
* **Pending** - indicates that the webhook is in the process of being executed and has not yet been completed
* **Retry** - indicates that the webhook execution failed but will be retried no more than 5 times until it changes the status to Sucess or Failed
* **Retry** - indicates that the webhook execution failed but will be retried no more than 5 times until it changes the status to Success or Failed
* **Skipped** - indicates that the webhook was not executed because it was disabled

#### Webhook payload

The webhook will receive the payload representing the alerting event. The payload consists of three fields:

* **id**: `String` - ID unique accross all delivered alert events (UUID).
* **id**: `String` - ID unique across all delivered alert events (UUID).
* **event\_type**: `TEST` | `ALERT` - the type of webhook event type.
* **transaction**: `Object` - an object representing an un-decoded transaction that triggered the alert and the webhook execution. 

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Webhook execution can have several statuses:
* **Success:** Webhook was successfully executed, and the event was delivered to the specified URL.
* **Failed**: Webhook was unable to be executed due to an error, such as a connectivity issue, a problem with the URL, or something else. Check the response content to see what caused the error, or contact our support.
* **Pending**: Webhook is in the process of being executed and has not yet been completed.
* **Retry**: Webhook execution failed but will be retried no more than 5 times until it changes the status to Sucess or Failed.
* **Retry**: Webhook execution failed but will be retried no more than 5 times until it changes the status to Success or Failed.
* **Skipped**: Webhook was not executed because it was disabled.

<figure><img src="../../.gitbook/assets/image (3) (1).png" alt=""><figcaption><p>Webhook Execution Page</p></figcaption></figure>
Expand Down
2 changes: 1 addition & 1 deletion debugger/how-to-use-tenderly-debugger/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to use Tenderly Debugger

The Visual Debugger is one of the tools people love the most. Instead of wasting countless hours debugging transactions, you can use the Visual Debugger so you can focus more on buidling and less on scratching your head.
The Visual Debugger is one of the tools people love the most. Instead of wasting countless hours debugging transactions, you can use the Visual Debugger so you can focus more on building and less on scratching your head.

**The level of detail present here doesn't exist anywhere else and reduces development time by orders of magnitude**.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You will find two directories with code for spawning DevNets: a bash (`spawn-dev
```bash
TENDERLY_ACCESS_KEY=your_access_key
TENDERLY_PROJECT_SLUG=your_project_slug
TENDERLY_DEVNET_TEMPLATE=your_devnet_tempalte
TENDERLY_DEVNET_TEMPLATE=your_devnet_template
TENDERLY_ACCOUNT_ID=your_account_id
```
3. To run the script, use the following command in your terminal:
Expand Down
2 changes: 1 addition & 1 deletion monitoring/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ contract('Calculator', function (accounts) {
error = e;
}

assert.isDefined(error, "No exception thrown during divison");
assert.isDefined(error, "No exception thrown during division");
assert.isTrue(error.message.search("revert") >= 0, "Expected transaction revert");
});
});
Expand Down
2 changes: 1 addition & 1 deletion tenderly-sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If you don’t create a copy, any changes you make to someone else’s Sandbox w

#### Managing your Sandboxes

To view a list of all the Sandboxes you created or copied, **click on the dropdown menu** next to the logo in the top nav bar. By default, all Sandboxes are publicaly visible.&#x20;
To view a list of all the Sandboxes you created or copied, **click on the dropdown menu** next to the logo in the top nav bar. By default, all Sandboxes are publicly visible.&#x20;

Manage your Sandboxes by **clicking the three dots icon** next to the Sandbox name to perform any of the following actions:

Expand Down
2 changes: 1 addition & 1 deletion web3-gateway/references/brief-json-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: A brief overview of supported Ethereum JSON RPC calls.
# Brief JSON RPC reference

{% hint style="info" %}
This page shows a brief overview of supported Ethereum JSON RPC calls. Find a [detaild list of supported calls](detailed-json-rpc.md).
This page shows a brief overview of supported Ethereum JSON RPC calls. Find a [detailed list of supported calls](detailed-json-rpc.md).
{% endhint %}

### `eth_getBlockByHash`
Expand Down