UNPKG
ethers-override
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
> ⚡🚀 SDK for `eth_call` override.
github.com/swapnet-xyz/ethers-override
swapnet-xyz/ethers-override
ethers-override
/
dist
/
types.d.ts
18 lines
(17 loc)
•
343 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
type
EthCallOverride
= { [
address
:
string
]: {
balance
:
string
;
nonce
:
string
;
code
:
string
;
stateDiff
: { [
slot
:
string
]:
string
; };
state
: { [
slot
:
string
]:
string
; }; }; };
export
type
Access
= {
address
:
string
;
storageKeys
:
string
[]; };