Skip to content

Commit 4b9ce17

Browse files
chore: version packages (#106)
Co-authored-by: jxom <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c6a57d8 commit 4b9ce17

File tree

9 files changed

+27
-26
lines changed

9 files changed

+27
-26
lines changed

.changeset/hip-aliens-search.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# tempo.ts
22

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- [#105](https://github.com/tempoxyz/tempo-ts/pull/105) [`c6a57d8`](https://github.com/tempoxyz/tempo-ts/commit/c6a57d82f2c736596553857190edbe675181dfec) Thanks [@jxom](https://github.com/jxom)! - **Breaking:** Renamed all "AA" references to "Tempo".
8+
9+
### `tempo.ts/ox`
10+
- `TransactionEnvelopeAA``TransactionEnvelopeTempo`
11+
- `Transaction.AA``Transaction.Tempo`
12+
- `Transaction.AARpc``Transaction.TempoRpc`
13+
- `type: 'aa'``type: 'tempo'`
14+
15+
### `tempo.ts/viem`
16+
- `TransactionAA``TransactionTempo`
17+
- `TransactionRequestAA``TransactionRequestTempo`
18+
- `TransactionSerializableAA``TransactionSerializableTempo`
19+
- `TransactionSerializedAA``TransactionSerializedTempo`
20+
- `type: 'aa'``type: 'tempo'`
21+
322
## 0.8.3
423

524
### Patch Changes

examples/_template-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-query": "^5",
1616
"react": "^19",
1717
"react-dom": "^19",
18-
"tempo.ts": "~0.8.3",
18+
"tempo.ts": "~0.9.0",
1919
"viem": "^2",
2020
"wagmi": "^3"
2121
},

examples/accounts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"ox": "~0.9.17",
1818
"react": "^19",
1919
"react-dom": "^19",
20-
"tempo.ts": "~0.8.3",
20+
"tempo.ts": "~0.9.0",
2121
"viem": "^2",
2222
"wagmi": "^3"
2323
},

examples/exchange/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@tanstack/react-query": "^5",
1313
"react": "^19",
1414
"react-dom": "^19",
15-
"tempo.ts": "~0.8.3",
15+
"tempo.ts": "~0.9.0",
1616
"viem": "^2",
1717
"wagmi": "^3"
1818
},

examples/issuance/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@tanstack/react-query": "^5",
1313
"react": "^19",
1414
"react-dom": "^19",
15-
"tempo.ts": "~0.8.3",
15+
"tempo.ts": "~0.9.0",
1616
"viem": "^2",
1717
"wagmi": "^3"
1818
},

examples/payments/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-query": "^5",
1616
"react": "^19",
1717
"react-dom": "^19",
18-
"tempo.ts": "~0.8.3",
18+
"tempo.ts": "~0.9.0",
1919
"viem": "^2",
2020
"wagmi": "^3"
2121
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"[!start-pkg]": "",
7070
"name": "tempo.ts",
7171
"type": "module",
72-
"version": "0.8.3",
72+
"version": "0.9.0",
7373
"dependencies": {
7474
"@remix-run/fetch-router": "~0.12.0",
7575
"idb-keyval": "^6.2.2",

test/viem/config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { setTimeout } from 'node:timers/promises'
12
import type { FixedArray } from '@wagmi/core/internal'
23
import * as Mnemonic from 'ox/Mnemonic'
34
import {
@@ -126,6 +127,7 @@ export async function fundAddress(
126127
to: address,
127128
token: 1n,
128129
})
130+
if (nodeEnv !== 'localnet') await setTimeout(1000)
129131
}
130132

131133
export declare namespace fundAddress {

0 commit comments

Comments
 (0)