tempo.ts 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/dist/chains.d.ts +56 -1572
- package/dist/chains.d.ts.map +1 -1
- package/dist/viem/Actions/fee.d.ts +1 -1
- package/dist/viem/Actions/fee.d.ts.map +1 -1
- package/dist/viem/Actions/fee.js +3 -1
- package/dist/viem/Actions/fee.js.map +1 -1
- package/dist/viem/Chain.d.ts +8 -5
- package/dist/viem/Chain.d.ts.map +1 -1
- package/dist/viem/Chain.js +25 -25
- package/dist/viem/Chain.js.map +1 -1
- package/package.json +1 -54
- package/src/viem/Actions/fee.ts +3 -1
- package/src/viem/Chain.ts +36 -32
package/README.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<br>
|
|
2
|
+
<br>
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<a href="https://tempo.xyz">
|
|
6
|
+
<picture>
|
|
7
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tempoxyz/.github/refs/heads/main/assets/combomark-dark.svg">
|
|
8
|
+
<img alt="tempo combomark" src="https://raw.githubusercontent.com/tempoxyz/.github/refs/heads/main/assets/combomark-bright.svg" width="auto" height="120">
|
|
9
|
+
</picture>
|
|
10
|
+
</a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
<br>
|
|
14
|
+
<br>
|
|
15
|
+
|
|
1
16
|
# Tempo TS
|
|
2
17
|
|
|
3
18
|
> [!NOTE]
|
|
@@ -121,3 +136,12 @@ await instance.start();
|
|
|
121
136
|
// ...
|
|
122
137
|
await instance.stop();
|
|
123
138
|
```
|
|
139
|
+
|
|
140
|
+
### License
|
|
141
|
+
|
|
142
|
+
Licensed under either of [Apache License](./LICENSE-APACHE), Version
|
|
143
|
+
2.0 or [MIT License](./LICENSE-MIT) at your option.
|
|
144
|
+
|
|
145
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
146
|
+
for inclusion in these crates by you, as defined in the Apache-2.0 license,
|
|
147
|
+
shall be dual licensed as above, without any additional terms or conditions.
|