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: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,15 @@
13
13
## Installation
14
14
15
15
```bash
16
-
yarn add @tact-lang/txtracer-core
16
+
yarn add @tonstudio/txtracer-core
17
17
# or
18
-
npm install @tact-lang/txtracer-core
18
+
npm install @tonstudio/txtracer-core
19
19
```
20
20
21
21
## Quick Start
22
22
23
23
```ts
24
-
import {retrace} from"@tact-lang/txtracer-core"
24
+
import {retrace} from"@tonstudio/txtracer-core"
25
25
26
26
// Example: trace a transaction by its hash
27
27
const result =awaitretrace(false, "YOUR_TX_HASH")
@@ -33,7 +33,7 @@ console.log(result)
33
33
### Transaction Tracing
34
34
35
35
```ts
36
-
import {retrace} from"@tact-lang/txtracer-core"
36
+
import {retrace} from"@tonstudio/txtracer-core"
37
37
38
38
/**
39
39
* @paramtestnet - true for testnet, false for mainnet
@@ -45,7 +45,7 @@ const result = await retrace(testnet, txHash)
45
45
46
46
### Helper Methods
47
47
48
-
All methods are exported from `@tact-lang/txtracer-core` and can be used independently:
48
+
All methods are exported from `@tonstudio/txtracer-core` and can be used independently:
49
49
50
50
-**findBaseTxByHash(testnet, txHash)** — Find base transaction info by hash.
51
51
-**findRawTxByHash(testnet, baseTxInfo)** — Get full transaction details.
@@ -63,7 +63,7 @@ All methods are exported from `@tact-lang/txtracer-core` and can be used indepen
63
63
64
64
## Types
65
65
66
-
All main types (transactions, blocks, messages, tracing results) are exported from `@tact-lang/txtracer-core` and are fully typed (see [src/types.ts](src/types.ts)).
66
+
All main types (transactions, blocks, messages, tracing results) are exported from `@tonstudio/txtracer-core` and are fully typed (see [src/types.ts](src/types.ts)).
0 commit comments