@ercworldio/blockchain-shared 1.0.2-dev.8 → 1.1.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/build/chains/networks_dev.json +65 -17
- package/build/chains/networks_stg-bu.json +2 -1
- package/build/chains/networks_stg-dz.json +5 -2
- package/build/chains/networks_stg-sh.json +534 -0
- package/build/chains/networks_stg-yb.json +435 -0
- package/build/chains/stg-sh.json +93 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +232 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts.map +1 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.js +2 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +21 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts.map +1 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.js +2 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +2 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts.map +1 -0
- package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.js +2 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +290 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts.map +1 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.js +390 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +47 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts.map +1 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.js +71 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +2 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts.map +1 -0
- package/build/contracts/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.js +8 -0
- package/build/interfaces.d.ts +5 -1
- package/build/interfaces.d.ts.map +1 -1
- package/build/interfaces.js +1 -0
- package/build/services/types/chain_manager.d.ts +1 -0
- package/build/services/types/chain_manager.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
|
|
3
|
+
export interface IERC1363Interface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "allowance" | "approve" | "approveAndCall(address,uint256)" | "approveAndCall(address,uint256,bytes)" | "balanceOf" | "supportsInterface" | "totalSupply" | "transfer" | "transferAndCall(address,uint256)" | "transferAndCall(address,uint256,bytes)" | "transferFrom" | "transferFromAndCall(address,address,uint256,bytes)" | "transferFromAndCall(address,address,uint256)"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "Approval" | "Transfer"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "approveAndCall(address,uint256)", values: [AddressLike, BigNumberish]): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "approveAndCall(address,uint256,bytes)", values: [AddressLike, BigNumberish, BytesLike]): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "transferAndCall(address,uint256)", values: [AddressLike, BigNumberish]): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "transferAndCall(address,uint256,bytes)", values: [AddressLike, BigNumberish, BytesLike]): string;
|
|
16
|
+
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
17
|
+
encodeFunctionData(functionFragment: "transferFromAndCall(address,address,uint256,bytes)", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "transferFromAndCall(address,address,uint256)", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
19
|
+
decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
|
|
20
|
+
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
21
|
+
decodeFunctionResult(functionFragment: "approveAndCall(address,uint256)", data: BytesLike): Result;
|
|
22
|
+
decodeFunctionResult(functionFragment: "approveAndCall(address,uint256,bytes)", data: BytesLike): Result;
|
|
23
|
+
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
24
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
25
|
+
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
26
|
+
decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
|
|
27
|
+
decodeFunctionResult(functionFragment: "transferAndCall(address,uint256)", data: BytesLike): Result;
|
|
28
|
+
decodeFunctionResult(functionFragment: "transferAndCall(address,uint256,bytes)", data: BytesLike): Result;
|
|
29
|
+
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
30
|
+
decodeFunctionResult(functionFragment: "transferFromAndCall(address,address,uint256,bytes)", data: BytesLike): Result;
|
|
31
|
+
decodeFunctionResult(functionFragment: "transferFromAndCall(address,address,uint256)", data: BytesLike): Result;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace ApprovalEvent {
|
|
34
|
+
type InputTuple = [
|
|
35
|
+
owner: AddressLike,
|
|
36
|
+
spender: AddressLike,
|
|
37
|
+
value: BigNumberish
|
|
38
|
+
];
|
|
39
|
+
type OutputTuple = [owner: string, spender: string, value: bigint];
|
|
40
|
+
interface OutputObject {
|
|
41
|
+
owner: string;
|
|
42
|
+
spender: string;
|
|
43
|
+
value: bigint;
|
|
44
|
+
}
|
|
45
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
46
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
47
|
+
type Log = TypedEventLog<Event>;
|
|
48
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
49
|
+
}
|
|
50
|
+
export declare namespace TransferEvent {
|
|
51
|
+
type InputTuple = [
|
|
52
|
+
from: AddressLike,
|
|
53
|
+
to: AddressLike,
|
|
54
|
+
value: BigNumberish
|
|
55
|
+
];
|
|
56
|
+
type OutputTuple = [from: string, to: string, value: bigint];
|
|
57
|
+
interface OutputObject {
|
|
58
|
+
from: string;
|
|
59
|
+
to: string;
|
|
60
|
+
value: bigint;
|
|
61
|
+
}
|
|
62
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
63
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
64
|
+
type Log = TypedEventLog<Event>;
|
|
65
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
66
|
+
}
|
|
67
|
+
export interface IERC1363 extends BaseContract {
|
|
68
|
+
connect(runner?: ContractRunner | null): IERC1363;
|
|
69
|
+
waitForDeployment(): Promise<this>;
|
|
70
|
+
interface: IERC1363Interface;
|
|
71
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
72
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
73
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
74
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
75
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
76
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
77
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
78
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
79
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
80
|
+
allowance: TypedContractMethod<[
|
|
81
|
+
owner: AddressLike,
|
|
82
|
+
spender: AddressLike
|
|
83
|
+
], [
|
|
84
|
+
bigint
|
|
85
|
+
], "view">;
|
|
86
|
+
approve: TypedContractMethod<[
|
|
87
|
+
spender: AddressLike,
|
|
88
|
+
value: BigNumberish
|
|
89
|
+
], [
|
|
90
|
+
boolean
|
|
91
|
+
], "nonpayable">;
|
|
92
|
+
"approveAndCall(address,uint256)": TypedContractMethod<[
|
|
93
|
+
spender: AddressLike,
|
|
94
|
+
value: BigNumberish
|
|
95
|
+
], [
|
|
96
|
+
boolean
|
|
97
|
+
], "nonpayable">;
|
|
98
|
+
"approveAndCall(address,uint256,bytes)": TypedContractMethod<[
|
|
99
|
+
spender: AddressLike,
|
|
100
|
+
value: BigNumberish,
|
|
101
|
+
data: BytesLike
|
|
102
|
+
], [
|
|
103
|
+
boolean
|
|
104
|
+
], "nonpayable">;
|
|
105
|
+
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
106
|
+
supportsInterface: TypedContractMethod<[
|
|
107
|
+
interfaceId: BytesLike
|
|
108
|
+
], [
|
|
109
|
+
boolean
|
|
110
|
+
], "view">;
|
|
111
|
+
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
112
|
+
transfer: TypedContractMethod<[
|
|
113
|
+
to: AddressLike,
|
|
114
|
+
value: BigNumberish
|
|
115
|
+
], [
|
|
116
|
+
boolean
|
|
117
|
+
], "nonpayable">;
|
|
118
|
+
"transferAndCall(address,uint256)": TypedContractMethod<[
|
|
119
|
+
to: AddressLike,
|
|
120
|
+
value: BigNumberish
|
|
121
|
+
], [
|
|
122
|
+
boolean
|
|
123
|
+
], "nonpayable">;
|
|
124
|
+
"transferAndCall(address,uint256,bytes)": TypedContractMethod<[
|
|
125
|
+
to: AddressLike,
|
|
126
|
+
value: BigNumberish,
|
|
127
|
+
data: BytesLike
|
|
128
|
+
], [
|
|
129
|
+
boolean
|
|
130
|
+
], "nonpayable">;
|
|
131
|
+
transferFrom: TypedContractMethod<[
|
|
132
|
+
from: AddressLike,
|
|
133
|
+
to: AddressLike,
|
|
134
|
+
value: BigNumberish
|
|
135
|
+
], [
|
|
136
|
+
boolean
|
|
137
|
+
], "nonpayable">;
|
|
138
|
+
"transferFromAndCall(address,address,uint256,bytes)": TypedContractMethod<[
|
|
139
|
+
from: AddressLike,
|
|
140
|
+
to: AddressLike,
|
|
141
|
+
value: BigNumberish,
|
|
142
|
+
data: BytesLike
|
|
143
|
+
], [
|
|
144
|
+
boolean
|
|
145
|
+
], "nonpayable">;
|
|
146
|
+
"transferFromAndCall(address,address,uint256)": TypedContractMethod<[
|
|
147
|
+
from: AddressLike,
|
|
148
|
+
to: AddressLike,
|
|
149
|
+
value: BigNumberish
|
|
150
|
+
], [
|
|
151
|
+
boolean
|
|
152
|
+
], "nonpayable">;
|
|
153
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
154
|
+
getFunction(nameOrSignature: "allowance"): TypedContractMethod<[
|
|
155
|
+
owner: AddressLike,
|
|
156
|
+
spender: AddressLike
|
|
157
|
+
], [
|
|
158
|
+
bigint
|
|
159
|
+
], "view">;
|
|
160
|
+
getFunction(nameOrSignature: "approve"): TypedContractMethod<[
|
|
161
|
+
spender: AddressLike,
|
|
162
|
+
value: BigNumberish
|
|
163
|
+
], [
|
|
164
|
+
boolean
|
|
165
|
+
], "nonpayable">;
|
|
166
|
+
getFunction(nameOrSignature: "approveAndCall(address,uint256)"): TypedContractMethod<[
|
|
167
|
+
spender: AddressLike,
|
|
168
|
+
value: BigNumberish
|
|
169
|
+
], [
|
|
170
|
+
boolean
|
|
171
|
+
], "nonpayable">;
|
|
172
|
+
getFunction(nameOrSignature: "approveAndCall(address,uint256,bytes)"): TypedContractMethod<[
|
|
173
|
+
spender: AddressLike,
|
|
174
|
+
value: BigNumberish,
|
|
175
|
+
data: BytesLike
|
|
176
|
+
], [
|
|
177
|
+
boolean
|
|
178
|
+
], "nonpayable">;
|
|
179
|
+
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
180
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
181
|
+
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
182
|
+
getFunction(nameOrSignature: "transfer"): TypedContractMethod<[
|
|
183
|
+
to: AddressLike,
|
|
184
|
+
value: BigNumberish
|
|
185
|
+
], [
|
|
186
|
+
boolean
|
|
187
|
+
], "nonpayable">;
|
|
188
|
+
getFunction(nameOrSignature: "transferAndCall(address,uint256)"): TypedContractMethod<[
|
|
189
|
+
to: AddressLike,
|
|
190
|
+
value: BigNumberish
|
|
191
|
+
], [
|
|
192
|
+
boolean
|
|
193
|
+
], "nonpayable">;
|
|
194
|
+
getFunction(nameOrSignature: "transferAndCall(address,uint256,bytes)"): TypedContractMethod<[
|
|
195
|
+
to: AddressLike,
|
|
196
|
+
value: BigNumberish,
|
|
197
|
+
data: BytesLike
|
|
198
|
+
], [
|
|
199
|
+
boolean
|
|
200
|
+
], "nonpayable">;
|
|
201
|
+
getFunction(nameOrSignature: "transferFrom"): TypedContractMethod<[
|
|
202
|
+
from: AddressLike,
|
|
203
|
+
to: AddressLike,
|
|
204
|
+
value: BigNumberish
|
|
205
|
+
], [
|
|
206
|
+
boolean
|
|
207
|
+
], "nonpayable">;
|
|
208
|
+
getFunction(nameOrSignature: "transferFromAndCall(address,address,uint256,bytes)"): TypedContractMethod<[
|
|
209
|
+
from: AddressLike,
|
|
210
|
+
to: AddressLike,
|
|
211
|
+
value: BigNumberish,
|
|
212
|
+
data: BytesLike
|
|
213
|
+
], [
|
|
214
|
+
boolean
|
|
215
|
+
], "nonpayable">;
|
|
216
|
+
getFunction(nameOrSignature: "transferFromAndCall(address,address,uint256)"): TypedContractMethod<[
|
|
217
|
+
from: AddressLike,
|
|
218
|
+
to: AddressLike,
|
|
219
|
+
value: BigNumberish
|
|
220
|
+
], [
|
|
221
|
+
boolean
|
|
222
|
+
], "nonpayable">;
|
|
223
|
+
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
224
|
+
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
225
|
+
filters: {
|
|
226
|
+
"Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
227
|
+
Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
228
|
+
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
229
|
+
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
//# sourceMappingURL=IERC1363.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IERC1363.d.ts","sourceRoot":"","sources":["../../../../../../src/contracts/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.ts"],"names":[],"mappings":"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"}
|
package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener } from "../../../../../common";
|
|
3
|
+
export interface SafeERC20Interface extends Interface {
|
|
4
|
+
}
|
|
5
|
+
export interface SafeERC20 extends BaseContract {
|
|
6
|
+
connect(runner?: ContractRunner | null): SafeERC20;
|
|
7
|
+
waitForDeployment(): Promise<this>;
|
|
8
|
+
interface: SafeERC20Interface;
|
|
9
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
10
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
11
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
12
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
13
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
14
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
15
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
16
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
17
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
18
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
19
|
+
filters: {};
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=SafeERC20.d.ts.map
|
package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SafeERC20.d.ts","sourceRoot":"","sources":["../../../../../../../../src/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,EACZ,gBAAgB,EAChB,SAAS,EACT,cAAc,EACd,cAAc,EACd,QAAQ,EACT,MAAM,QAAQ,CAAC;AAChB,OAAO,KAAK,EACV,kBAAkB,EAClB,wBAAwB,EACxB,aAAa,EACb,aAAa,EACd,MAAM,uBAAuB,CAAC;AAE/B,MAAM,WAAW,kBAAmB,SAAQ,SAAS;CAAG;AAExD,MAAM,WAAW,SAAU,SAAQ,YAAY;IAC7C,OAAO,CAAC,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,SAAS,CAAC;IACnD,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnC,SAAS,EAAE,kBAAkB,CAAC;IAE9B,WAAW,CAAC,OAAO,SAAS,kBAAkB,EAC5C,KAAK,EAAE,OAAO,EACd,oBAAoB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,EAClD,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,GACpC,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAC1C,WAAW,CAAC,OAAO,SAAS,kBAAkB,EAC5C,MAAM,EAAE,wBAAwB,CAAC,OAAO,CAAC,EACzC,oBAAoB,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,EAClD,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,GACpC,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAE1C,EAAE,CAAC,OAAO,SAAS,kBAAkB,EACnC,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;IACjB,EAAE,CAAC,OAAO,SAAS,kBAAkB,EACnC,MAAM,EAAE,wBAAwB,CAAC,OAAO,CAAC,EACzC,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB,IAAI,CAAC,OAAO,SAAS,kBAAkB,EACrC,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;IACjB,IAAI,CAAC,OAAO,SAAS,kBAAkB,EACrC,MAAM,EAAE,wBAAwB,CAAC,OAAO,CAAC,EACzC,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB,SAAS,CAAC,OAAO,SAAS,kBAAkB,EAC1C,KAAK,EAAE,OAAO,GACb,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAC1C,SAAS,CAAC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC;IACxD,kBAAkB,CAAC,OAAO,SAAS,kBAAkB,EACnD,KAAK,CAAC,EAAE,OAAO,GACd,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB,WAAW,CAAC,CAAC,SAAS,cAAc,GAAG,cAAc,EACnD,GAAG,EAAE,MAAM,GAAG,gBAAgB,GAC7B,CAAC,CAAC;IAEL,OAAO,EAAE,EAAE,CAAC;CACb"}
|
package/build/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/contracts/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.ts"],"names":[],"mappings":"AAGA,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC1363, IERC1363Interface } from "../../../../@openzeppelin/contracts/interfaces/IERC1363";
|
|
3
|
+
export declare class IERC1363__factory {
|
|
4
|
+
static readonly abi: readonly [{
|
|
5
|
+
readonly anonymous: false;
|
|
6
|
+
readonly inputs: readonly [{
|
|
7
|
+
readonly indexed: true;
|
|
8
|
+
readonly internalType: "address";
|
|
9
|
+
readonly name: "owner";
|
|
10
|
+
readonly type: "address";
|
|
11
|
+
}, {
|
|
12
|
+
readonly indexed: true;
|
|
13
|
+
readonly internalType: "address";
|
|
14
|
+
readonly name: "spender";
|
|
15
|
+
readonly type: "address";
|
|
16
|
+
}, {
|
|
17
|
+
readonly indexed: false;
|
|
18
|
+
readonly internalType: "uint256";
|
|
19
|
+
readonly name: "value";
|
|
20
|
+
readonly type: "uint256";
|
|
21
|
+
}];
|
|
22
|
+
readonly name: "Approval";
|
|
23
|
+
readonly type: "event";
|
|
24
|
+
}, {
|
|
25
|
+
readonly anonymous: false;
|
|
26
|
+
readonly inputs: readonly [{
|
|
27
|
+
readonly indexed: true;
|
|
28
|
+
readonly internalType: "address";
|
|
29
|
+
readonly name: "from";
|
|
30
|
+
readonly type: "address";
|
|
31
|
+
}, {
|
|
32
|
+
readonly indexed: true;
|
|
33
|
+
readonly internalType: "address";
|
|
34
|
+
readonly name: "to";
|
|
35
|
+
readonly type: "address";
|
|
36
|
+
}, {
|
|
37
|
+
readonly indexed: false;
|
|
38
|
+
readonly internalType: "uint256";
|
|
39
|
+
readonly name: "value";
|
|
40
|
+
readonly type: "uint256";
|
|
41
|
+
}];
|
|
42
|
+
readonly name: "Transfer";
|
|
43
|
+
readonly type: "event";
|
|
44
|
+
}, {
|
|
45
|
+
readonly inputs: readonly [{
|
|
46
|
+
readonly internalType: "address";
|
|
47
|
+
readonly name: "owner";
|
|
48
|
+
readonly type: "address";
|
|
49
|
+
}, {
|
|
50
|
+
readonly internalType: "address";
|
|
51
|
+
readonly name: "spender";
|
|
52
|
+
readonly type: "address";
|
|
53
|
+
}];
|
|
54
|
+
readonly name: "allowance";
|
|
55
|
+
readonly outputs: readonly [{
|
|
56
|
+
readonly internalType: "uint256";
|
|
57
|
+
readonly name: "";
|
|
58
|
+
readonly type: "uint256";
|
|
59
|
+
}];
|
|
60
|
+
readonly stateMutability: "view";
|
|
61
|
+
readonly type: "function";
|
|
62
|
+
}, {
|
|
63
|
+
readonly inputs: readonly [{
|
|
64
|
+
readonly internalType: "address";
|
|
65
|
+
readonly name: "spender";
|
|
66
|
+
readonly type: "address";
|
|
67
|
+
}, {
|
|
68
|
+
readonly internalType: "uint256";
|
|
69
|
+
readonly name: "value";
|
|
70
|
+
readonly type: "uint256";
|
|
71
|
+
}];
|
|
72
|
+
readonly name: "approve";
|
|
73
|
+
readonly outputs: readonly [{
|
|
74
|
+
readonly internalType: "bool";
|
|
75
|
+
readonly name: "";
|
|
76
|
+
readonly type: "bool";
|
|
77
|
+
}];
|
|
78
|
+
readonly stateMutability: "nonpayable";
|
|
79
|
+
readonly type: "function";
|
|
80
|
+
}, {
|
|
81
|
+
readonly inputs: readonly [{
|
|
82
|
+
readonly internalType: "address";
|
|
83
|
+
readonly name: "spender";
|
|
84
|
+
readonly type: "address";
|
|
85
|
+
}, {
|
|
86
|
+
readonly internalType: "uint256";
|
|
87
|
+
readonly name: "value";
|
|
88
|
+
readonly type: "uint256";
|
|
89
|
+
}];
|
|
90
|
+
readonly name: "approveAndCall";
|
|
91
|
+
readonly outputs: readonly [{
|
|
92
|
+
readonly internalType: "bool";
|
|
93
|
+
readonly name: "";
|
|
94
|
+
readonly type: "bool";
|
|
95
|
+
}];
|
|
96
|
+
readonly stateMutability: "nonpayable";
|
|
97
|
+
readonly type: "function";
|
|
98
|
+
}, {
|
|
99
|
+
readonly inputs: readonly [{
|
|
100
|
+
readonly internalType: "address";
|
|
101
|
+
readonly name: "spender";
|
|
102
|
+
readonly type: "address";
|
|
103
|
+
}, {
|
|
104
|
+
readonly internalType: "uint256";
|
|
105
|
+
readonly name: "value";
|
|
106
|
+
readonly type: "uint256";
|
|
107
|
+
}, {
|
|
108
|
+
readonly internalType: "bytes";
|
|
109
|
+
readonly name: "data";
|
|
110
|
+
readonly type: "bytes";
|
|
111
|
+
}];
|
|
112
|
+
readonly name: "approveAndCall";
|
|
113
|
+
readonly outputs: readonly [{
|
|
114
|
+
readonly internalType: "bool";
|
|
115
|
+
readonly name: "";
|
|
116
|
+
readonly type: "bool";
|
|
117
|
+
}];
|
|
118
|
+
readonly stateMutability: "nonpayable";
|
|
119
|
+
readonly type: "function";
|
|
120
|
+
}, {
|
|
121
|
+
readonly inputs: readonly [{
|
|
122
|
+
readonly internalType: "address";
|
|
123
|
+
readonly name: "account";
|
|
124
|
+
readonly type: "address";
|
|
125
|
+
}];
|
|
126
|
+
readonly name: "balanceOf";
|
|
127
|
+
readonly outputs: readonly [{
|
|
128
|
+
readonly internalType: "uint256";
|
|
129
|
+
readonly name: "";
|
|
130
|
+
readonly type: "uint256";
|
|
131
|
+
}];
|
|
132
|
+
readonly stateMutability: "view";
|
|
133
|
+
readonly type: "function";
|
|
134
|
+
}, {
|
|
135
|
+
readonly inputs: readonly [{
|
|
136
|
+
readonly internalType: "bytes4";
|
|
137
|
+
readonly name: "interfaceId";
|
|
138
|
+
readonly type: "bytes4";
|
|
139
|
+
}];
|
|
140
|
+
readonly name: "supportsInterface";
|
|
141
|
+
readonly outputs: readonly [{
|
|
142
|
+
readonly internalType: "bool";
|
|
143
|
+
readonly name: "";
|
|
144
|
+
readonly type: "bool";
|
|
145
|
+
}];
|
|
146
|
+
readonly stateMutability: "view";
|
|
147
|
+
readonly type: "function";
|
|
148
|
+
}, {
|
|
149
|
+
readonly inputs: readonly [];
|
|
150
|
+
readonly name: "totalSupply";
|
|
151
|
+
readonly outputs: readonly [{
|
|
152
|
+
readonly internalType: "uint256";
|
|
153
|
+
readonly name: "";
|
|
154
|
+
readonly type: "uint256";
|
|
155
|
+
}];
|
|
156
|
+
readonly stateMutability: "view";
|
|
157
|
+
readonly type: "function";
|
|
158
|
+
}, {
|
|
159
|
+
readonly inputs: readonly [{
|
|
160
|
+
readonly internalType: "address";
|
|
161
|
+
readonly name: "to";
|
|
162
|
+
readonly type: "address";
|
|
163
|
+
}, {
|
|
164
|
+
readonly internalType: "uint256";
|
|
165
|
+
readonly name: "value";
|
|
166
|
+
readonly type: "uint256";
|
|
167
|
+
}];
|
|
168
|
+
readonly name: "transfer";
|
|
169
|
+
readonly outputs: readonly [{
|
|
170
|
+
readonly internalType: "bool";
|
|
171
|
+
readonly name: "";
|
|
172
|
+
readonly type: "bool";
|
|
173
|
+
}];
|
|
174
|
+
readonly stateMutability: "nonpayable";
|
|
175
|
+
readonly type: "function";
|
|
176
|
+
}, {
|
|
177
|
+
readonly inputs: readonly [{
|
|
178
|
+
readonly internalType: "address";
|
|
179
|
+
readonly name: "to";
|
|
180
|
+
readonly type: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly internalType: "uint256";
|
|
183
|
+
readonly name: "value";
|
|
184
|
+
readonly type: "uint256";
|
|
185
|
+
}];
|
|
186
|
+
readonly name: "transferAndCall";
|
|
187
|
+
readonly outputs: readonly [{
|
|
188
|
+
readonly internalType: "bool";
|
|
189
|
+
readonly name: "";
|
|
190
|
+
readonly type: "bool";
|
|
191
|
+
}];
|
|
192
|
+
readonly stateMutability: "nonpayable";
|
|
193
|
+
readonly type: "function";
|
|
194
|
+
}, {
|
|
195
|
+
readonly inputs: readonly [{
|
|
196
|
+
readonly internalType: "address";
|
|
197
|
+
readonly name: "to";
|
|
198
|
+
readonly type: "address";
|
|
199
|
+
}, {
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
readonly name: "value";
|
|
202
|
+
readonly type: "uint256";
|
|
203
|
+
}, {
|
|
204
|
+
readonly internalType: "bytes";
|
|
205
|
+
readonly name: "data";
|
|
206
|
+
readonly type: "bytes";
|
|
207
|
+
}];
|
|
208
|
+
readonly name: "transferAndCall";
|
|
209
|
+
readonly outputs: readonly [{
|
|
210
|
+
readonly internalType: "bool";
|
|
211
|
+
readonly name: "";
|
|
212
|
+
readonly type: "bool";
|
|
213
|
+
}];
|
|
214
|
+
readonly stateMutability: "nonpayable";
|
|
215
|
+
readonly type: "function";
|
|
216
|
+
}, {
|
|
217
|
+
readonly inputs: readonly [{
|
|
218
|
+
readonly internalType: "address";
|
|
219
|
+
readonly name: "from";
|
|
220
|
+
readonly type: "address";
|
|
221
|
+
}, {
|
|
222
|
+
readonly internalType: "address";
|
|
223
|
+
readonly name: "to";
|
|
224
|
+
readonly type: "address";
|
|
225
|
+
}, {
|
|
226
|
+
readonly internalType: "uint256";
|
|
227
|
+
readonly name: "value";
|
|
228
|
+
readonly type: "uint256";
|
|
229
|
+
}];
|
|
230
|
+
readonly name: "transferFrom";
|
|
231
|
+
readonly outputs: readonly [{
|
|
232
|
+
readonly internalType: "bool";
|
|
233
|
+
readonly name: "";
|
|
234
|
+
readonly type: "bool";
|
|
235
|
+
}];
|
|
236
|
+
readonly stateMutability: "nonpayable";
|
|
237
|
+
readonly type: "function";
|
|
238
|
+
}, {
|
|
239
|
+
readonly inputs: readonly [{
|
|
240
|
+
readonly internalType: "address";
|
|
241
|
+
readonly name: "from";
|
|
242
|
+
readonly type: "address";
|
|
243
|
+
}, {
|
|
244
|
+
readonly internalType: "address";
|
|
245
|
+
readonly name: "to";
|
|
246
|
+
readonly type: "address";
|
|
247
|
+
}, {
|
|
248
|
+
readonly internalType: "uint256";
|
|
249
|
+
readonly name: "value";
|
|
250
|
+
readonly type: "uint256";
|
|
251
|
+
}, {
|
|
252
|
+
readonly internalType: "bytes";
|
|
253
|
+
readonly name: "data";
|
|
254
|
+
readonly type: "bytes";
|
|
255
|
+
}];
|
|
256
|
+
readonly name: "transferFromAndCall";
|
|
257
|
+
readonly outputs: readonly [{
|
|
258
|
+
readonly internalType: "bool";
|
|
259
|
+
readonly name: "";
|
|
260
|
+
readonly type: "bool";
|
|
261
|
+
}];
|
|
262
|
+
readonly stateMutability: "nonpayable";
|
|
263
|
+
readonly type: "function";
|
|
264
|
+
}, {
|
|
265
|
+
readonly inputs: readonly [{
|
|
266
|
+
readonly internalType: "address";
|
|
267
|
+
readonly name: "from";
|
|
268
|
+
readonly type: "address";
|
|
269
|
+
}, {
|
|
270
|
+
readonly internalType: "address";
|
|
271
|
+
readonly name: "to";
|
|
272
|
+
readonly type: "address";
|
|
273
|
+
}, {
|
|
274
|
+
readonly internalType: "uint256";
|
|
275
|
+
readonly name: "value";
|
|
276
|
+
readonly type: "uint256";
|
|
277
|
+
}];
|
|
278
|
+
readonly name: "transferFromAndCall";
|
|
279
|
+
readonly outputs: readonly [{
|
|
280
|
+
readonly internalType: "bool";
|
|
281
|
+
readonly name: "";
|
|
282
|
+
readonly type: "bool";
|
|
283
|
+
}];
|
|
284
|
+
readonly stateMutability: "nonpayable";
|
|
285
|
+
readonly type: "function";
|
|
286
|
+
}];
|
|
287
|
+
static createInterface(): IERC1363Interface;
|
|
288
|
+
static connect(address: string, runner?: ContractRunner | null): IERC1363;
|
|
289
|
+
}
|
|
290
|
+
//# sourceMappingURL=IERC1363__factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IERC1363__factory.d.ts","sourceRoot":"","sources":["../../../../../../../src/contracts/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAClE,OAAO,KAAK,EACV,QAAQ,EACR,iBAAiB,EAClB,MAAM,yDAAyD,CAAC;AAwXjE,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iBAAiB;IAG3C,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,cAAc,GAAG,IAAI,GAAG,QAAQ;CAG1E"}
|