lynx-client 0.0.3 → 0.0.5
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/dist/cjs/index.js +19 -0
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
- package/dist/cjs/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
- package/dist/cjs/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
- package/dist/cjs/lib/contractsIntegration/deployedContractsConnector.js +45 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
- package/dist/cjs/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1 -1
- package/dist/cjs/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
- package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.js +37 -0
- package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.js +39 -0
- package/dist/cjs/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.js +152 -0
- package/dist/esm/index.d.ts +23 -0
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +19 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.js +91 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/ChipsIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.js +70 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/LiquidityIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.js +2 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.js +99 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/esm/lib/contractsIntegration/TradeIntentsVerifierService/index.js +5 -0
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/esm/lib/contractsIntegration/deployedContractsConnector.js +45 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
- package/dist/esm/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.js +2 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.js +1129 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.js +870 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.js +1561 -0
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.js +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
- package/dist/esm/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.js +1 -1
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts +9 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.js +37 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts +9 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.js +39 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts +13 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/dist/esm/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.js +152 -0
- package/dist/types/index.d.ts +23 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts +29 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/ChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts +24 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/IChipsIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/ChipsIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts +17 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/ILiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts +22 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/LiquidityIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/LiquidityIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts +24 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/ITradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts +29 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/TradeIntentsVerifierService.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts +4 -0
- package/dist/types/lib/contractsIntegration/TradeIntentsVerifierService/index.d.ts.map +1 -0
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts +15 -0
- package/dist/types/lib/contractsIntegration/deployedContractsConnector.d.ts.map +1 -1
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts +643 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts +508 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts +832 -0
- package/dist/types/lib/typechain/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts +866 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/ChipsIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts +670 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/LiquidityIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts +1201 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/IntentsVerifier/TradeIntentsVerifierV1__factory.d.ts.map +1 -0
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts +1 -1
- package/dist/types/lib/typechain/factories/contracts/Lynx/TradingFloor/TradingFloorV1__factory.d.ts.map +1 -1
- package/dist/types/lib/typechain/factories/contracts/Peripheral/Lens/TradingFloorLens__factory.d.ts +1 -1
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts +9 -0
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/chipsIntentsVerifier/chipsIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts +9 -0
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/liquidityIntentsVerifier/liquidityIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts +13 -0
- package/dist/types/lib/typechain/lynxSystem/intentsVerifiers/tradeIntentsVerifier/tradeIntentsVerifierPayloadTypes.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1129 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChipsIntentsVerifierV1__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
const ethers_1 = require("ethers");
|
|
8
|
+
const _abi = [
|
|
9
|
+
{
|
|
10
|
+
inputs: [
|
|
11
|
+
{
|
|
12
|
+
internalType: "contract IRegistryV1",
|
|
13
|
+
name: "_registry",
|
|
14
|
+
type: "address",
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
stateMutability: "nonpayable",
|
|
18
|
+
type: "constructor",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
inputs: [
|
|
22
|
+
{
|
|
23
|
+
internalType: "uint16",
|
|
24
|
+
name: "optionType",
|
|
25
|
+
type: "uint16",
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
name: "InvalidOptionType",
|
|
29
|
+
type: "error",
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
inputs: [
|
|
33
|
+
{
|
|
34
|
+
internalType: "uint8",
|
|
35
|
+
name: "bits",
|
|
36
|
+
type: "uint8",
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
internalType: "uint256",
|
|
40
|
+
name: "value",
|
|
41
|
+
type: "uint256",
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
name: "SafeCastOverflowedUintDowncast",
|
|
45
|
+
type: "error",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
anonymous: false,
|
|
49
|
+
inputs: [
|
|
50
|
+
{
|
|
51
|
+
indexed: true,
|
|
52
|
+
internalType: "address",
|
|
53
|
+
name: "chip",
|
|
54
|
+
type: "address",
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
indexed: false,
|
|
58
|
+
internalType: "uint256",
|
|
59
|
+
name: "fee",
|
|
60
|
+
type: "uint256",
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
name: "ChipOutFeeSet",
|
|
64
|
+
type: "event",
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
anonymous: false,
|
|
68
|
+
inputs: [
|
|
69
|
+
{
|
|
70
|
+
indexed: true,
|
|
71
|
+
internalType: "address",
|
|
72
|
+
name: "sender",
|
|
73
|
+
type: "address",
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
indexed: true,
|
|
77
|
+
internalType: "address",
|
|
78
|
+
name: "chip",
|
|
79
|
+
type: "address",
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
indexed: true,
|
|
83
|
+
internalType: "address",
|
|
84
|
+
name: "holder",
|
|
85
|
+
type: "address",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
indexed: false,
|
|
89
|
+
internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions",
|
|
90
|
+
name: "action",
|
|
91
|
+
type: "uint8",
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
indexed: false,
|
|
95
|
+
internalType: "uint256",
|
|
96
|
+
name: "amount",
|
|
97
|
+
type: "uint256",
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
indexed: false,
|
|
101
|
+
internalType: "uint256",
|
|
102
|
+
name: "fee",
|
|
103
|
+
type: "uint256",
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
name: "ChipsIntentVerified",
|
|
107
|
+
type: "event",
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
anonymous: false,
|
|
111
|
+
inputs: [
|
|
112
|
+
{
|
|
113
|
+
indexed: true,
|
|
114
|
+
internalType: "uint256",
|
|
115
|
+
name: "chainId",
|
|
116
|
+
type: "uint256",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
indexed: false,
|
|
120
|
+
internalType: "bytes32",
|
|
121
|
+
name: "domainSeparator",
|
|
122
|
+
type: "bytes32",
|
|
123
|
+
},
|
|
124
|
+
],
|
|
125
|
+
name: "DomainSeparatorForChainStored",
|
|
126
|
+
type: "event",
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
anonymous: false,
|
|
130
|
+
inputs: [
|
|
131
|
+
{
|
|
132
|
+
indexed: true,
|
|
133
|
+
internalType: "address",
|
|
134
|
+
name: "receiver",
|
|
135
|
+
type: "address",
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
name: "FeesReceiverSet",
|
|
139
|
+
type: "event",
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
anonymous: false,
|
|
143
|
+
inputs: [
|
|
144
|
+
{
|
|
145
|
+
indexed: true,
|
|
146
|
+
internalType: "address",
|
|
147
|
+
name: "chip",
|
|
148
|
+
type: "address",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
indexed: true,
|
|
152
|
+
internalType: "address",
|
|
153
|
+
name: "holder",
|
|
154
|
+
type: "address",
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
indexed: false,
|
|
158
|
+
internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions",
|
|
159
|
+
name: "action",
|
|
160
|
+
type: "uint8",
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
indexed: false,
|
|
164
|
+
internalType: "uint256",
|
|
165
|
+
name: "amount",
|
|
166
|
+
type: "uint256",
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
indexed: false,
|
|
170
|
+
internalType: "uint256",
|
|
171
|
+
name: "fee",
|
|
172
|
+
type: "uint256",
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
name: "ForceChipOut",
|
|
176
|
+
type: "event",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
anonymous: false,
|
|
180
|
+
inputs: [
|
|
181
|
+
{
|
|
182
|
+
indexed: true,
|
|
183
|
+
internalType: "address",
|
|
184
|
+
name: "chip",
|
|
185
|
+
type: "address",
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
indexed: true,
|
|
189
|
+
internalType: "address",
|
|
190
|
+
name: "holder",
|
|
191
|
+
type: "address",
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
indexed: true,
|
|
195
|
+
internalType: "address",
|
|
196
|
+
name: "permissionedAccount",
|
|
197
|
+
type: "address",
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
indexed: false,
|
|
201
|
+
internalType: "enum ChipsIntentsVerifierV1.ChipsIntentsVerifierActions",
|
|
202
|
+
name: "action",
|
|
203
|
+
type: "uint8",
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
indexed: false,
|
|
207
|
+
internalType: "uint256",
|
|
208
|
+
name: "amount",
|
|
209
|
+
type: "uint256",
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
indexed: false,
|
|
213
|
+
internalType: "uint256",
|
|
214
|
+
name: "fee",
|
|
215
|
+
type: "uint256",
|
|
216
|
+
},
|
|
217
|
+
],
|
|
218
|
+
name: "InteractedOnBehalf",
|
|
219
|
+
type: "event",
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
anonymous: false,
|
|
223
|
+
inputs: [
|
|
224
|
+
{
|
|
225
|
+
indexed: true,
|
|
226
|
+
internalType: "uint16",
|
|
227
|
+
name: "evmId",
|
|
228
|
+
type: "uint16",
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
indexed: true,
|
|
232
|
+
internalType: "uint16",
|
|
233
|
+
name: "lzEid",
|
|
234
|
+
type: "uint16",
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
name: "LzEidSet",
|
|
238
|
+
type: "event",
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
anonymous: false,
|
|
242
|
+
inputs: [
|
|
243
|
+
{
|
|
244
|
+
indexed: true,
|
|
245
|
+
internalType: "contract OFT",
|
|
246
|
+
name: "oftChip",
|
|
247
|
+
type: "address",
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
indexed: true,
|
|
251
|
+
internalType: "contract WrappedNativeOftChipInOutHelper",
|
|
252
|
+
name: "helper",
|
|
253
|
+
type: "address",
|
|
254
|
+
},
|
|
255
|
+
],
|
|
256
|
+
name: "NativeChipInOutHelperSet",
|
|
257
|
+
type: "event",
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
anonymous: false,
|
|
261
|
+
inputs: [
|
|
262
|
+
{
|
|
263
|
+
indexed: false,
|
|
264
|
+
internalType: "address",
|
|
265
|
+
name: "oldAdmin",
|
|
266
|
+
type: "address",
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
indexed: false,
|
|
270
|
+
internalType: "address",
|
|
271
|
+
name: "newAdmin",
|
|
272
|
+
type: "address",
|
|
273
|
+
},
|
|
274
|
+
],
|
|
275
|
+
name: "NewAdmin",
|
|
276
|
+
type: "event",
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
anonymous: false,
|
|
280
|
+
inputs: [
|
|
281
|
+
{
|
|
282
|
+
indexed: false,
|
|
283
|
+
internalType: "address",
|
|
284
|
+
name: "oldPendingAdmin",
|
|
285
|
+
type: "address",
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
indexed: false,
|
|
289
|
+
internalType: "address",
|
|
290
|
+
name: "newPendingAdmin",
|
|
291
|
+
type: "address",
|
|
292
|
+
},
|
|
293
|
+
],
|
|
294
|
+
name: "NewPendingAdmin",
|
|
295
|
+
type: "event",
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
anonymous: false,
|
|
299
|
+
inputs: [
|
|
300
|
+
{
|
|
301
|
+
indexed: true,
|
|
302
|
+
internalType: "address",
|
|
303
|
+
name: "asset",
|
|
304
|
+
type: "address",
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
indexed: true,
|
|
308
|
+
internalType: "uint256",
|
|
309
|
+
name: "chainId",
|
|
310
|
+
type: "uint256",
|
|
311
|
+
},
|
|
312
|
+
],
|
|
313
|
+
name: "SourceChainIdForAssetStored",
|
|
314
|
+
type: "event",
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
inputs: [],
|
|
318
|
+
name: "CONTRACT_DOMAIN_NAME",
|
|
319
|
+
outputs: [
|
|
320
|
+
{
|
|
321
|
+
internalType: "string",
|
|
322
|
+
name: "",
|
|
323
|
+
type: "string",
|
|
324
|
+
},
|
|
325
|
+
],
|
|
326
|
+
stateMutability: "view",
|
|
327
|
+
type: "function",
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
inputs: [],
|
|
331
|
+
name: "CONTRACT_DOMAIN_VERSION",
|
|
332
|
+
outputs: [
|
|
333
|
+
{
|
|
334
|
+
internalType: "string",
|
|
335
|
+
name: "",
|
|
336
|
+
type: "string",
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
stateMutability: "view",
|
|
340
|
+
type: "function",
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
inputs: [],
|
|
344
|
+
name: "DYN_ROLE_INTENTS_PERMISSIONS_PREFIX",
|
|
345
|
+
outputs: [
|
|
346
|
+
{
|
|
347
|
+
internalType: "string",
|
|
348
|
+
name: "",
|
|
349
|
+
type: "string",
|
|
350
|
+
},
|
|
351
|
+
],
|
|
352
|
+
stateMutability: "view",
|
|
353
|
+
type: "function",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
inputs: [],
|
|
357
|
+
name: "EIP712DOMAIN_TYPEHASH",
|
|
358
|
+
outputs: [
|
|
359
|
+
{
|
|
360
|
+
internalType: "bytes32",
|
|
361
|
+
name: "",
|
|
362
|
+
type: "bytes32",
|
|
363
|
+
},
|
|
364
|
+
],
|
|
365
|
+
stateMutability: "view",
|
|
366
|
+
type: "function",
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
inputs: [],
|
|
370
|
+
name: "REQUEST_PAYLOAD_CHIP_OUT_LZ_TYPE_DESCRIPTOR",
|
|
371
|
+
outputs: [
|
|
372
|
+
{
|
|
373
|
+
internalType: "string",
|
|
374
|
+
name: "",
|
|
375
|
+
type: "string",
|
|
376
|
+
},
|
|
377
|
+
],
|
|
378
|
+
stateMutability: "view",
|
|
379
|
+
type: "function",
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
inputs: [],
|
|
383
|
+
name: "REQUEST_PAYLOAD_CHIP_OUT_LZ_UNWRAP_TYPE_DESCRIPTOR",
|
|
384
|
+
outputs: [
|
|
385
|
+
{
|
|
386
|
+
internalType: "string",
|
|
387
|
+
name: "",
|
|
388
|
+
type: "string",
|
|
389
|
+
},
|
|
390
|
+
],
|
|
391
|
+
stateMutability: "view",
|
|
392
|
+
type: "function",
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
inputs: [],
|
|
396
|
+
name: "_acceptAdmin",
|
|
397
|
+
outputs: [],
|
|
398
|
+
stateMutability: "nonpayable",
|
|
399
|
+
type: "function",
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
inputs: [],
|
|
403
|
+
name: "_msgSender",
|
|
404
|
+
outputs: [
|
|
405
|
+
{
|
|
406
|
+
internalType: "address",
|
|
407
|
+
name: "",
|
|
408
|
+
type: "address",
|
|
409
|
+
},
|
|
410
|
+
],
|
|
411
|
+
stateMutability: "view",
|
|
412
|
+
type: "function",
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
inputs: [
|
|
416
|
+
{
|
|
417
|
+
internalType: "address",
|
|
418
|
+
name: "newPendingAdmin",
|
|
419
|
+
type: "address",
|
|
420
|
+
},
|
|
421
|
+
],
|
|
422
|
+
name: "_setPendingAdmin",
|
|
423
|
+
outputs: [],
|
|
424
|
+
stateMutability: "nonpayable",
|
|
425
|
+
type: "function",
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
inputs: [],
|
|
429
|
+
name: "admin",
|
|
430
|
+
outputs: [
|
|
431
|
+
{
|
|
432
|
+
internalType: "address",
|
|
433
|
+
name: "",
|
|
434
|
+
type: "address",
|
|
435
|
+
},
|
|
436
|
+
],
|
|
437
|
+
stateMutability: "view",
|
|
438
|
+
type: "function",
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
inputs: [
|
|
442
|
+
{
|
|
443
|
+
internalType: "address",
|
|
444
|
+
name: "",
|
|
445
|
+
type: "address",
|
|
446
|
+
},
|
|
447
|
+
],
|
|
448
|
+
name: "chipOutFeeForChip",
|
|
449
|
+
outputs: [
|
|
450
|
+
{
|
|
451
|
+
internalType: "uint256",
|
|
452
|
+
name: "",
|
|
453
|
+
type: "uint256",
|
|
454
|
+
},
|
|
455
|
+
],
|
|
456
|
+
stateMutability: "view",
|
|
457
|
+
type: "function",
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
inputs: [
|
|
461
|
+
{
|
|
462
|
+
internalType: "address",
|
|
463
|
+
name: "asset",
|
|
464
|
+
type: "address",
|
|
465
|
+
},
|
|
466
|
+
],
|
|
467
|
+
name: "domainSeparatorForAsset",
|
|
468
|
+
outputs: [
|
|
469
|
+
{
|
|
470
|
+
internalType: "bytes32",
|
|
471
|
+
name: "",
|
|
472
|
+
type: "bytes32",
|
|
473
|
+
},
|
|
474
|
+
],
|
|
475
|
+
stateMutability: "view",
|
|
476
|
+
type: "function",
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
inputs: [
|
|
480
|
+
{
|
|
481
|
+
internalType: "uint256",
|
|
482
|
+
name: "",
|
|
483
|
+
type: "uint256",
|
|
484
|
+
},
|
|
485
|
+
],
|
|
486
|
+
name: "domainSeparatorForChain",
|
|
487
|
+
outputs: [
|
|
488
|
+
{
|
|
489
|
+
internalType: "bytes32",
|
|
490
|
+
name: "",
|
|
491
|
+
type: "bytes32",
|
|
492
|
+
},
|
|
493
|
+
],
|
|
494
|
+
stateMutability: "view",
|
|
495
|
+
type: "function",
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
inputs: [
|
|
499
|
+
{
|
|
500
|
+
internalType: "uint16",
|
|
501
|
+
name: "",
|
|
502
|
+
type: "uint16",
|
|
503
|
+
},
|
|
504
|
+
],
|
|
505
|
+
name: "evmIdToLzEid",
|
|
506
|
+
outputs: [
|
|
507
|
+
{
|
|
508
|
+
internalType: "uint16",
|
|
509
|
+
name: "",
|
|
510
|
+
type: "uint16",
|
|
511
|
+
},
|
|
512
|
+
],
|
|
513
|
+
stateMutability: "view",
|
|
514
|
+
type: "function",
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
inputs: [],
|
|
518
|
+
name: "feesReceiver",
|
|
519
|
+
outputs: [
|
|
520
|
+
{
|
|
521
|
+
internalType: "address",
|
|
522
|
+
name: "",
|
|
523
|
+
type: "address",
|
|
524
|
+
},
|
|
525
|
+
],
|
|
526
|
+
stateMutability: "view",
|
|
527
|
+
type: "function",
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
inputs: [
|
|
531
|
+
{
|
|
532
|
+
internalType: "address",
|
|
533
|
+
name: "chip",
|
|
534
|
+
type: "address",
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
internalType: "address",
|
|
538
|
+
name: "holder",
|
|
539
|
+
type: "address",
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
internalType: "uint256",
|
|
543
|
+
name: "amount",
|
|
544
|
+
type: "uint256",
|
|
545
|
+
},
|
|
546
|
+
],
|
|
547
|
+
name: "forceChipOut",
|
|
548
|
+
outputs: [],
|
|
549
|
+
stateMutability: "payable",
|
|
550
|
+
type: "function",
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
inputs: [
|
|
554
|
+
{
|
|
555
|
+
internalType: "address",
|
|
556
|
+
name: "chip",
|
|
557
|
+
type: "address",
|
|
558
|
+
},
|
|
559
|
+
],
|
|
560
|
+
name: "getLZDstChainIdFromChip",
|
|
561
|
+
outputs: [
|
|
562
|
+
{
|
|
563
|
+
internalType: "uint16",
|
|
564
|
+
name: "",
|
|
565
|
+
type: "uint16",
|
|
566
|
+
},
|
|
567
|
+
],
|
|
568
|
+
stateMutability: "view",
|
|
569
|
+
type: "function",
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
inputs: [
|
|
573
|
+
{
|
|
574
|
+
internalType: "uint16",
|
|
575
|
+
name: "evmChainId",
|
|
576
|
+
type: "uint16",
|
|
577
|
+
},
|
|
578
|
+
],
|
|
579
|
+
name: "getLZDstChainIdFromEvmChainId",
|
|
580
|
+
outputs: [
|
|
581
|
+
{
|
|
582
|
+
internalType: "uint16",
|
|
583
|
+
name: "",
|
|
584
|
+
type: "uint16",
|
|
585
|
+
},
|
|
586
|
+
],
|
|
587
|
+
stateMutability: "view",
|
|
588
|
+
type: "function",
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
inputs: [
|
|
592
|
+
{
|
|
593
|
+
internalType: "contract OFT",
|
|
594
|
+
name: "oftChip",
|
|
595
|
+
type: "address",
|
|
596
|
+
},
|
|
597
|
+
],
|
|
598
|
+
name: "getWrapNativeChipInOutHelper",
|
|
599
|
+
outputs: [
|
|
600
|
+
{
|
|
601
|
+
internalType: "contract WrappedNativeOftChipInOutHelper",
|
|
602
|
+
name: "",
|
|
603
|
+
type: "address",
|
|
604
|
+
},
|
|
605
|
+
],
|
|
606
|
+
stateMutability: "view",
|
|
607
|
+
type: "function",
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
inputs: [
|
|
611
|
+
{
|
|
612
|
+
internalType: "contract OFTChip",
|
|
613
|
+
name: "",
|
|
614
|
+
type: "address",
|
|
615
|
+
},
|
|
616
|
+
],
|
|
617
|
+
name: "intentsPermissions",
|
|
618
|
+
outputs: [
|
|
619
|
+
{
|
|
620
|
+
internalType: "string",
|
|
621
|
+
name: "",
|
|
622
|
+
type: "string",
|
|
623
|
+
},
|
|
624
|
+
],
|
|
625
|
+
stateMutability: "view",
|
|
626
|
+
type: "function",
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
inputs: [
|
|
630
|
+
{
|
|
631
|
+
internalType: "address",
|
|
632
|
+
name: "chip",
|
|
633
|
+
type: "address",
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
internalType: "address",
|
|
637
|
+
name: "holder",
|
|
638
|
+
type: "address",
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
internalType: "uint256",
|
|
642
|
+
name: "amount",
|
|
643
|
+
type: "uint256",
|
|
644
|
+
},
|
|
645
|
+
],
|
|
646
|
+
name: "interactOnBehalf_chipOut",
|
|
647
|
+
outputs: [],
|
|
648
|
+
stateMutability: "payable",
|
|
649
|
+
type: "function",
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
inputs: [],
|
|
653
|
+
name: "pendingAdmin",
|
|
654
|
+
outputs: [
|
|
655
|
+
{
|
|
656
|
+
internalType: "address",
|
|
657
|
+
name: "",
|
|
658
|
+
type: "address",
|
|
659
|
+
},
|
|
660
|
+
],
|
|
661
|
+
stateMutability: "view",
|
|
662
|
+
type: "function",
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
inputs: [
|
|
666
|
+
{
|
|
667
|
+
internalType: "bytes32",
|
|
668
|
+
name: "",
|
|
669
|
+
type: "bytes32",
|
|
670
|
+
},
|
|
671
|
+
],
|
|
672
|
+
name: "processedSignatures",
|
|
673
|
+
outputs: [
|
|
674
|
+
{
|
|
675
|
+
internalType: "bool",
|
|
676
|
+
name: "",
|
|
677
|
+
type: "bool",
|
|
678
|
+
},
|
|
679
|
+
],
|
|
680
|
+
stateMutability: "view",
|
|
681
|
+
type: "function",
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
inputs: [
|
|
685
|
+
{
|
|
686
|
+
components: [
|
|
687
|
+
{
|
|
688
|
+
internalType: "uint256",
|
|
689
|
+
name: "timestamp",
|
|
690
|
+
type: "uint256",
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
internalType: "uint256",
|
|
694
|
+
name: "validUntil",
|
|
695
|
+
type: "uint256",
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
internalType: "address",
|
|
699
|
+
name: "chip",
|
|
700
|
+
type: "address",
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
internalType: "address",
|
|
704
|
+
name: "holder",
|
|
705
|
+
type: "address",
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
internalType: "address",
|
|
709
|
+
name: "receiver",
|
|
710
|
+
type: "address",
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
internalType: "uint256",
|
|
714
|
+
name: "amount",
|
|
715
|
+
type: "uint256",
|
|
716
|
+
},
|
|
717
|
+
],
|
|
718
|
+
internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ",
|
|
719
|
+
name: "payload",
|
|
720
|
+
type: "tuple",
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
internalType: "uint8",
|
|
724
|
+
name: "v",
|
|
725
|
+
type: "uint8",
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
internalType: "bytes32",
|
|
729
|
+
name: "r",
|
|
730
|
+
type: "bytes32",
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
internalType: "bytes32",
|
|
734
|
+
name: "s",
|
|
735
|
+
type: "bytes32",
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
internalType: "bytes32",
|
|
739
|
+
name: "domainSeparator",
|
|
740
|
+
type: "bytes32",
|
|
741
|
+
},
|
|
742
|
+
],
|
|
743
|
+
name: "recoverChipOutLZPayloadSigner",
|
|
744
|
+
outputs: [
|
|
745
|
+
{
|
|
746
|
+
internalType: "address",
|
|
747
|
+
name: "",
|
|
748
|
+
type: "address",
|
|
749
|
+
},
|
|
750
|
+
],
|
|
751
|
+
stateMutability: "pure",
|
|
752
|
+
type: "function",
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
inputs: [
|
|
756
|
+
{
|
|
757
|
+
components: [
|
|
758
|
+
{
|
|
759
|
+
internalType: "uint256",
|
|
760
|
+
name: "timestamp",
|
|
761
|
+
type: "uint256",
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
internalType: "uint256",
|
|
765
|
+
name: "validUntil",
|
|
766
|
+
type: "uint256",
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
internalType: "address",
|
|
770
|
+
name: "chip",
|
|
771
|
+
type: "address",
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
internalType: "address",
|
|
775
|
+
name: "holder",
|
|
776
|
+
type: "address",
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
internalType: "address",
|
|
780
|
+
name: "receiver",
|
|
781
|
+
type: "address",
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
internalType: "uint256",
|
|
785
|
+
name: "amount",
|
|
786
|
+
type: "uint256",
|
|
787
|
+
},
|
|
788
|
+
],
|
|
789
|
+
internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_Unwrap",
|
|
790
|
+
name: "payload",
|
|
791
|
+
type: "tuple",
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
internalType: "uint8",
|
|
795
|
+
name: "v",
|
|
796
|
+
type: "uint8",
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
internalType: "bytes32",
|
|
800
|
+
name: "r",
|
|
801
|
+
type: "bytes32",
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
internalType: "bytes32",
|
|
805
|
+
name: "s",
|
|
806
|
+
type: "bytes32",
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
internalType: "bytes32",
|
|
810
|
+
name: "domainSeparator",
|
|
811
|
+
type: "bytes32",
|
|
812
|
+
},
|
|
813
|
+
],
|
|
814
|
+
name: "recoverChipOutLZUnwrapPayloadSigner",
|
|
815
|
+
outputs: [
|
|
816
|
+
{
|
|
817
|
+
internalType: "address",
|
|
818
|
+
name: "",
|
|
819
|
+
type: "address",
|
|
820
|
+
},
|
|
821
|
+
],
|
|
822
|
+
stateMutability: "pure",
|
|
823
|
+
type: "function",
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
inputs: [],
|
|
827
|
+
name: "registry",
|
|
828
|
+
outputs: [
|
|
829
|
+
{
|
|
830
|
+
internalType: "contract IRegistryV1",
|
|
831
|
+
name: "",
|
|
832
|
+
type: "address",
|
|
833
|
+
},
|
|
834
|
+
],
|
|
835
|
+
stateMutability: "view",
|
|
836
|
+
type: "function",
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
inputs: [
|
|
840
|
+
{
|
|
841
|
+
internalType: "address",
|
|
842
|
+
name: "chip",
|
|
843
|
+
type: "address",
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
internalType: "uint256",
|
|
847
|
+
name: "fee",
|
|
848
|
+
type: "uint256",
|
|
849
|
+
},
|
|
850
|
+
],
|
|
851
|
+
name: "setChipOutFee",
|
|
852
|
+
outputs: [],
|
|
853
|
+
stateMutability: "nonpayable",
|
|
854
|
+
type: "function",
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
inputs: [
|
|
858
|
+
{
|
|
859
|
+
internalType: "address",
|
|
860
|
+
name: "receiver",
|
|
861
|
+
type: "address",
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
name: "setFeesReceiver",
|
|
865
|
+
outputs: [],
|
|
866
|
+
stateMutability: "nonpayable",
|
|
867
|
+
type: "function",
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
inputs: [
|
|
871
|
+
{
|
|
872
|
+
internalType: "contract OFTChip",
|
|
873
|
+
name: "oftChip",
|
|
874
|
+
type: "address",
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
internalType: "string",
|
|
878
|
+
name: "dynAddressSuffix",
|
|
879
|
+
type: "string",
|
|
880
|
+
},
|
|
881
|
+
],
|
|
882
|
+
name: "setIntentsPermissions",
|
|
883
|
+
outputs: [],
|
|
884
|
+
stateMutability: "nonpayable",
|
|
885
|
+
type: "function",
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
inputs: [
|
|
889
|
+
{
|
|
890
|
+
internalType: "uint16",
|
|
891
|
+
name: "evmId",
|
|
892
|
+
type: "uint16",
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
internalType: "uint16",
|
|
896
|
+
name: "lzEid",
|
|
897
|
+
type: "uint16",
|
|
898
|
+
},
|
|
899
|
+
],
|
|
900
|
+
name: "setLzEndpointId",
|
|
901
|
+
outputs: [],
|
|
902
|
+
stateMutability: "nonpayable",
|
|
903
|
+
type: "function",
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
inputs: [
|
|
907
|
+
{
|
|
908
|
+
internalType: "contract OFT",
|
|
909
|
+
name: "oftChip",
|
|
910
|
+
type: "address",
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
internalType: "contract WrappedNativeOftChipInOutHelper",
|
|
914
|
+
name: "_wrapNativeChipInOutHelper",
|
|
915
|
+
type: "address",
|
|
916
|
+
},
|
|
917
|
+
],
|
|
918
|
+
name: "setWrapNativeChipInOutHelper",
|
|
919
|
+
outputs: [],
|
|
920
|
+
stateMutability: "nonpayable",
|
|
921
|
+
type: "function",
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
inputs: [
|
|
925
|
+
{
|
|
926
|
+
internalType: "address",
|
|
927
|
+
name: "",
|
|
928
|
+
type: "address",
|
|
929
|
+
},
|
|
930
|
+
],
|
|
931
|
+
name: "sourceChainIdForAsset",
|
|
932
|
+
outputs: [
|
|
933
|
+
{
|
|
934
|
+
internalType: "uint256",
|
|
935
|
+
name: "",
|
|
936
|
+
type: "uint256",
|
|
937
|
+
},
|
|
938
|
+
],
|
|
939
|
+
stateMutability: "view",
|
|
940
|
+
type: "function",
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
inputs: [
|
|
944
|
+
{
|
|
945
|
+
internalType: "address",
|
|
946
|
+
name: "asset",
|
|
947
|
+
type: "address",
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
internalType: "uint256",
|
|
951
|
+
name: "chainId",
|
|
952
|
+
type: "uint256",
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
name: "storeSourceChainForAsset",
|
|
956
|
+
outputs: [],
|
|
957
|
+
stateMutability: "nonpayable",
|
|
958
|
+
type: "function",
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
inputs: [
|
|
962
|
+
{
|
|
963
|
+
components: [
|
|
964
|
+
{
|
|
965
|
+
internalType: "uint256",
|
|
966
|
+
name: "timestamp",
|
|
967
|
+
type: "uint256",
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
internalType: "uint256",
|
|
971
|
+
name: "validUntil",
|
|
972
|
+
type: "uint256",
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
internalType: "address",
|
|
976
|
+
name: "chip",
|
|
977
|
+
type: "address",
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
internalType: "address",
|
|
981
|
+
name: "holder",
|
|
982
|
+
type: "address",
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
internalType: "address",
|
|
986
|
+
name: "receiver",
|
|
987
|
+
type: "address",
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
internalType: "uint256",
|
|
991
|
+
name: "amount",
|
|
992
|
+
type: "uint256",
|
|
993
|
+
},
|
|
994
|
+
],
|
|
995
|
+
internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ",
|
|
996
|
+
name: "payload",
|
|
997
|
+
type: "tuple",
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
internalType: "uint8",
|
|
1001
|
+
name: "v",
|
|
1002
|
+
type: "uint8",
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
internalType: "bytes32",
|
|
1006
|
+
name: "r",
|
|
1007
|
+
type: "bytes32",
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
internalType: "bytes32",
|
|
1011
|
+
name: "s",
|
|
1012
|
+
type: "bytes32",
|
|
1013
|
+
},
|
|
1014
|
+
],
|
|
1015
|
+
name: "verifyIntent_chipOut",
|
|
1016
|
+
outputs: [],
|
|
1017
|
+
stateMutability: "payable",
|
|
1018
|
+
type: "function",
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
inputs: [
|
|
1022
|
+
{
|
|
1023
|
+
components: [
|
|
1024
|
+
{
|
|
1025
|
+
internalType: "uint256",
|
|
1026
|
+
name: "timestamp",
|
|
1027
|
+
type: "uint256",
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
internalType: "uint256",
|
|
1031
|
+
name: "validUntil",
|
|
1032
|
+
type: "uint256",
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
internalType: "address",
|
|
1036
|
+
name: "chip",
|
|
1037
|
+
type: "address",
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
internalType: "address",
|
|
1041
|
+
name: "holder",
|
|
1042
|
+
type: "address",
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
internalType: "address",
|
|
1046
|
+
name: "receiver",
|
|
1047
|
+
type: "address",
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
internalType: "uint256",
|
|
1051
|
+
name: "amount",
|
|
1052
|
+
type: "uint256",
|
|
1053
|
+
},
|
|
1054
|
+
],
|
|
1055
|
+
internalType: "struct ChipsIntentsVerifierV1.HolderRequestPayload_ChipOutLZ_Unwrap",
|
|
1056
|
+
name: "payload",
|
|
1057
|
+
type: "tuple",
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
internalType: "uint8",
|
|
1061
|
+
name: "v",
|
|
1062
|
+
type: "uint8",
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
internalType: "bytes32",
|
|
1066
|
+
name: "r",
|
|
1067
|
+
type: "bytes32",
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
internalType: "bytes32",
|
|
1071
|
+
name: "s",
|
|
1072
|
+
type: "bytes32",
|
|
1073
|
+
},
|
|
1074
|
+
],
|
|
1075
|
+
name: "verifyIntent_chipOutAndUnwrap",
|
|
1076
|
+
outputs: [],
|
|
1077
|
+
stateMutability: "payable",
|
|
1078
|
+
type: "function",
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
inputs: [
|
|
1082
|
+
{
|
|
1083
|
+
internalType: "contract OFT",
|
|
1084
|
+
name: "",
|
|
1085
|
+
type: "address",
|
|
1086
|
+
},
|
|
1087
|
+
],
|
|
1088
|
+
name: "wrapNativeChipInOutHelpers",
|
|
1089
|
+
outputs: [
|
|
1090
|
+
{
|
|
1091
|
+
internalType: "contract WrappedNativeOftChipInOutHelper",
|
|
1092
|
+
name: "",
|
|
1093
|
+
type: "address",
|
|
1094
|
+
},
|
|
1095
|
+
],
|
|
1096
|
+
stateMutability: "view",
|
|
1097
|
+
type: "function",
|
|
1098
|
+
},
|
|
1099
|
+
];
|
|
1100
|
+
const _bytecode = "0x60a06040523480156200001157600080fd5b506040516200345938038062003459833981016040819052620000349162000115565b604080518082018252601681527f436869707320496e74656e747320566572696669657200000000000000000000602080830191909152825180840190935260018352603160f81b90830152600080546001600160a01b031916331790559081816002620000a38382620001ee565b506003620000b28282620001ee565b5050506001600160a01b03831691506200010390505760405162461bcd60e51b815260206004820152600c60248201526b57524f4e475f504152414d5360a01b604482015260640160405180910390fd5b6001600160a01b0316608052620002ba565b6000602082840312156200012857600080fd5b81516001600160a01b03811681146200014057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017257607f821691505b6020821081036200019357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001e9576000816000526020600020601f850160051c81016020861015620001c45750805b601f850160051c820191505b81811015620001e557828155600101620001d0565b5050505b505050565b81516001600160401b038111156200020a576200020a62000147565b62000222816200021b84546200015d565b8462000199565b602080601f8311600181146200025a5760008415620002415750858301515b600019600386901b1c1916600185901b178555620001e5565b600085815260208120601f198616915b828110156200028b578886015182559484019460019091019084016200026a565b5085821015620002aa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161317c620002dd600039600081816104950152611b31015261317c6000f3fe60806040526004361061020f5760003560e01c80639652a4bd11610118578063c49f91d3116100a0578063f18e79511161006f578063f18e79511461069b578063f773abcd146106bb578063f851a440146106fb578063fc4334dd1461071b578063ffac4cc81461073b57600080fd5b8063c49f91d31461061f578063da3032f614610653578063e9c714f214610673578063efe8cc751461068857600080fd5b8063b589f944116100e7578063b589f9441461056e578063b647960e1461059f578063b71d1a0c146105bf578063bca93cf5146105df578063c19152f6146105ff57600080fd5b80639652a4bd146104f05780639d44332714610505578063a009439c14610525578063a823b8491461053857600080fd5b80632f56a0711161019b578063673291341161016a578063673291341461042c5780636d156be4146104415780636fccbffc146104565780637b10399914610483578063825b392c146104b757600080fd5b80632f56a071146103ac578063494b6fc6146103d957806358659d6e146103f95780635ac928b31461041957600080fd5b8063123ae93f116101e2578063123ae93f146102e157806312d99fd11461031457806315c3d0ae1461033657806316e27a7c14610349578063267822471461038c57600080fd5b80630da7fba9146102145780630f2a3d471461023f578063108c66e31461027a578063119df25f146102ba575b600080fd5b34801561022057600080fd5b5061022961075b565b604051610236919061277a565b60405180910390f35b34801561024b57600080fd5b5061026c61025a3660046127a5565b60066020526000908152604090205481565b604051908152602001610236565b34801561028657600080fd5b5061022960405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b81525081565b3480156102c657600080fd5b50335b6040516001600160a01b039091168152602001610236565b3480156102ed57600080fd5b506103016102fc3660046127d9565b6107e9565b60405161ffff9091168152602001610236565b34801561032057600080fd5b5061033461032f3660046127f4565b610808565b005b610334610344366004612843565b610849565b34801561035557600080fd5b5061026c6103643660046127a5565b6001600160a01b03166000908152600660209081526040808320548352600490915290205490565b34801561039857600080fd5b506001546102c9906001600160a01b031681565b3480156103b857600080fd5b5061026c6103c73660046127a5565b60096020526000908152604090205481565b3480156103e557600080fd5b506103346103f4366004612888565b610d3a565b34801561040557600080fd5b506103346104143660046128c1565b610dbb565b610334610427366004612946565b610e0e565b34801561043857600080fd5b50610229610f03565b34801561044d57600080fd5b50610229610f1f565b34801561046257600080fd5b5061026c610471366004612987565b60046020526000908152604090205481565b34801561048f57600080fd5b506102c97f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c357600080fd5b506102c96104d23660046127a5565b6001600160a01b039081166000908152600b60205260409020541690565b3480156104fc57600080fd5b50610229610f3b565b34801561051157600080fd5b506102296105203660046127a5565b610f48565b610334610533366004612946565b610f61565b34801561054457600080fd5b506102c96105533660046127a5565b600b602052600090815260409020546001600160a01b031681565b34801561057a57600080fd5b506103016105893660046127d9565b600a6020526000908152604090205461ffff1681565b3480156105ab57600080fd5b506103346105ba3660046129a0565b6110b3565b3480156105cb57600080fd5b506103346105da3660046127a5565b6111fb565b3480156105eb57600080fd5b506008546102c9906001600160a01b031681565b34801561060b57600080fd5b5061033461061a3660046127f4565b6112a3565b34801561062b57600080fd5b5061026c7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81565b34801561065f57600080fd5b506102c961066e3660046129d3565b611326565b34801561067f57600080fd5b5061033461142c565b610334610696366004612843565b61154a565b3480156106a757600080fd5b506103346106b63660046127a5565b611793565b3480156106c757600080fd5b506106eb6106d6366004612987565b60076020526000908152604090205460ff1681565b6040519015158152602001610236565b34801561070757600080fd5b506000546102c9906001600160a01b031681565b34801561072757600080fd5b506102c96107363660046129d3565b611807565b34801561074757600080fd5b506103016107563660046127a5565b611822565b6002805461076890612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612a24565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b505050505081565b61ffff8082166000908152600a60205260408120549091165b92915050565b6000546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290612a58565b60405180910390fd5b61084582826118a8565b5050565b60008061086461085f60608801604089016127a5565b6119ad565b9150915060006108778787878787611807565b905061088960808801606089016127a5565b6001600160a01b0316816001600160a01b031614806108cc57506108cc6108b66060890160408a016127a5565b6108c660808a0160608b016127a5565b83611a74565b61090c5760405162461bcd60e51b81526020600482015260116024820152702427a62222a92fa727aa2fa9a4a3a722a960791b6044820152606401610832565b61091c60808801606089016127a5565b6001600160a01b031661093560a0890160808a016127a5565b6001600160a01b0316146109815760405162461bcd60e51b81526020600482015260136024820152722427a62222a92fa727aa2fa922a1a2a4ab22a960691b6044820152606401610832565b60008760a00135116109a55760405162461bcd60e51b815260040161083290612a7c565b86602001354211156109ea5760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b6044820152606401610832565b6000600b816109ff60608b0160408c016127a5565b6001600160a01b03908116825260208201929092526040016000205416905080610a755760405162461bcd60e51b815260206004820152602160248201527f4e4f5f575241505f4e41544956455f434849505f494e5f4f55545f48454c50456044820152602960f91b6064820152608401610832565b610a80878787611ca0565b600080610ab2610a9660608c0160408d016127a5565b610aa660808d0160608e016127a5565b8c60a001356000611d61565b915091506000610ad58661ffff9081166000908152600a60205260409020541690565b90508061ffff16600003610b1e5760405162461bcd60e51b815260206004820152601060248201526f2727afa2a4a22fa327a92fa1a420a4a760811b6044820152606401610832565b6000610b6860006175306000610b6062030d406000610b5960408051600360f01b602082015281516002818303018152602290910190915290565b9190611edd565b929190611f3b565b905060006040518060e001604052808461ffff1663ffffffff168152602001610b97886001600160a01b031690565b81526020018681526020018681526020018381526020018e6080016020810190610bc191906127a5565b604080516001600160a01b0390921660208301520160408051808303601f19018152918152908252805160008082526020828101909352919092019190508152509050600060405180604001604052803481526020016000815250905060003390508e6040016020810190610c3691906127a5565b6001600160a01b031663c7c7f5b3348585856040518563ffffffff1660e01b8152600401610c6693929190612ab7565b60c06040518083038185885af1158015610c84573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ca99190612bc2565b50508e6060016020810190610cbe91906127a5565b6001600160a01b03168f6040016020810190610cda91906127a5565b6001600160a01b0316336001600160a01b03167f1079ee01d7b99d196004497f2f8f836ba16c547520f3d51d2abdfda2d8e9189c60028b8b604051610d2193929190612c63565b60405180910390a4505050505050505050505050505050565b6000546001600160a01b03163314610d645760405162461bcd60e51b815260040161083290612a58565b6001600160a01b038281166000818152600b602052604080822080546001600160a01b0319169486169485179055517f4c81ed7d2492f22714ae0835937bbf99257d379cfb6a220bb66551c3f011d24d9190a35050565b6000546001600160a01b03163314610de55760405162461bcd60e51b815260040161083290612a58565b6001600160a01b0383166000908152600560205260409020610e08828483612cdb565b50505050565b600080610e1a856119ad565b909250905033610e2b868683611a74565b610e675760405162461bcd60e51b815260206004820152600d60248201526c2727afa822a926a4a9a9a4a7a760991b6044820152606401610832565b60008411610e875760405162461bcd60e51b815260040161083290612a7c565b84600080610e9a8984808a896001611f7a565b91509150836001600160a01b0316886001600160a01b03168a6001600160a01b03167fdd66fa3092ffc9b32be410c8d63671a98139d1b96d77421ed46bc7ee8db2977f60018686604051610ef093929190612c63565b60405180910390a4505050505050505050565b6040518060c00160405280608781526020016130406087913981565b6040518060a00160405280608081526020016130c76080913981565b6003805461076890612a24565b6005602052600090815260409020805461076890612a24565b6000546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161083290612a58565b6001600160a01b038216610fd15760405162461bcd60e51b815260206004820152600d60248201526c52454345495645525f5a45524f60981b6044820152606401610832565b60008111610ff15760405162461bcd60e51b815260040161083290612a7c565b813b156110355760405162461bcd60e51b81526020600482015260126024820152711213d311115497d254d7d0d3d395149050d560721b6044820152606401610832565b6000611040846119ad565b9150839050600080611056878480888886611f7a565b91509150856001600160a01b0316876001600160a01b03167f88423b880e70edc710bff66a14f9ba383845bf3a03990885371c3b5bcbcf34bb600185856040516110a293929190612c63565b60405180910390a350505050505050565b6000546001600160a01b031633146110dd5760405162461bcd60e51b815260040161083290612a58565b8161ffff1660000361111d5760405162461bcd60e51b81526020600482015260096024820152681393d7d1559357d25160ba1b6044820152606401610832565b8061ffff1660000361115d5760405162461bcd60e51b81526020600482015260096024820152681393d7d31697d1525160ba1b6044820152606401610832565b61ffff8083166000908152600a602052604090205416156111ae5760405162461bcd60e51b815260206004820152600b60248201526a1053149150511657d4d15560aa1b6044820152606401610832565b61ffff8281166000818152600a6020526040808220805461ffff19169486169485179055517f93e63cb13e93e813c5c78bc35ce8bf5ef30c53cde64cb032c03dea5dcc01fefa9190a35050565b6000546001600160a01b031633146112415760405162461bcd60e51b81526020600482015260096024820152682737ba1020b236b4b760b91b6044820152606401610832565b600180546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a991015b60405180910390a15050565b6000546001600160a01b031633146112cd5760405162461bcd60e51b815260040161083290612a58565b6001600160a01b03821660008181526009602052604090819020839055517f6de5833edd8cadb348e5c7f672228839b7b5be533a4ac9635d26fe6c933b94bc9061131a9084815260200190565b60405180910390a25050565b6000808261134161133c368a90038a018a612e31565b6120ed565b60405161190160f01b60208201526022810192909252604282015260620160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156113ca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114215760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b6044820152606401610832565b979650505050505050565b6001546001600160a01b03163314801561145057506001546001600160a01b031615155b61149c5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420746865204558495354494e472070656e64696e672061646d696e00006044820152606401610832565b60008054600180546001600160a01b038082166001600160a01b031980861682179096559490911690915560408051919092168082526020820184905292917ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc910160405180910390a1600154604080516001600160a01b03808516825290921660208301527fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99101611297565b60008061156061085f60608801604089016127a5565b9150915060006115738787878787611326565b905061158560808801606089016127a5565b6001600160a01b0316816001600160a01b031614806115b257506115b26108b66060890160408a016127a5565b6115f25760405162461bcd60e51b81526020600482015260116024820152702427a62222a92fa727aa2fa9a4a3a722a960791b6044820152606401610832565b61160260808801606089016127a5565b6001600160a01b031661161b60a0890160808a016127a5565b6001600160a01b0316146116675760405162461bcd60e51b81526020600482015260136024820152722427a62222a92fa727aa2fa922a1a2a4ab22a960691b6044820152606401610832565b60008760a001351161168b5760405162461bcd60e51b815260040161083290612a7c565b86602001354211156116d05760405162461bcd60e51b815260206004820152600e60248201526d12539511539517d156141254915160921b6044820152606401610832565b6116db868686611ca0565b60008061171e6116f160608b0160408c016127a5565b61170160808c0160608d016127a5565b61171160a08d0160808e016127a5565b8c60a00135886000611f7a565b909250905061173360808a0160608b016127a5565b6001600160a01b031661174c60608b0160408c016127a5565b6001600160a01b0316336001600160a01b03167f1079ee01d7b99d196004497f2f8f836ba16c547520f3d51d2abdfda2d8e9189c60018686604051610ef093929190612c63565b6000546001600160a01b031633146117bd5760405162461bcd60e51b815260040161083290612a58565b600880546001600160a01b0319166001600160a01b0383169081179091556040517ffd2d86a41f334e70107fa88620f07ffb476a68c8cc6a5106a93dd39e0e216d6f90600090a250565b6000808261134161181d368a90038a018a612e31565b61215b565b6001600160a01b03811660009081526006602052604081205480820361188a5760405162461bcd60e51b815260206004820152601860248201527f4e4f5f534f555243455f434841494e5f464f525f4348495000000000000000006044820152606401610832565b61ffff8082166000908152600a6020526040902054165b9392505050565b6001600160a01b0382166000908152600660205260409020541561191c5760405162461bcd60e51b815260206004820152602560248201527f434841494e5f49445f464f525f41535345545f414c52454144595f434f4e464960448201526411d554915160da1b6064820152608401610832565b8060000361195c5760405162461bcd60e51b815260206004820152600d60248201526c434841494e5f49445f5a45524f60981b6044820152606401610832565b611965816121ac565b506001600160a01b038216600081815260066020526040808220849055518392917f8983e01eaf5771a114f1aa7f72a023a35642e048180682aa2fb04db0cbd220c291a35050565b6001600160a01b0381166000908152600660205260408120548190808203611a0f5760405162461bcd60e51b81526020600482015260156024820152741393d7d0d210525397d25117d193d497d054d4d155605a1b6044820152606401610832565b60008181526004602052604090205480611a6b5760405162461bcd60e51b815260206004820152601d60248201527f4e4f5f444f4d41494e5f534550415241544f525f464f525f434841494e0000006044820152606401610832565b94909350915050565b6001600160a01b03831660009081526005602052604081208054829190611a9a90612a24565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac690612a24565b8015611b135780601f10611ae857610100808354040283529160200191611b13565b820191906000526020600020905b815481529060010190602001808311611af657829003601f168201915b505050505090508051600003611b2d5760009150506118a1565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166358ca59ce60405180604001604052806014815260200173494e54454e54535f5045524d495353494f4e535f60601b81525084604051602001611b9d929190612e4d565b6040516020818303038152906040526040518263ffffffff1660e01b8152600401611bc8919061277a565b602060405180830381865afa158015611be5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c099190612e7c565b90506001600160a01b038116611c24576000925050506118a1565b60405163b0cbc2e160e01b81526001600160a01b0382169063b0cbc2e190611c559060039089908990600401612e99565b602060405180830381865afa158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c969190612ecb565b9695505050505050565b6040516001600160f81b031960f885901b166020820152602181018390526041810182905260009060610160408051601f1981840301815291815281516020928301206000818152600790935291205490915060ff1615611d435760405162461bcd60e51b815260206004820152601d60248201527f494e54454e54535f5349475f414c52454144595f50524f4345535345440000006044820152606401610832565b6000908152600760205260409020805460ff19166001179055505050565b6001600160a01b03841660009081526009602052604081205480611db85760405162461bcd60e51b815260206004820152600e60248201526d1393d7d1915157d111519253915160921b6044820152606401610832565b600019811480611dc55750825b15611dce575060005b808411611e1d5760405162461bcd60e51b815260206004820152601860248201527f414d4f554e545f4c4553535f4f525f455155414c5f46454500000000000000006044820152606401610832565b611e28868686612365565b611e3286826123ea565b6000866001600160a01b031663963efcaa6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e969190612eed565b90506000611ea48387612f1c565b9050611eb08183612441565b93506000611ebe8583612f1c565b90508015611ed157611ed1898983612458565b50505094509492505050565b6060836003611eed826000612493565b61ffff1614611f2157611f01816000612493565b604051633a51740d60e01b815261ffff9091166004820152602401610832565b6000611f2d85856124f0565b9050611c9686600183612569565b6060846003611f4b826000612493565b61ffff1614611f5f57611f01816000612493565b6000611f6c8686866125d4565b905061142187600383612569565b600080611f8988888786611d61565b90925090506000611fad8561ffff9081166000908152600a60205260409020541690565b90508061ffff16600003611ff65760405162461bcd60e51b815260206004820152601060248201526f2727afa2a4a22fa327a92fa1a420a4a760811b6044820152606401610832565b606060006040518060e001604052808461ffff1663ffffffff1681526020016120258b6001600160a01b031690565b8152602001868152602001868152602001838152602001838152602001838152509050600060405180604001604052803481526020016000815250905060003390508c6001600160a01b031663c7c7f5b3348585856040518563ffffffff1660e01b815260040161209893929190612ab7565b60c06040518083038185885af11580156120b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120db9190612bc2565b50505050505050965096945050505050565b60006040518060a00160405280608081526020016130c76080913980516020918201208351848301516040808701516060880151608089015160a08a0151935161213e989394929391929101612f2f565b604051602081830303815290604052805190602001209050919050565b60006040518060c00160405280608781526020016130406087913980516020918201208351848301516040808701516060880151608089015160a08a0151935161213e989394929391929101612f2f565b600081815260046020526040812054806108025760006123086040518060800160405280600280546121dd90612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461220990612a24565b80156122565780601f1061222b57610100808354040283529160200191612256565b820191906000526020600020905b81548152906001019060200180831161223957829003601f168201915b505050505081526020016003805461226d90612a24565b80601f016020809104026020016040519081016040528092919081815260200182805461229990612a24565b80156122e65780601f106122bb576101008083540402835291602001916122e6565b820191906000526020600020905b8154815290600101906020018083116122c957829003601f168201915b50505050508152602001868152602001306001600160a01b0316815250612677565b600085815260046020526040908190208290555190915084907f04df087044a5490c34ea0092af5dbdd1a3a35fefd63f0864c1d05dba3075f165906123509084815260200190565b60405180910390a29392505050565b50919050565b80156123e5576040516323b872dd60e01b81526001600160a01b038381166004830152306024830152604482018390528416906323b872dd906064015b6020604051808303816000875af11580156123c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e089190612ecb565b505050565b6008546001600160a01b0316806124365760405162461bcd60e51b815260206004820152601060248201526f2727afa322a2a9afa922a1a2a4ab22a960811b6044820152606401610832565b6123e5838284612458565b60008161244e8185612f6a565b6118a19190612f8c565b80156123e55760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016123a2565b60006124a0826002612fa3565b835110156124e75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b6044820152606401610832565b50016002015190565b60606001600160801b0382161561253857604080516001600160801b0319608086811b8216602084015285901b166030820152016040516020818303038152906040526118a1565b6040516001600160801b0319608085901b166020820152603001604051602081830303815290604052905092915050565b6060836003612579826000612493565b61ffff161461258d57611f01816000612493565b84600161259a85516126f7565b6125a5906001612fb6565b86866040516020016125bb959493929190612fd8565b6040516020818303038152906040529150509392505050565b60606001600160801b03821615612631576040516001600160f01b031960f086901b1660208201526001600160801b0319608085811b8216602284015284901b16603282015260420160405160208183030381529060405261266f565b6040516001600160f01b031960f086901b1660208201526001600160801b0319608085901b1660228201526032016040516020818303038152906040525b949350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8260000151805190602001208360200151805190602001208460400151856060015160405160200161213e9594939291909485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b600061ffff821115612726576040516306dfcc6560e41b81526010600482015260248101839052604401610832565b5090565b60005b8381101561274557818101518382015260200161272d565b50506000910152565b6000815180845261276681602086016020860161272a565b601f01601f19169290920160200192915050565b6020815260006118a1602083018461274e565b6001600160a01b03811681146127a257600080fd5b50565b6000602082840312156127b757600080fd5b81356118a18161278d565b803561ffff811681146127d457600080fd5b919050565b6000602082840312156127eb57600080fd5b6118a1826127c2565b6000806040838503121561280757600080fd5b82356128128161278d565b946020939093013593505050565b600060c0828403121561235f57600080fd5b803560ff811681146127d457600080fd5b600080600080610120858703121561285a57600080fd5b6128648686612820565b935061287260c08601612832565b939693955050505060e082013591610100013590565b6000806040838503121561289b57600080fd5b82356128a68161278d565b915060208301356128b68161278d565b809150509250929050565b6000806000604084860312156128d657600080fd5b83356128e18161278d565b9250602084013567ffffffffffffffff808211156128fe57600080fd5b818601915086601f83011261291257600080fd5b81358181111561292157600080fd5b87602082850101111561293357600080fd5b6020830194508093505050509250925092565b60008060006060848603121561295b57600080fd5b83356129668161278d565b925060208401356129768161278d565b929592945050506040919091013590565b60006020828403121561299957600080fd5b5035919050565b600080604083850312156129b357600080fd5b6129bc836127c2565b91506129ca602084016127c2565b90509250929050565b600080600080600061014086880312156129ec57600080fd5b6129f68787612820565b9450612a0460c08701612832565b949794965050505060e08301359261010081013592610120909101359150565b600181811c90821680612a3857607f821691505b60208210810361235f57634e487b7160e01b600052602260045260246000fd5b6020808252600a908201526927a7262cafa0a226a4a760b11b604082015260600190565b6020808252600b908201526a414d4f554e545f5a45524f60a81b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b6080815263ffffffff8451166080820152602084015160a0820152604084015160c0820152606084015160e08201526000608085015160e0610100840152612b0361016084018261274e565b905060a0860151607f198085840301610120860152612b22838361274e565b925060c08801519150808584030161014086015250612b41828261274e565b92505050612b5c602083018580518252602090810151910152565b6001600160a01b0383166060830152949350505050565b600060408284031215612b8557600080fd5b6040516040810181811067ffffffffffffffff82111715612ba857612ba8612aa1565b604052825181526020928301519281019290925250919050565b60008082840360c0811215612bd657600080fd5b6080811215612be457600080fd5b506040516060810167ffffffffffffffff8282108183111715612c0957612c09612aa1565b8160405285518352602086015191508082168214612c2657600080fd5b506020820152612c398560408601612b73565b604082015291506129ca8460808501612b73565b634e487b7160e01b600052602160045260246000fd5b6060810160038510612c7757612c77612c4d565b938152602081019290925260409091015290565b601f8211156123e5576000816000526020600020601f850160051c81016020861015612cb45750805b601f850160051c820191505b81811015612cd357828155600101612cc0565b505050505050565b67ffffffffffffffff831115612cf357612cf3612aa1565b612d0783612d018354612a24565b83612c8b565b6000601f841160018114612d3b5760008515612d235750838201355b600019600387901b1c1916600186901b178355612d95565b600083815260209020601f19861690835b82811015612d6c5786850135825560209485019460019092019101612d4c565b5086821015612d895760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b600060c08284031215612dae57600080fd5b60405160c0810181811067ffffffffffffffff82111715612dd157612dd1612aa1565b806040525080915082358152602083013560208201526040830135612df58161278d565b60408201526060830135612e088161278d565b60608201526080830135612e1b8161278d565b608082015260a092830135920191909152919050565b600060c08284031215612e4357600080fd5b6118a18383612d9c565b60008351612e5f81846020880161272a565b835190830190612e7381836020880161272a565b01949350505050565b600060208284031215612e8e57600080fd5b81516118a18161278d565b6060810160048510612ead57612ead612c4d565b9381526001600160a01b039283166020820152911660409091015290565b600060208284031215612edd57600080fd5b815180151581146118a157600080fd5b600060208284031215612eff57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561080257610802612f06565b968752602087019590955260408601939093526001600160a01b039182166060860152811660808501521660a083015260c082015260e00190565b600082612f8757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761080257610802612f06565b8082018082111561080257610802612f06565b61ffff818116838216019080821115612fd157612fd1612f06565b5092915050565b60008651612fea818460208b0161272a565b6001600160f81b031960f888811b82169285019283526001600160f01b031960f089901b16600184015286901b166003820152835161303081600484016020880161272a565b0160040197965050505050505056fe486f6c646572526571756573745061796c6f61645f436869704f75744c5a5f556e777261702875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320636869702c6164647265737320686f6c6465722c616464726573732072656365697665722c75696e7432353620616d6f756e7429486f6c646572526571756573745061796c6f61645f436869704f75744c5a2875696e743235362074696d657374616d702c75696e743235362076616c6964556e74696c2c6164647265737320636869702c6164647265737320686f6c6465722c616464726573732072656365697665722c75696e7432353620616d6f756e7429a2646970667358221220f9a44e278017330bb7851e978aaf5646c9974b051e321964cb398b1c77daee5464736f6c63430008180033";
|
|
1101
|
+
const isSuperArgs = (xs) => xs.length > 1;
|
|
1102
|
+
class ChipsIntentsVerifierV1__factory extends ethers_1.ContractFactory {
|
|
1103
|
+
constructor(...args) {
|
|
1104
|
+
if (isSuperArgs(args)) {
|
|
1105
|
+
super(...args);
|
|
1106
|
+
}
|
|
1107
|
+
else {
|
|
1108
|
+
super(_abi, _bytecode, args[0]);
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
getDeployTransaction(_registry, overrides) {
|
|
1112
|
+
return super.getDeployTransaction(_registry, overrides || {});
|
|
1113
|
+
}
|
|
1114
|
+
deploy(_registry, overrides) {
|
|
1115
|
+
return super.deploy(_registry, overrides || {});
|
|
1116
|
+
}
|
|
1117
|
+
connect(runner) {
|
|
1118
|
+
return super.connect(runner);
|
|
1119
|
+
}
|
|
1120
|
+
static createInterface() {
|
|
1121
|
+
return new ethers_1.Interface(_abi);
|
|
1122
|
+
}
|
|
1123
|
+
static connect(address, runner) {
|
|
1124
|
+
return new ethers_1.Contract(address, _abi, runner);
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
1127
|
+
exports.ChipsIntentsVerifierV1__factory = ChipsIntentsVerifierV1__factory;
|
|
1128
|
+
ChipsIntentsVerifierV1__factory.bytecode = _bytecode;
|
|
1129
|
+
ChipsIntentsVerifierV1__factory.abi = _abi;
|