@wormhole-foundation/sdk-base 0.1.8-beta.10 → 0.1.8-beta.11
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/constants/contracts/index.d.ts +185 -0
- package/dist/cjs/constants/contracts/index.d.ts.map +1 -1
- package/dist/cjs/constants/contracts/index.js +3 -1
- package/dist/cjs/constants/contracts/index.js.map +1 -1
- package/dist/cjs/constants/contracts/rollupCheckpoint.d.ts +2 -0
- package/dist/cjs/constants/contracts/rollupCheckpoint.d.ts.map +1 -0
- package/dist/cjs/constants/contracts/rollupCheckpoint.js +25 -0
- package/dist/cjs/constants/contracts/rollupCheckpoint.js.map +1 -0
- package/dist/cjs/constants/finality.d.ts +74 -611
- package/dist/cjs/constants/finality.d.ts.map +1 -1
- package/dist/cjs/constants/finality.js +71 -24
- package/dist/cjs/constants/finality.js.map +1 -1
- package/dist/cjs/constants/platforms.d.ts +38 -0
- package/dist/cjs/constants/platforms.d.ts.map +1 -1
- package/dist/cjs/constants/platforms.js +12 -1
- package/dist/cjs/constants/platforms.js.map +1 -1
- package/dist/cjs/utils/encoding.d.ts +3 -0
- package/dist/cjs/utils/encoding.d.ts.map +1 -1
- package/dist/cjs/utils/encoding.js +16 -1
- package/dist/cjs/utils/encoding.js.map +1 -1
- package/dist/cjs/utils/misc.d.ts +2 -0
- package/dist/cjs/utils/misc.d.ts.map +1 -1
- package/dist/cjs/utils/misc.js +21 -1
- package/dist/cjs/utils/misc.js.map +1 -1
- package/dist/esm/constants/contracts/index.d.ts +185 -0
- package/dist/esm/constants/contracts/index.d.ts.map +1 -1
- package/dist/esm/constants/contracts/index.js +2 -0
- package/dist/esm/constants/contracts/index.js.map +1 -1
- package/dist/esm/constants/contracts/rollupCheckpoint.d.ts +2 -0
- package/dist/esm/constants/contracts/rollupCheckpoint.d.ts.map +1 -0
- package/dist/esm/constants/contracts/rollupCheckpoint.js +22 -0
- package/dist/esm/constants/contracts/rollupCheckpoint.js.map +1 -0
- package/dist/esm/constants/finality.d.ts +74 -611
- package/dist/esm/constants/finality.d.ts.map +1 -1
- package/dist/esm/constants/finality.js +69 -23
- package/dist/esm/constants/finality.js.map +1 -1
- package/dist/esm/constants/platforms.d.ts +38 -0
- package/dist/esm/constants/platforms.d.ts.map +1 -1
- package/dist/esm/constants/platforms.js +11 -0
- package/dist/esm/constants/platforms.js.map +1 -1
- package/dist/esm/utils/encoding.d.ts +3 -0
- package/dist/esm/utils/encoding.d.ts.map +1 -1
- package/dist/esm/utils/encoding.js +12 -0
- package/dist/esm/utils/encoding.js.map +1 -1
- package/dist/esm/utils/misc.d.ts +2 -0
- package/dist/esm/utils/misc.d.ts.map +1 -1
- package/dist/esm/utils/misc.js +18 -0
- package/dist/esm/utils/misc.js.map +1 -1
- package/package.json +1 -1
- package/src/constants/contracts/index.ts +2 -0
- package/src/constants/contracts/rollupCheckpoint.ts +27 -0
- package/src/constants/finality.ts +78 -28
- package/src/constants/platforms.ts +14 -0
- package/src/utils/encoding.ts +16 -0
- package/src/utils/misc.ts +19 -0
|
@@ -4158,6 +4158,191 @@ export declare const translator: (<K1 extends "Mainnet" | "Testnet", K2 extends
|
|
|
4158
4158
|
get: (args_0: string, args_1: string) => "" | "sei1dkdwdvknx0qav5cp5kw68mkn3r99m3svkyjfvkztwh97dv2lm0ksj6xrak";
|
|
4159
4159
|
has: (args_0: string, args_1: string) => boolean;
|
|
4160
4160
|
};
|
|
4161
|
+
export declare const rollupContracts: (<K1 extends "Mainnet" | "Testnet", K2 extends keyof ((K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1) extends "Mainnet" | "Testnet" ? {
|
|
4162
|
+
readonly Mainnet: {
|
|
4163
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4164
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4165
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4166
|
+
};
|
|
4167
|
+
readonly Testnet: {
|
|
4168
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4169
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4170
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4171
|
+
};
|
|
4172
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] extends {
|
|
4173
|
+
[key: string]: unknown;
|
|
4174
|
+
[key: number]: unknown;
|
|
4175
|
+
[key: symbol]: unknown;
|
|
4176
|
+
} ? {
|
|
4177
|
+
readonly Mainnet: {
|
|
4178
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4179
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4180
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4181
|
+
};
|
|
4182
|
+
readonly Testnet: {
|
|
4183
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4184
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4185
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4186
|
+
};
|
|
4187
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] : {
|
|
4188
|
+
readonly Mainnet: {
|
|
4189
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4190
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4191
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4192
|
+
};
|
|
4193
|
+
readonly Testnet: {
|
|
4194
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4195
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4196
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4197
|
+
};
|
|
4198
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] : never) extends infer T ? T extends keyof ((K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1) extends "Mainnet" | "Testnet" ? {
|
|
4199
|
+
readonly Mainnet: {
|
|
4200
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4201
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4202
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4203
|
+
};
|
|
4204
|
+
readonly Testnet: {
|
|
4205
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4206
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4207
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4208
|
+
};
|
|
4209
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] extends {
|
|
4210
|
+
[key: string]: unknown;
|
|
4211
|
+
[key: number]: unknown;
|
|
4212
|
+
[key: symbol]: unknown;
|
|
4213
|
+
} ? {
|
|
4214
|
+
readonly Mainnet: {
|
|
4215
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4216
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4217
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4218
|
+
};
|
|
4219
|
+
readonly Testnet: {
|
|
4220
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4221
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4222
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4223
|
+
};
|
|
4224
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] : {
|
|
4225
|
+
readonly Mainnet: {
|
|
4226
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4227
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4228
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4229
|
+
};
|
|
4230
|
+
readonly Testnet: {
|
|
4231
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4232
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4233
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4234
|
+
};
|
|
4235
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] : never) ? T extends `bigint(${infer V extends bigint})` ? V : T extends `boolean(${infer V_1 extends boolean})` ? V_1 : T : never : never>(args_0: K1, args_1: K2) => (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1) extends "Mainnet" | "Testnet" ? {
|
|
4236
|
+
readonly Mainnet: {
|
|
4237
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4238
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4239
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4240
|
+
};
|
|
4241
|
+
readonly Testnet: {
|
|
4242
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4243
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4244
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4245
|
+
};
|
|
4246
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] extends {
|
|
4247
|
+
[key: string]: unknown;
|
|
4248
|
+
[key: number]: unknown;
|
|
4249
|
+
[key: symbol]: unknown;
|
|
4250
|
+
} ? (K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2) extends keyof {
|
|
4251
|
+
readonly Mainnet: {
|
|
4252
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4253
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4254
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4255
|
+
};
|
|
4256
|
+
readonly Testnet: {
|
|
4257
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4258
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4259
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4260
|
+
};
|
|
4261
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] ? {
|
|
4262
|
+
readonly Mainnet: {
|
|
4263
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4264
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4265
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4266
|
+
};
|
|
4267
|
+
readonly Testnet: {
|
|
4268
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4269
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4270
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4271
|
+
};
|
|
4272
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)][keyof {
|
|
4273
|
+
readonly Mainnet: {
|
|
4274
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4275
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4276
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4277
|
+
};
|
|
4278
|
+
readonly Testnet: {
|
|
4279
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4280
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4281
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4282
|
+
};
|
|
4283
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] & (K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2)] extends {
|
|
4284
|
+
[key: string]: unknown;
|
|
4285
|
+
[key: number]: unknown;
|
|
4286
|
+
[key: symbol]: unknown;
|
|
4287
|
+
} ? {
|
|
4288
|
+
readonly Mainnet: {
|
|
4289
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4290
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4291
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4292
|
+
};
|
|
4293
|
+
readonly Testnet: {
|
|
4294
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4295
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4296
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4297
|
+
};
|
|
4298
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)][keyof {
|
|
4299
|
+
readonly Mainnet: {
|
|
4300
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4301
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4302
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4303
|
+
};
|
|
4304
|
+
readonly Testnet: {
|
|
4305
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4306
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4307
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4308
|
+
};
|
|
4309
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] & (K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2)] : {
|
|
4310
|
+
readonly Mainnet: {
|
|
4311
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4312
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4313
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4314
|
+
};
|
|
4315
|
+
readonly Testnet: {
|
|
4316
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4317
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4318
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4319
|
+
};
|
|
4320
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)][keyof {
|
|
4321
|
+
readonly Mainnet: {
|
|
4322
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4323
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4324
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4325
|
+
};
|
|
4326
|
+
readonly Testnet: {
|
|
4327
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4328
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4329
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4330
|
+
};
|
|
4331
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] & (K2 extends bigint ? `bigint(${K2})` : K2 extends boolean ? `boolean(${K2})` : K2)] : never : {
|
|
4332
|
+
readonly Mainnet: {
|
|
4333
|
+
readonly Polygon: readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"];
|
|
4334
|
+
readonly Optimism: readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"];
|
|
4335
|
+
readonly Arbitrum: readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"];
|
|
4336
|
+
};
|
|
4337
|
+
readonly Testnet: {
|
|
4338
|
+
readonly Polygon: readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"];
|
|
4339
|
+
readonly Optimism: readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"];
|
|
4340
|
+
readonly Arbitrum: readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4341
|
+
};
|
|
4342
|
+
}[("Mainnet" | "Testnet") & (K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1)] : never) & {
|
|
4343
|
+
get: (args_0: string, args_1: string) => readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"] | readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"] | readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"] | readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"] | readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"] | readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"];
|
|
4344
|
+
has: (args_0: string, args_1: string) => boolean;
|
|
4345
|
+
};
|
|
4161
4346
|
export { CircleContracts } from "./circle";
|
|
4162
4347
|
export declare const circleContracts: (<K1 extends "Mainnet" | "Testnet", K2 extends keyof ((K1 extends bigint ? `bigint(${K1})` : K1 extends boolean ? `boolean(${K1})` : K1) extends "Mainnet" | "Testnet" ? {
|
|
4163
4348
|
readonly Mainnet: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/contracts/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/contracts/index.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAqC,CAAC;AAC7D,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoC,CAAC;AAC7D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAC;AAC5E,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AACzD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+B,CAAC;AACpD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+B,CAAC;AACpD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAC;AAC1D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA2C,CAAC;AAExE,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAC3C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAC"}
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.circleContracts = exports.translator = exports.gateway = exports.relayer = exports.nftBridge = exports.tokenBridgeRelayer = exports.tokenBridge = exports.coreBridge = void 0;
|
|
26
|
+
exports.circleContracts = exports.rollupContracts = exports.translator = exports.gateway = exports.relayer = exports.nftBridge = exports.tokenBridgeRelayer = exports.tokenBridge = exports.coreBridge = void 0;
|
|
27
27
|
const core = __importStar(require("./core"));
|
|
28
28
|
const tb = __importStar(require("./tokenBridge"));
|
|
29
29
|
const tbr = __importStar(require("./tokenBridgeRelayer"));
|
|
@@ -31,6 +31,7 @@ const nb = __importStar(require("./nftBridge"));
|
|
|
31
31
|
const r = __importStar(require("./relayer"));
|
|
32
32
|
const circle = __importStar(require("./circle"));
|
|
33
33
|
const g = __importStar(require("./cosmos"));
|
|
34
|
+
const rollup = __importStar(require("./rollupCheckpoint"));
|
|
34
35
|
const utils_1 = require("../../utils");
|
|
35
36
|
exports.coreBridge = (0, utils_1.constMap)(core.coreBridgeContracts);
|
|
36
37
|
exports.tokenBridge = (0, utils_1.constMap)(tb.tokenBridgeContracts);
|
|
@@ -39,5 +40,6 @@ exports.nftBridge = (0, utils_1.constMap)(nb.nftBridgeContracts);
|
|
|
39
40
|
exports.relayer = (0, utils_1.constMap)(r.relayerContracts);
|
|
40
41
|
exports.gateway = (0, utils_1.constMap)(g.gatewayContracts);
|
|
41
42
|
exports.translator = (0, utils_1.constMap)(g.translatorContracts);
|
|
43
|
+
exports.rollupContracts = (0, utils_1.constMap)(rollup.rollupContractAddresses);
|
|
42
44
|
exports.circleContracts = (0, utils_1.constMap)(circle.circleContracts);
|
|
43
45
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/constants/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA+B;AAC/B,kDAAoC;AACpC,0DAA4C;AAC5C,gDAAkC;AAClC,6CAA+B;AAC/B,iDAAmC;AACnC,4CAA8B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/constants/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA+B;AAC/B,kDAAoC;AACpC,0DAA4C;AAC5C,gDAAkC;AAClC,6CAA+B;AAC/B,iDAAmC;AACnC,4CAA8B;AAC9B,2DAA6C;AAE7C,uCAAuC;AAE1B,QAAA,UAAU,GAAG,IAAA,gBAAQ,EAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;AAChD,QAAA,WAAW,GAAG,IAAA,gBAAQ,EAAC,EAAE,CAAC,oBAAoB,CAAC,CAAC;AAChD,QAAA,kBAAkB,GAAG,IAAA,gBAAQ,EAAC,GAAG,CAAC,2BAA2B,CAAC,CAAC;AAC/D,QAAA,SAAS,GAAG,IAAA,gBAAQ,EAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;AAC5C,QAAA,OAAO,GAAG,IAAA,gBAAQ,EAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACvC,QAAA,OAAO,GAAG,IAAA,gBAAQ,EAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC;AACvC,QAAA,UAAU,GAAG,IAAA,gBAAQ,EAAC,CAAC,CAAC,mBAAmB,CAAC,CAAC;AAC7C,QAAA,eAAe,GAAG,IAAA,gBAAQ,EAAC,MAAM,CAAC,uBAAuB,CAAC,CAAC;AAG3D,QAAA,eAAe,GAAG,IAAA,gBAAQ,EAAC,MAAM,CAAC,eAAe,CAAC,CAAC"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const rollupContractAddresses: readonly [readonly ["Mainnet", readonly [readonly ["Polygon", readonly ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"]], readonly ["Optimism", readonly ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"]], readonly ["Arbitrum", readonly ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"]]]], readonly ["Testnet", readonly [readonly ["Polygon", readonly ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"]], readonly ["Optimism", readonly ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"]], readonly ["Arbitrum", readonly ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"]]]]];
|
|
2
|
+
//# sourceMappingURL=rollupCheckpoint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rollupCheckpoint.d.ts","sourceRoot":"","sources":["../../../../src/constants/contracts/rollupCheckpoint.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,uBAAuB,mnBAmBnC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.rollupContractAddresses = void 0;
|
|
4
|
+
// Some chains are required to post proof of their blocks to other chains
|
|
5
|
+
// and the transaction containing that proof must be finalized
|
|
6
|
+
// before a transaction contained in one of those blocks is considered final
|
|
7
|
+
exports.rollupContractAddresses = [
|
|
8
|
+
[
|
|
9
|
+
"Mainnet",
|
|
10
|
+
[
|
|
11
|
+
["Polygon", ["Ethereum", "0x86E4Dc95c7FBdBf52e33D563BbDB00823894C287"]],
|
|
12
|
+
["Optimism", ["Ethereum", "0xdfe97868233d1aa22e815a266982f2cf17685a27"]],
|
|
13
|
+
["Arbitrum", ["Ethereum", "0x1c479675ad559dc151f6ec7ed3fbf8cee79582b6"]],
|
|
14
|
+
],
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"Testnet",
|
|
18
|
+
[
|
|
19
|
+
["Polygon", ["Ethereum", "0x2890ba17efe978480615e330ecb65333b880928e"]],
|
|
20
|
+
["Optimism", ["Ethereum", "0xe6dfba0953616bacab0c9a8ecb3a9bba77fc15c0"]],
|
|
21
|
+
["Arbitrum", ["Ethereum", "0x45af9ed1d03703e480ce7d328fb684bb67da5049"]], // TODO double check
|
|
22
|
+
],
|
|
23
|
+
],
|
|
24
|
+
];
|
|
25
|
+
//# sourceMappingURL=rollupCheckpoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rollupCheckpoint.js","sourceRoot":"","sources":["../../../../src/constants/contracts/rollupCheckpoint.ts"],"names":[],"mappings":";;;AAIA,yEAAyE;AACzE,8DAA8D;AAC9D,4EAA4E;AAC/D,QAAA,uBAAuB,GAAG;IACrC;QACE,SAAS;QACT;YACE,CAAC,SAAS,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC;YACvE,CAAC,UAAU,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC;YACxE,CAAC,UAAU,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC;SACzE;KACF;IACD;QACE,SAAS;QACT;YACE,CAAC,SAAS,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC;YACvE,CAAC,UAAU,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC;YACxE,CAAC,UAAU,EAAE,CAAC,UAAU,EAAE,4CAA4C,CAAC,CAAC,EAAE,oBAAoB;SAC/F;KACF;CAGF,CAAC"}
|