rocketh 0.6.7 → 0.6.8
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/CHANGELOG.md +6 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/environment/types.ts +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EIP1193Account, EIP1193DATA, EIP1193SignerProvider, EIP1193ProviderWithoutEvents, EIP1193WalletProvider, EIP1193TransactionReceipt } from 'eip-1193';
|
|
2
2
|
import { Abi, Narrow } from 'abitype';
|
|
3
|
-
export { Abi } from 'abitype';
|
|
3
|
+
export { Abi, AbiConstructor, AbiError, AbiEvent, AbiFallback, AbiFunction, AbiReceive } from 'abitype';
|
|
4
4
|
import { DeployContractParameters } from 'viem/contract';
|
|
5
5
|
import { Chain } from 'viem';
|
|
6
6
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EIP1193Account, EIP1193DATA, EIP1193SignerProvider, EIP1193ProviderWithoutEvents, EIP1193WalletProvider, EIP1193TransactionReceipt } from 'eip-1193';
|
|
2
2
|
import { Abi, Narrow } from 'abitype';
|
|
3
|
-
export { Abi } from 'abitype';
|
|
3
|
+
export { Abi, AbiConstructor, AbiError, AbiEvent, AbiFallback, AbiFunction, AbiReceive } from 'abitype';
|
|
4
4
|
import { DeployContractParameters } from 'viem/contract';
|
|
5
5
|
import { Chain } from 'viem';
|
|
6
6
|
|
package/package.json
CHANGED
package/src/environment/types.ts
CHANGED
|
@@ -7,11 +7,11 @@ import {
|
|
|
7
7
|
EIP1193TransactionReceipt,
|
|
8
8
|
EIP1193WalletProvider,
|
|
9
9
|
} from 'eip-1193';
|
|
10
|
-
import {Abi, Narrow} from 'abitype';
|
|
10
|
+
import {Abi, Narrow, AbiError, AbiEvent, AbiConstructor, AbiFallback, AbiFunction, AbiReceive} from 'abitype';
|
|
11
11
|
import type {DeployContractParameters} from 'viem/contract';
|
|
12
12
|
import type {Chain} from 'viem';
|
|
13
13
|
|
|
14
|
-
export type {Abi};
|
|
14
|
+
export type {Abi, AbiError, AbiEvent, AbiConstructor, AbiFallback, AbiFunction, AbiReceive};
|
|
15
15
|
export type Libraries = {readonly [libraryName: string]: EIP1193Account};
|
|
16
16
|
|
|
17
17
|
export type GasEstimate = 'infinite' | `${number}`;
|