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: book/src/libs/seth.md
+79-2
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ Reliable and debug-friendly Ethereum client
65
65
-[x] CLI to manipulate test keys
66
66
-[x] Simple manual gas price estimation
67
67
-[ ] Fail over client logic
68
-
-[] Decode collided event hashes
68
+
-[x] Decode collided event hashes
69
69
-[x] Tracing support (4byte)
70
70
-[x] Tracing support (callTracer)
71
71
-[ ] Tracing support (prestate)
@@ -262,7 +262,53 @@ if err != nil {
262
262
log.Fatal(err)
263
263
}
264
264
```
265
-
This can be useful if you already have a config, but want to modify it slightly. It can also be useful if you read TOML config with multiple `Networks` and you want to specify which one you want to use.
265
+
This can be useful if you already have a config, but want to modify it slightly. This approach will only work if you pass it the full config, since it will not apply any defaults. It can also be useful if you read TOML config with multiple `Networks` and you want to specify which one you want to use. Although for that use case it's better to make use of the following approach:
266
+
```go
267
+
// assuming that "readSethNetworks" knows how to read the TOML file and convert it to []*seth.Network
UseNetworkWithName("Anvil"). // or alternatively use UseNetworkWithChainId (if you defined it for you network)
306
+
Build()
307
+
308
+
if err != nil {
309
+
log.Fatal(err)
310
+
}
311
+
```
266
312
267
313
### Simulated Backend
268
314
@@ -325,6 +371,37 @@ _ = client
325
371
> to mine a new block and have your transactions processed. The best way to do it is having a goroutine running in the background
326
372
> that either mines at specific intervals or when it receives a message on channel.
327
373
374
+
### Hooks
375
+
Seth supports pre/post operation hooks for two functions:
376
+
*`DeployContract()`
377
+
*`Decode` (also `DecodeTx`)
378
+
379
+
As the name suggest each will be executed before and after mentioned operation. By default, no hooks are set. Adding hooks doesn't influence retry/gas bumping logic.
380
+
381
+
You can either set hooks directly on the `seth.Config` object (not recommended) or pass them to the `ClientBuilder`:
382
+
```go
383
+
// assuming backend is the simulated backend, to show how we can speed up contract deployments by calling `Commit()` right after deploying the contract
0 commit comments