You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/ar/delegating.mdx
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,7 @@ This guide will explain how to be an effective delegator in the Graph Network. D
28
28
29
29
يجب اختيار المفهرس بحكمة. إذا اخترت مفهرسا ليس جديرا بالثقة ، أو لا يقوم بعمل جيد ، فستحتاج إلى إلغاء التفويض ، مما يعني أنك ستفقد الكثير من الفرص لكسب المكافآت والتي يمكن أن تكون سيئة مثل حرق GRT.
30
30
31
-
<divsx={{ mx: 'auto', maxWidth: '400px' }}>
32
-
لاحظ 0.5٪ رسوم التفويض ، بالإضافة إلى فترة 28 يوما لإلغاء التفويض.
33
-
</div>
31
+
<divsx={{ mx: 'auto', maxWidth: '400px' }}>لاحظ 0.5٪ رسوم التفويض ، بالإضافة إلى فترة 28 يوما لإلغاء التفويض.</div>
34
32
35
33
### اختيار مفهرس جدير بالثقة مع عائد جيد للمفوضين
36
34
@@ -88,5 +86,5 @@ Using this formula, we can see that it is actually possible for an indexer who i
Copy file name to clipboardExpand all lines: pages/ar/developer/assemblyscript-api.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,13 +43,13 @@ The `@graphprotocol/graph-ts` library provides the following APIs:
43
43
44
44
The `apiVersion` in the subgraph manifest specifies the mapping API version which is run by Graph Node for a given subgraph. The current mapping API version is 0.0.6.
|0.0.6 | Added `nonce` field to the Ethereum Transaction object<br />Added `baseFeePerGas` to the Ethereum Block object|
49
-
|0.0.5| AssemblyScript upgraded to version 0.19.10 (this includes breaking changes, please see the [`Migration Guide`](/developer/assemblyscript-migration-guide))<br />`ethereum.transaction.gasUsed` renamed to `ethereum.transaction.gasLimit`|
50
-
|0.0.4 | Added `functionSignature` field to the Ethereum SmartContractCall object|
51
-
|0.0.3 | Added `from` field to the Ethereum Call object<br />`etherem.call.address` renamed to `ethereum.call.to`|
52
-
|0.0.2 | Added `input` field to the Ethereum Transaction object|
46
+
| Version | Release notes |
47
+
| :-: |--- |
48
+
| 0.0.6 | Added `nonce` field to the Ethereum Transaction object<br />Added `baseFeePerGas` to the Ethereum Block object |
49
+
| 0.0.5 | AssemblyScript upgraded to version 0.19.10 (this includes breaking changes, please see the [`Migration Guide`](/developer/assemblyscript-migration-guide))<br />`ethereum.transaction.gasUsed` renamed to `ethereum.transaction.gasLimit`|
50
+
| 0.0.4 | Added `functionSignature` field to the Ethereum SmartContractCall object |
51
+
| 0.0.3 | Added `from` field to the Ethereum Call object<br />`etherem.call.address` renamed to `ethereum.call.to`|
52
+
| 0.0.2 | Added `input` field to the Ethereum Transaction object |
| `Bytes` | Byte array, represented as a hexadecimal string. Commonly used for Ethereum hashes and addresses. |
224
-
| `ID` | Stored as a `string`. |
225
-
| `String` | Scalar for `string` values. Null characters are not supported and are automatically removed. |
226
-
| `Boolean` | Scalar for `boolean` values. |
227
-
| `Int` | The GraphQL spec defines `Int` to have size of 32 bytes. |
228
-
| `BigInt` | Large integers. Used for Ethereum's `uint32`, `int64`, `uint64`, ..., `uint256` types. Note: Everything below `uint32`, such as `int32`, `uint24` or `int8` is represented as `i32`. |
229
-
| `BigDecimal` | `BigDecimal` High precision decimals represented as a signficand and an exponent. The exponent range is from −6143 to +6144. Rounded to 34 significant digits. |
221
+
| Type | Description |
222
+
| --- | --- |
223
+
| `Bytes` | Byte array, represented as a hexadecimal string. Commonly used for Ethereum hashes and addresses. |
224
+
| `ID` | Stored as a `string`. |
225
+
| `String` | Scalar for `string` values. Null characters are not supported and are automatically removed. |
226
+
| `Boolean` | Scalar for `boolean` values. |
227
+
| `Int` | The GraphQL spec defines `Int` to have size of 32 bytes. |
228
+
| `BigInt` | Large integers. Used for Ethereum's `uint32`, `int64`, `uint64`, ..., `uint256` types. Note: Everything below `uint32`, such as `int32`, `uint24` or `int8` is represented as `i32`. |
229
+
| `BigDecimal` | `BigDecimal` High precision decimals represented as a signficand and an exponent. The exponent range is from −6143 to +6144. Rounded to 34 significant digits. |
230
230
231
231
#### Enums
232
232
@@ -627,7 +627,7 @@ export function handleNewExchange(event: NewExchange): void {
627
627
```
628
628
629
629
> **Note:** A new data source will only process the calls and events for the block in which it was created and all following blocks, but will not process historical data, i.e., data that is contained in prior blocks.
630
-
>
630
+
>
631
631
> If prior blocks contain data relevant to the new data source, it is best to index that data by reading the current state of the contract and creating entities representing that state at the time the new data source is created.
632
632
633
633
### Data Source Context
@@ -684,7 +684,7 @@ dataSources:
684
684
```
685
685
686
686
> **Note:** The contract creation block can be quickly looked up on Etherscan:
687
-
>
687
+
>
688
688
> 1. Search for the contract by entering its address in the search bar.
689
689
> 2. Click on the creation transaction hash in the `Contract Creator` section.
690
690
> 3. Load the transaction details page where you'll find the start block for that contract.
0 commit comments