@sentio/sdk 1.37.5-rc.1 → 1.37.5-rc.3
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/lib/builtin/internal/EACAggregatorProxy.d.ts +8 -8
- package/lib/builtin/internal/ERC1155.d.ts +8 -8
- package/lib/builtin/internal/ERC20.d.ts +6 -6
- package/lib/builtin/internal/ERC20Bytes.d.ts +4 -4
- package/lib/builtin/internal/ERC721.d.ts +6 -6
- package/lib/builtin/internal/WETH9.d.ts +8 -8
- package/lib/builtin/internal/common.d.ts +5 -5
- package/lib/builtin/internal/eacaggregatorproxy_processor.d.ts +24 -24
- package/lib/builtin/internal/erc1155_processor.d.ts +9 -9
- package/lib/builtin/internal/erc20_processor.d.ts +19 -19
- package/lib/builtin/internal/erc20bytes_processor.d.ts +10 -10
- package/lib/builtin/internal/erc721_processor.d.ts +15 -15
- package/lib/builtin/internal/weth9_processor.d.ts +12 -12
- package/lib/core/account-processor.js +2 -2
- package/lib/core/account-processor.js.map +1 -1
- package/lib/core/base-processor.d.ts +4 -4
- package/lib/core/base-processor.js +19 -6
- package/lib/core/base-processor.js.map +1 -1
- package/lib/core/context.d.ts +3 -2
- package/lib/core/context.js +5 -3
- package/lib/core/context.js.map +1 -1
- package/lib/core/eth-plugin.js +12 -30
- package/lib/core/eth-plugin.js.map +1 -1
- package/lib/core/exporter.d.ts +1 -1
- package/lib/core/logger.d.ts +1 -1
- package/lib/core/metadata.d.ts +1 -1
- package/lib/core/numberish.d.ts +1 -1
- package/lib/core/sui-processor.d.ts +1 -1
- package/lib/promise-or-void.d.ts +1 -1
- package/lib/testing/test-processor-server.js +6 -3
- package/lib/testing/test-processor-server.js.map +1 -1
- package/package.json +4 -4
- package/src/core/account-processor.ts +3 -3
- package/src/core/base-processor.ts +30 -10
- package/src/core/context.ts +6 -3
- package/src/core/eth-plugin.ts +24 -32
- package/src/testing/test-processor-server.ts +6 -3
|
@@ -91,41 +91,41 @@ export interface AnswerUpdatedEventObject {
|
|
|
91
91
|
roundId: BigNumber;
|
|
92
92
|
updatedAt: BigNumber;
|
|
93
93
|
}
|
|
94
|
-
export
|
|
94
|
+
export type AnswerUpdatedEvent = TypedEvent<[
|
|
95
95
|
BigNumber,
|
|
96
96
|
BigNumber,
|
|
97
97
|
BigNumber
|
|
98
98
|
], AnswerUpdatedEventObject>;
|
|
99
|
-
export
|
|
99
|
+
export type AnswerUpdatedEventFilter = TypedEventFilter<AnswerUpdatedEvent>;
|
|
100
100
|
export interface NewRoundEventObject {
|
|
101
101
|
roundId: BigNumber;
|
|
102
102
|
startedBy: string;
|
|
103
103
|
startedAt: BigNumber;
|
|
104
104
|
}
|
|
105
|
-
export
|
|
105
|
+
export type NewRoundEvent = TypedEvent<[
|
|
106
106
|
BigNumber,
|
|
107
107
|
string,
|
|
108
108
|
BigNumber
|
|
109
109
|
], NewRoundEventObject>;
|
|
110
|
-
export
|
|
110
|
+
export type NewRoundEventFilter = TypedEventFilter<NewRoundEvent>;
|
|
111
111
|
export interface OwnershipTransferRequestedEventObject {
|
|
112
112
|
from: string;
|
|
113
113
|
to: string;
|
|
114
114
|
}
|
|
115
|
-
export
|
|
115
|
+
export type OwnershipTransferRequestedEvent = TypedEvent<[
|
|
116
116
|
string,
|
|
117
117
|
string
|
|
118
118
|
], OwnershipTransferRequestedEventObject>;
|
|
119
|
-
export
|
|
119
|
+
export type OwnershipTransferRequestedEventFilter = TypedEventFilter<OwnershipTransferRequestedEvent>;
|
|
120
120
|
export interface OwnershipTransferredEventObject {
|
|
121
121
|
from: string;
|
|
122
122
|
to: string;
|
|
123
123
|
}
|
|
124
|
-
export
|
|
124
|
+
export type OwnershipTransferredEvent = TypedEvent<[
|
|
125
125
|
string,
|
|
126
126
|
string
|
|
127
127
|
], OwnershipTransferredEventObject>;
|
|
128
|
-
export
|
|
128
|
+
export type OwnershipTransferredEventFilter = TypedEventFilter<OwnershipTransferredEvent>;
|
|
129
129
|
export interface EACAggregatorProxy extends BaseContract {
|
|
130
130
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
131
131
|
attach(addressOrName: string): this;
|
|
@@ -58,12 +58,12 @@ export interface ApprovalForAllEventObject {
|
|
|
58
58
|
operator: string;
|
|
59
59
|
approved: boolean;
|
|
60
60
|
}
|
|
61
|
-
export
|
|
61
|
+
export type ApprovalForAllEvent = TypedEvent<[
|
|
62
62
|
string,
|
|
63
63
|
string,
|
|
64
64
|
boolean
|
|
65
65
|
], ApprovalForAllEventObject>;
|
|
66
|
-
export
|
|
66
|
+
export type ApprovalForAllEventFilter = TypedEventFilter<ApprovalForAllEvent>;
|
|
67
67
|
export interface TransferBatchEventObject {
|
|
68
68
|
operator: string;
|
|
69
69
|
from: string;
|
|
@@ -71,14 +71,14 @@ export interface TransferBatchEventObject {
|
|
|
71
71
|
ids: BigNumber[];
|
|
72
72
|
values: BigNumber[];
|
|
73
73
|
}
|
|
74
|
-
export
|
|
74
|
+
export type TransferBatchEvent = TypedEvent<[
|
|
75
75
|
string,
|
|
76
76
|
string,
|
|
77
77
|
string,
|
|
78
78
|
BigNumber[],
|
|
79
79
|
BigNumber[]
|
|
80
80
|
], TransferBatchEventObject>;
|
|
81
|
-
export
|
|
81
|
+
export type TransferBatchEventFilter = TypedEventFilter<TransferBatchEvent>;
|
|
82
82
|
export interface TransferSingleEventObject {
|
|
83
83
|
operator: string;
|
|
84
84
|
from: string;
|
|
@@ -86,20 +86,20 @@ export interface TransferSingleEventObject {
|
|
|
86
86
|
id: BigNumber;
|
|
87
87
|
value: BigNumber;
|
|
88
88
|
}
|
|
89
|
-
export
|
|
89
|
+
export type TransferSingleEvent = TypedEvent<[
|
|
90
90
|
string,
|
|
91
91
|
string,
|
|
92
92
|
string,
|
|
93
93
|
BigNumber,
|
|
94
94
|
BigNumber
|
|
95
95
|
], TransferSingleEventObject>;
|
|
96
|
-
export
|
|
96
|
+
export type TransferSingleEventFilter = TypedEventFilter<TransferSingleEvent>;
|
|
97
97
|
export interface URIEventObject {
|
|
98
98
|
value: string;
|
|
99
99
|
id: BigNumber;
|
|
100
100
|
}
|
|
101
|
-
export
|
|
102
|
-
export
|
|
101
|
+
export type URIEvent = TypedEvent<[string, BigNumber], URIEventObject>;
|
|
102
|
+
export type URIEventFilter = TypedEventFilter<URIEvent>;
|
|
103
103
|
export interface ERC1155 extends BaseContract {
|
|
104
104
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
105
105
|
attach(addressOrName: string): this;
|
|
@@ -78,32 +78,32 @@ export interface ApprovalEventObject {
|
|
|
78
78
|
spender: string;
|
|
79
79
|
value: BigNumber;
|
|
80
80
|
}
|
|
81
|
-
export
|
|
81
|
+
export type ApprovalEvent = TypedEvent<[
|
|
82
82
|
string,
|
|
83
83
|
string,
|
|
84
84
|
BigNumber
|
|
85
85
|
], ApprovalEventObject>;
|
|
86
|
-
export
|
|
86
|
+
export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
|
|
87
87
|
export interface OwnershipTransferredEventObject {
|
|
88
88
|
previousOwner: string;
|
|
89
89
|
newOwner: string;
|
|
90
90
|
}
|
|
91
|
-
export
|
|
91
|
+
export type OwnershipTransferredEvent = TypedEvent<[
|
|
92
92
|
string,
|
|
93
93
|
string
|
|
94
94
|
], OwnershipTransferredEventObject>;
|
|
95
|
-
export
|
|
95
|
+
export type OwnershipTransferredEventFilter = TypedEventFilter<OwnershipTransferredEvent>;
|
|
96
96
|
export interface TransferEventObject {
|
|
97
97
|
from: string;
|
|
98
98
|
to: string;
|
|
99
99
|
value: BigNumber;
|
|
100
100
|
}
|
|
101
|
-
export
|
|
101
|
+
export type TransferEvent = TypedEvent<[
|
|
102
102
|
string,
|
|
103
103
|
string,
|
|
104
104
|
BigNumber
|
|
105
105
|
], TransferEventObject>;
|
|
106
|
-
export
|
|
106
|
+
export type TransferEventFilter = TypedEventFilter<TransferEvent>;
|
|
107
107
|
export interface ERC20 extends BaseContract {
|
|
108
108
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
109
109
|
attach(addressOrName: string): this;
|
|
@@ -49,23 +49,23 @@ export interface ApprovalEventObject {
|
|
|
49
49
|
spender: string;
|
|
50
50
|
value: BigNumber;
|
|
51
51
|
}
|
|
52
|
-
export
|
|
52
|
+
export type ApprovalEvent = TypedEvent<[
|
|
53
53
|
string,
|
|
54
54
|
string,
|
|
55
55
|
BigNumber
|
|
56
56
|
], ApprovalEventObject>;
|
|
57
|
-
export
|
|
57
|
+
export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
|
|
58
58
|
export interface TransferEventObject {
|
|
59
59
|
from: string;
|
|
60
60
|
to: string;
|
|
61
61
|
value: BigNumber;
|
|
62
62
|
}
|
|
63
|
-
export
|
|
63
|
+
export type TransferEvent = TypedEvent<[
|
|
64
64
|
string,
|
|
65
65
|
string,
|
|
66
66
|
BigNumber
|
|
67
67
|
], TransferEventObject>;
|
|
68
|
-
export
|
|
68
|
+
export type TransferEventFilter = TypedEventFilter<TransferEvent>;
|
|
69
69
|
export interface ERC20Bytes extends BaseContract {
|
|
70
70
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
71
71
|
attach(addressOrName: string): this;
|
|
@@ -75,34 +75,34 @@ export interface ApprovalEventObject {
|
|
|
75
75
|
approved: string;
|
|
76
76
|
tokenId: BigNumber;
|
|
77
77
|
}
|
|
78
|
-
export
|
|
78
|
+
export type ApprovalEvent = TypedEvent<[
|
|
79
79
|
string,
|
|
80
80
|
string,
|
|
81
81
|
BigNumber
|
|
82
82
|
], ApprovalEventObject>;
|
|
83
|
-
export
|
|
83
|
+
export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
|
|
84
84
|
export interface ApprovalForAllEventObject {
|
|
85
85
|
owner: string;
|
|
86
86
|
operator: string;
|
|
87
87
|
approved: boolean;
|
|
88
88
|
}
|
|
89
|
-
export
|
|
89
|
+
export type ApprovalForAllEvent = TypedEvent<[
|
|
90
90
|
string,
|
|
91
91
|
string,
|
|
92
92
|
boolean
|
|
93
93
|
], ApprovalForAllEventObject>;
|
|
94
|
-
export
|
|
94
|
+
export type ApprovalForAllEventFilter = TypedEventFilter<ApprovalForAllEvent>;
|
|
95
95
|
export interface TransferEventObject {
|
|
96
96
|
from: string;
|
|
97
97
|
to: string;
|
|
98
98
|
tokenId: BigNumber;
|
|
99
99
|
}
|
|
100
|
-
export
|
|
100
|
+
export type TransferEvent = TypedEvent<[
|
|
101
101
|
string,
|
|
102
102
|
string,
|
|
103
103
|
BigNumber
|
|
104
104
|
], TransferEventObject>;
|
|
105
|
-
export
|
|
105
|
+
export type TransferEventFilter = TypedEventFilter<TransferEvent>;
|
|
106
106
|
export interface ERC721 extends BaseContract {
|
|
107
107
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
108
108
|
attach(addressOrName: string): this;
|
|
@@ -59,38 +59,38 @@ export interface ApprovalEventObject {
|
|
|
59
59
|
guy: string;
|
|
60
60
|
wad: BigNumber;
|
|
61
61
|
}
|
|
62
|
-
export
|
|
62
|
+
export type ApprovalEvent = TypedEvent<[
|
|
63
63
|
string,
|
|
64
64
|
string,
|
|
65
65
|
BigNumber
|
|
66
66
|
], ApprovalEventObject>;
|
|
67
|
-
export
|
|
67
|
+
export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
|
|
68
68
|
export interface TransferEventObject {
|
|
69
69
|
src: string;
|
|
70
70
|
dst: string;
|
|
71
71
|
wad: BigNumber;
|
|
72
72
|
}
|
|
73
|
-
export
|
|
73
|
+
export type TransferEvent = TypedEvent<[
|
|
74
74
|
string,
|
|
75
75
|
string,
|
|
76
76
|
BigNumber
|
|
77
77
|
], TransferEventObject>;
|
|
78
|
-
export
|
|
78
|
+
export type TransferEventFilter = TypedEventFilter<TransferEvent>;
|
|
79
79
|
export interface DepositEventObject {
|
|
80
80
|
dst: string;
|
|
81
81
|
wad: BigNumber;
|
|
82
82
|
}
|
|
83
|
-
export
|
|
84
|
-
export
|
|
83
|
+
export type DepositEvent = TypedEvent<[string, BigNumber], DepositEventObject>;
|
|
84
|
+
export type DepositEventFilter = TypedEventFilter<DepositEvent>;
|
|
85
85
|
export interface WithdrawalEventObject {
|
|
86
86
|
src: string;
|
|
87
87
|
wad: BigNumber;
|
|
88
88
|
}
|
|
89
|
-
export
|
|
89
|
+
export type WithdrawalEvent = TypedEvent<[
|
|
90
90
|
string,
|
|
91
91
|
BigNumber
|
|
92
92
|
], WithdrawalEventObject>;
|
|
93
|
-
export
|
|
93
|
+
export type WithdrawalEventFilter = TypedEventFilter<WithdrawalEvent>;
|
|
94
94
|
export interface WETH9 extends BaseContract {
|
|
95
95
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
96
96
|
attach(addressOrName: string): this;
|
|
@@ -8,15 +8,15 @@ export interface TypedEventFilter<_TEvent extends TypedEvent> extends EventFilte
|
|
|
8
8
|
export interface TypedListener<TEvent extends TypedEvent> {
|
|
9
9
|
(...listenerArg: [...__TypechainArgsArray<TEvent>, TEvent]): void;
|
|
10
10
|
}
|
|
11
|
-
|
|
11
|
+
type __TypechainArgsArray<T> = T extends TypedEvent<infer U> ? U : never;
|
|
12
12
|
export interface OnEvent<TRes> {
|
|
13
13
|
<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>, listener: TypedListener<TEvent>): TRes;
|
|
14
14
|
(eventName: string, listener: Listener): TRes;
|
|
15
15
|
}
|
|
16
|
-
export
|
|
16
|
+
export type MinEthersFactory<C, ARGS> = {
|
|
17
17
|
deploy(...a: ARGS[]): Promise<C>;
|
|
18
18
|
};
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
19
|
+
export type GetContractTypeFromFactory<F> = F extends MinEthersFactory<infer C, any> ? C : never;
|
|
20
|
+
export type GetARGsTypeFromFactory<F> = F extends MinEthersFactory<any, any> ? Parameters<F["deploy"]> : never;
|
|
21
|
+
export type PromiseOrValue<T> = T | Promise<T>;
|
|
22
22
|
export {};
|
|
@@ -6,105 +6,105 @@ import { EACAggregatorProxy } from "./index";
|
|
|
6
6
|
import { AnswerUpdatedEvent, AnswerUpdatedEventFilter, NewRoundEvent, NewRoundEventFilter, OwnershipTransferRequestedEvent, OwnershipTransferRequestedEventFilter, OwnershipTransferredEvent, OwnershipTransferredEventFilter } from "./EACAggregatorProxy";
|
|
7
7
|
export interface AcceptOwnershipCallObject {
|
|
8
8
|
}
|
|
9
|
-
export
|
|
9
|
+
export type AcceptOwnershipCallTrace = TypedCallTrace<[
|
|
10
10
|
], AcceptOwnershipCallObject>;
|
|
11
11
|
export interface AccessControllerCallObject {
|
|
12
12
|
}
|
|
13
|
-
export
|
|
13
|
+
export type AccessControllerCallTrace = TypedCallTrace<[
|
|
14
14
|
], AccessControllerCallObject>;
|
|
15
15
|
export interface AggregatorCallObject {
|
|
16
16
|
}
|
|
17
|
-
export
|
|
17
|
+
export type AggregatorCallTrace = TypedCallTrace<[], AggregatorCallObject>;
|
|
18
18
|
export interface ConfirmAggregatorCallObject {
|
|
19
19
|
_aggregator: string;
|
|
20
20
|
}
|
|
21
|
-
export
|
|
21
|
+
export type ConfirmAggregatorCallTrace = TypedCallTrace<[
|
|
22
22
|
string
|
|
23
23
|
], ConfirmAggregatorCallObject>;
|
|
24
24
|
export interface DecimalsCallObject {
|
|
25
25
|
}
|
|
26
|
-
export
|
|
26
|
+
export type DecimalsCallTrace = TypedCallTrace<[], DecimalsCallObject>;
|
|
27
27
|
export interface DescriptionCallObject {
|
|
28
28
|
}
|
|
29
|
-
export
|
|
29
|
+
export type DescriptionCallTrace = TypedCallTrace<[], DescriptionCallObject>;
|
|
30
30
|
export interface GetAnswerCallObject {
|
|
31
31
|
_roundId: BigNumber;
|
|
32
32
|
}
|
|
33
|
-
export
|
|
33
|
+
export type GetAnswerCallTrace = TypedCallTrace<[
|
|
34
34
|
BigNumber
|
|
35
35
|
], GetAnswerCallObject>;
|
|
36
36
|
export interface GetRoundDataCallObject {
|
|
37
37
|
_roundId: BigNumber;
|
|
38
38
|
}
|
|
39
|
-
export
|
|
39
|
+
export type GetRoundDataCallTrace = TypedCallTrace<[
|
|
40
40
|
BigNumber
|
|
41
41
|
], GetRoundDataCallObject>;
|
|
42
42
|
export interface GetTimestampCallObject {
|
|
43
43
|
_roundId: BigNumber;
|
|
44
44
|
}
|
|
45
|
-
export
|
|
45
|
+
export type GetTimestampCallTrace = TypedCallTrace<[
|
|
46
46
|
BigNumber
|
|
47
47
|
], GetTimestampCallObject>;
|
|
48
48
|
export interface LatestAnswerCallObject {
|
|
49
49
|
}
|
|
50
|
-
export
|
|
50
|
+
export type LatestAnswerCallTrace = TypedCallTrace<[], LatestAnswerCallObject>;
|
|
51
51
|
export interface LatestRoundCallObject {
|
|
52
52
|
}
|
|
53
|
-
export
|
|
53
|
+
export type LatestRoundCallTrace = TypedCallTrace<[], LatestRoundCallObject>;
|
|
54
54
|
export interface LatestRoundDataCallObject {
|
|
55
55
|
}
|
|
56
|
-
export
|
|
56
|
+
export type LatestRoundDataCallTrace = TypedCallTrace<[
|
|
57
57
|
], LatestRoundDataCallObject>;
|
|
58
58
|
export interface LatestTimestampCallObject {
|
|
59
59
|
}
|
|
60
|
-
export
|
|
60
|
+
export type LatestTimestampCallTrace = TypedCallTrace<[
|
|
61
61
|
], LatestTimestampCallObject>;
|
|
62
62
|
export interface OwnerCallObject {
|
|
63
63
|
}
|
|
64
|
-
export
|
|
64
|
+
export type OwnerCallTrace = TypedCallTrace<[], OwnerCallObject>;
|
|
65
65
|
export interface PhaseAggregatorsCallObject {
|
|
66
66
|
}
|
|
67
|
-
export
|
|
67
|
+
export type PhaseAggregatorsCallTrace = TypedCallTrace<[
|
|
68
68
|
number
|
|
69
69
|
], PhaseAggregatorsCallObject>;
|
|
70
70
|
export interface PhaseIdCallObject {
|
|
71
71
|
}
|
|
72
|
-
export
|
|
72
|
+
export type PhaseIdCallTrace = TypedCallTrace<[], PhaseIdCallObject>;
|
|
73
73
|
export interface ProposeAggregatorCallObject {
|
|
74
74
|
_aggregator: string;
|
|
75
75
|
}
|
|
76
|
-
export
|
|
76
|
+
export type ProposeAggregatorCallTrace = TypedCallTrace<[
|
|
77
77
|
string
|
|
78
78
|
], ProposeAggregatorCallObject>;
|
|
79
79
|
export interface ProposedAggregatorCallObject {
|
|
80
80
|
}
|
|
81
|
-
export
|
|
81
|
+
export type ProposedAggregatorCallTrace = TypedCallTrace<[
|
|
82
82
|
], ProposedAggregatorCallObject>;
|
|
83
83
|
export interface ProposedGetRoundDataCallObject {
|
|
84
84
|
_roundId: BigNumber;
|
|
85
85
|
}
|
|
86
|
-
export
|
|
86
|
+
export type ProposedGetRoundDataCallTrace = TypedCallTrace<[
|
|
87
87
|
BigNumber
|
|
88
88
|
], ProposedGetRoundDataCallObject>;
|
|
89
89
|
export interface ProposedLatestRoundDataCallObject {
|
|
90
90
|
}
|
|
91
|
-
export
|
|
91
|
+
export type ProposedLatestRoundDataCallTrace = TypedCallTrace<[
|
|
92
92
|
], ProposedLatestRoundDataCallObject>;
|
|
93
93
|
export interface SetControllerCallObject {
|
|
94
94
|
_accessController: string;
|
|
95
95
|
}
|
|
96
|
-
export
|
|
96
|
+
export type SetControllerCallTrace = TypedCallTrace<[
|
|
97
97
|
string
|
|
98
98
|
], SetControllerCallObject>;
|
|
99
99
|
export interface TransferOwnershipCallObject {
|
|
100
100
|
_to: string;
|
|
101
101
|
}
|
|
102
|
-
export
|
|
102
|
+
export type TransferOwnershipCallTrace = TypedCallTrace<[
|
|
103
103
|
string
|
|
104
104
|
], TransferOwnershipCallObject>;
|
|
105
105
|
export interface VersionCallObject {
|
|
106
106
|
}
|
|
107
|
-
export
|
|
107
|
+
export type VersionCallTrace = TypedCallTrace<[], VersionCallObject>;
|
|
108
108
|
export declare class EACAggregatorProxyContractView extends ContractView<EACAggregatorProxy> {
|
|
109
109
|
constructor(contract: EACAggregatorProxy);
|
|
110
110
|
accessController(overrides?: CallOverrides): Promise<string>;
|
|
@@ -242,7 +242,7 @@ export declare class EACAggregatorProxyBoundContractView extends BoundContractVi
|
|
|
242
242
|
}>;
|
|
243
243
|
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
244
244
|
}
|
|
245
|
-
export
|
|
245
|
+
export type EACAggregatorProxyContext = ContractContext<EACAggregatorProxy, EACAggregatorProxyBoundContractView>;
|
|
246
246
|
export declare class EACAggregatorProxyProcessorTemplate extends BaseProcessorTemplate<EACAggregatorProxy, EACAggregatorProxyBoundContractView> {
|
|
247
247
|
bindInternal(options: BindOptions): EACAggregatorProxyProcessor;
|
|
248
248
|
onEventAnswerUpdated(handler: (event: AnswerUpdatedEvent, ctx: EACAggregatorProxyContext) => void, filter?: AnswerUpdatedEventFilter | AnswerUpdatedEventFilter[]): this;
|
|
@@ -8,7 +8,7 @@ export interface BalanceOfCallObject {
|
|
|
8
8
|
account: string;
|
|
9
9
|
id: BigNumber;
|
|
10
10
|
}
|
|
11
|
-
export
|
|
11
|
+
export type BalanceOfCallTrace = TypedCallTrace<[
|
|
12
12
|
string,
|
|
13
13
|
BigNumber
|
|
14
14
|
], BalanceOfCallObject>;
|
|
@@ -16,7 +16,7 @@ export interface BalanceOfBatchCallObject {
|
|
|
16
16
|
accounts: string[];
|
|
17
17
|
ids: BigNumber[];
|
|
18
18
|
}
|
|
19
|
-
export
|
|
19
|
+
export type BalanceOfBatchCallTrace = TypedCallTrace<[
|
|
20
20
|
string[],
|
|
21
21
|
BigNumber[]
|
|
22
22
|
], BalanceOfBatchCallObject>;
|
|
@@ -24,7 +24,7 @@ export interface IsApprovedForAllCallObject {
|
|
|
24
24
|
account: string;
|
|
25
25
|
operator: string;
|
|
26
26
|
}
|
|
27
|
-
export
|
|
27
|
+
export type IsApprovedForAllCallTrace = TypedCallTrace<[
|
|
28
28
|
string,
|
|
29
29
|
string
|
|
30
30
|
], IsApprovedForAllCallObject>;
|
|
@@ -35,7 +35,7 @@ export interface SafeBatchTransferFromCallObject {
|
|
|
35
35
|
amounts: BigNumber[];
|
|
36
36
|
data: string;
|
|
37
37
|
}
|
|
38
|
-
export
|
|
38
|
+
export type SafeBatchTransferFromCallTrace = TypedCallTrace<[
|
|
39
39
|
string,
|
|
40
40
|
string,
|
|
41
41
|
BigNumber[],
|
|
@@ -49,7 +49,7 @@ export interface SafeTransferFromCallObject {
|
|
|
49
49
|
amount: BigNumber;
|
|
50
50
|
data: string;
|
|
51
51
|
}
|
|
52
|
-
export
|
|
52
|
+
export type SafeTransferFromCallTrace = TypedCallTrace<[
|
|
53
53
|
string,
|
|
54
54
|
string,
|
|
55
55
|
BigNumber,
|
|
@@ -60,20 +60,20 @@ export interface SetApprovalForAllCallObject {
|
|
|
60
60
|
operator: string;
|
|
61
61
|
approved: boolean;
|
|
62
62
|
}
|
|
63
|
-
export
|
|
63
|
+
export type SetApprovalForAllCallTrace = TypedCallTrace<[
|
|
64
64
|
string,
|
|
65
65
|
boolean
|
|
66
66
|
], SetApprovalForAllCallObject>;
|
|
67
67
|
export interface SupportsInterfaceCallObject {
|
|
68
68
|
interfaceId: string;
|
|
69
69
|
}
|
|
70
|
-
export
|
|
70
|
+
export type SupportsInterfaceCallTrace = TypedCallTrace<[
|
|
71
71
|
string
|
|
72
72
|
], SupportsInterfaceCallObject>;
|
|
73
73
|
export interface UriCallObject {
|
|
74
74
|
id: BigNumber;
|
|
75
75
|
}
|
|
76
|
-
export
|
|
76
|
+
export type UriCallTrace = TypedCallTrace<[BigNumber], UriCallObject>;
|
|
77
77
|
export declare class ERC1155ContractView extends ContractView<ERC1155> {
|
|
78
78
|
constructor(contract: ERC1155);
|
|
79
79
|
balanceOf(account: PromiseOrValue<string>, id: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
@@ -89,7 +89,7 @@ export declare class ERC1155BoundContractView extends BoundContractView<ERC1155,
|
|
|
89
89
|
supportsInterface(interfaceId: PromiseOrValue<BytesLike>, overrides?: CallOverrides): Promise<boolean>;
|
|
90
90
|
uri(id: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<string>;
|
|
91
91
|
}
|
|
92
|
-
export
|
|
92
|
+
export type ERC1155Context = ContractContext<ERC1155, ERC1155BoundContractView>;
|
|
93
93
|
export declare class ERC1155ProcessorTemplate extends BaseProcessorTemplate<ERC1155, ERC1155BoundContractView> {
|
|
94
94
|
bindInternal(options: BindOptions): ERC1155Processor;
|
|
95
95
|
onEventApprovalForAll(handler: (event: ApprovalForAllEvent, ctx: ERC1155Context) => void, filter?: ApprovalForAllEventFilter | ApprovalForAllEventFilter[]): this;
|
|
@@ -8,7 +8,7 @@ export interface AllowanceCallObject {
|
|
|
8
8
|
owner: string;
|
|
9
9
|
spender: string;
|
|
10
10
|
}
|
|
11
|
-
export
|
|
11
|
+
export type AllowanceCallTrace = TypedCallTrace<[
|
|
12
12
|
string,
|
|
13
13
|
string
|
|
14
14
|
], AllowanceCallObject>;
|
|
@@ -16,34 +16,34 @@ export interface ApproveCallObject {
|
|
|
16
16
|
spender: string;
|
|
17
17
|
amount: BigNumber;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
19
|
+
export type ApproveCallTrace = TypedCallTrace<[
|
|
20
20
|
string,
|
|
21
21
|
BigNumber
|
|
22
22
|
], ApproveCallObject>;
|
|
23
23
|
export interface BalanceOfCallObject {
|
|
24
24
|
account: string;
|
|
25
25
|
}
|
|
26
|
-
export
|
|
26
|
+
export type BalanceOfCallTrace = TypedCallTrace<[string], BalanceOfCallObject>;
|
|
27
27
|
export interface BurnCallObject {
|
|
28
28
|
amount: BigNumber;
|
|
29
29
|
}
|
|
30
|
-
export
|
|
30
|
+
export type BurnCallTrace = TypedCallTrace<[BigNumber], BurnCallObject>;
|
|
31
31
|
export interface BurnFromCallObject {
|
|
32
32
|
account: string;
|
|
33
33
|
amount: BigNumber;
|
|
34
34
|
}
|
|
35
|
-
export
|
|
35
|
+
export type BurnFromCallTrace = TypedCallTrace<[
|
|
36
36
|
string,
|
|
37
37
|
BigNumber
|
|
38
38
|
], BurnFromCallObject>;
|
|
39
39
|
export interface DecimalsCallObject {
|
|
40
40
|
}
|
|
41
|
-
export
|
|
41
|
+
export type DecimalsCallTrace = TypedCallTrace<[], DecimalsCallObject>;
|
|
42
42
|
export interface DecreaseAllowanceCallObject {
|
|
43
43
|
spender: string;
|
|
44
44
|
subtractedValue: BigNumber;
|
|
45
45
|
}
|
|
46
|
-
export
|
|
46
|
+
export type DecreaseAllowanceCallTrace = TypedCallTrace<[
|
|
47
47
|
string,
|
|
48
48
|
BigNumber
|
|
49
49
|
], DecreaseAllowanceCallObject>;
|
|
@@ -51,38 +51,38 @@ export interface IncreaseAllowanceCallObject {
|
|
|
51
51
|
spender: string;
|
|
52
52
|
addedValue: BigNumber;
|
|
53
53
|
}
|
|
54
|
-
export
|
|
54
|
+
export type IncreaseAllowanceCallTrace = TypedCallTrace<[
|
|
55
55
|
string,
|
|
56
56
|
BigNumber
|
|
57
57
|
], IncreaseAllowanceCallObject>;
|
|
58
58
|
export interface LockerCallObject {
|
|
59
59
|
}
|
|
60
|
-
export
|
|
60
|
+
export type LockerCallTrace = TypedCallTrace<[], LockerCallObject>;
|
|
61
61
|
export interface NameCallObject {
|
|
62
62
|
}
|
|
63
|
-
export
|
|
63
|
+
export type NameCallTrace = TypedCallTrace<[], NameCallObject>;
|
|
64
64
|
export interface OwnerCallObject {
|
|
65
65
|
}
|
|
66
|
-
export
|
|
66
|
+
export type OwnerCallTrace = TypedCallTrace<[], OwnerCallObject>;
|
|
67
67
|
export interface RenounceOwnershipCallObject {
|
|
68
68
|
}
|
|
69
|
-
export
|
|
69
|
+
export type RenounceOwnershipCallTrace = TypedCallTrace<[
|
|
70
70
|
], RenounceOwnershipCallObject>;
|
|
71
71
|
export interface SetLockerCallObject {
|
|
72
72
|
_locker: string;
|
|
73
73
|
}
|
|
74
|
-
export
|
|
74
|
+
export type SetLockerCallTrace = TypedCallTrace<[string], SetLockerCallObject>;
|
|
75
75
|
export interface SymbolCallObject {
|
|
76
76
|
}
|
|
77
|
-
export
|
|
77
|
+
export type SymbolCallTrace = TypedCallTrace<[], SymbolCallObject>;
|
|
78
78
|
export interface TotalSupplyCallObject {
|
|
79
79
|
}
|
|
80
|
-
export
|
|
80
|
+
export type TotalSupplyCallTrace = TypedCallTrace<[], TotalSupplyCallObject>;
|
|
81
81
|
export interface TransferCallObject {
|
|
82
82
|
recipient: string;
|
|
83
83
|
amount: BigNumber;
|
|
84
84
|
}
|
|
85
|
-
export
|
|
85
|
+
export type TransferCallTrace = TypedCallTrace<[
|
|
86
86
|
string,
|
|
87
87
|
BigNumber
|
|
88
88
|
], TransferCallObject>;
|
|
@@ -91,7 +91,7 @@ export interface TransferFromCallObject {
|
|
|
91
91
|
recipient: string;
|
|
92
92
|
amount: BigNumber;
|
|
93
93
|
}
|
|
94
|
-
export
|
|
94
|
+
export type TransferFromCallTrace = TypedCallTrace<[
|
|
95
95
|
string,
|
|
96
96
|
string,
|
|
97
97
|
BigNumber
|
|
@@ -99,7 +99,7 @@ export declare type TransferFromCallTrace = TypedCallTrace<[
|
|
|
99
99
|
export interface TransferOwnershipCallObject {
|
|
100
100
|
newOwner: string;
|
|
101
101
|
}
|
|
102
|
-
export
|
|
102
|
+
export type TransferOwnershipCallTrace = TypedCallTrace<[
|
|
103
103
|
string
|
|
104
104
|
], TransferOwnershipCallObject>;
|
|
105
105
|
export declare class ERC20ContractView extends ContractView<ERC20> {
|
|
@@ -123,7 +123,7 @@ export declare class ERC20BoundContractView extends BoundContractView<ERC20, ERC
|
|
|
123
123
|
symbol(overrides?: CallOverrides): Promise<string>;
|
|
124
124
|
totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
|
|
125
125
|
}
|
|
126
|
-
export
|
|
126
|
+
export type ERC20Context = ContractContext<ERC20, ERC20BoundContractView>;
|
|
127
127
|
export declare class ERC20ProcessorTemplate extends BaseProcessorTemplate<ERC20, ERC20BoundContractView> {
|
|
128
128
|
bindInternal(options: BindOptions): ERC20Processor;
|
|
129
129
|
onEventApproval(handler: (event: ApprovalEvent, ctx: ERC20Context) => void, filter?: ApprovalEventFilter | ApprovalEventFilter[]): this;
|