@across-protocol/sdk 4.3.111 → 4.3.113-alpha.1
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/typechain.d.ts +10 -11
- package/dist/cjs/typechain.js +5 -5
- package/dist/cjs/typechain.js.map +1 -1
- package/dist/esm/typechain.d.ts +10 -11
- package/dist/esm/typechain.js +5 -5
- package/dist/esm/typechain.js.map +1 -1
- package/dist/types/typechain.d.ts +10 -11
- package/dist/types/typechain.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/typechain.ts +10 -12
package/dist/cjs/typechain.d.ts
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/@openzeppelin/contracts-v4/token/ERC20/ERC20__factory";
|
|
1
|
+
export type { TypedEvent, TypedEventFilter } from "@across-protocol/contracts/dist/typechain/common";
|
|
2
|
+
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory";
|
|
3
|
+
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory";
|
|
4
|
+
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/HubPool__factory";
|
|
5
|
+
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/SpokePool__factory";
|
|
6
|
+
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/ERC20__factory";
|
|
8
7
|
export { AcceleratingDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory";
|
|
9
8
|
export { ClaimAndStake__factory } from "@across-protocol/across-token/dist/typechain/factories/ClaimAndStake__factory";
|
|
10
9
|
export { MerkleDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/MerkleDistributor__factory";
|
|
11
|
-
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
12
|
-
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
13
|
-
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/
|
|
14
|
-
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/
|
|
10
|
+
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/AcrossMerkleDistributor";
|
|
11
|
+
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/AcrossConfigStore";
|
|
12
|
+
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/HubPool";
|
|
13
|
+
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/SpokePool";
|
|
15
14
|
export type { AcceleratingDistributor, AcceleratingDistributorInterface, } from "@across-protocol/across-token/dist/typechain/AcceleratingDistributor";
|
|
16
15
|
export type { ClaimAndStake, ClaimAndStakeInterface } from "@across-protocol/across-token/dist/typechain/ClaimAndStake";
|
|
17
16
|
export type { MerkleDistributor, MerkleDistributorInterface, } from "@across-protocol/across-token/dist/typechain/MerkleDistributor";
|
package/dist/cjs/typechain.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MerkleDistributor__factory = exports.ClaimAndStake__factory = exports.AcceleratingDistributor__factory = exports.ERC20__factory = exports.SpokePool__factory = exports.HubPool__factory = exports.AcrossConfigStore__factory = exports.AcrossMerkleDistributor__factory = void 0;
|
|
4
|
-
var AcrossMerkleDistributor__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/
|
|
4
|
+
var AcrossMerkleDistributor__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory");
|
|
5
5
|
Object.defineProperty(exports, "AcrossMerkleDistributor__factory", { enumerable: true, get: function () { return AcrossMerkleDistributor__factory_1.AcrossMerkleDistributor__factory; } });
|
|
6
|
-
var AcrossConfigStore__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/
|
|
6
|
+
var AcrossConfigStore__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory");
|
|
7
7
|
Object.defineProperty(exports, "AcrossConfigStore__factory", { enumerable: true, get: function () { return AcrossConfigStore__factory_1.AcrossConfigStore__factory; } });
|
|
8
|
-
var HubPool__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/
|
|
8
|
+
var HubPool__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/HubPool__factory");
|
|
9
9
|
Object.defineProperty(exports, "HubPool__factory", { enumerable: true, get: function () { return HubPool__factory_1.HubPool__factory; } });
|
|
10
|
-
var SpokePool__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/
|
|
10
|
+
var SpokePool__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/SpokePool__factory");
|
|
11
11
|
Object.defineProperty(exports, "SpokePool__factory", { enumerable: true, get: function () { return SpokePool__factory_1.SpokePool__factory; } });
|
|
12
|
-
var ERC20__factory_1 = require("@across-protocol/contracts/dist/typechain/factories
|
|
12
|
+
var ERC20__factory_1 = require("@across-protocol/contracts/dist/typechain/factories/ERC20__factory");
|
|
13
13
|
Object.defineProperty(exports, "ERC20__factory", { enumerable: true, get: function () { return ERC20__factory_1.ERC20__factory; } });
|
|
14
14
|
var AcceleratingDistributor__factory_1 = require("@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory");
|
|
15
15
|
Object.defineProperty(exports, "AcceleratingDistributor__factory", { enumerable: true, get: function () { return AcceleratingDistributor__factory_1.AcceleratingDistributor__factory; } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typechain.js","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"typechain.js","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":";;;AAMA,yIAAwI;AAA/H,oJAAA,gCAAgC,OAAA;AACzC,6HAA4H;AAAnH,wIAAA,0BAA0B,OAAA;AACnC,yGAAwG;AAA/F,oHAAA,gBAAgB,OAAA;AACzB,6GAA4G;AAAnG,wHAAA,kBAAkB,OAAA;AAC3B,qGAAoG;AAA3F,gHAAA,cAAc,OAAA;AAEvB,4IAA2I;AAAlI,oJAAA,gCAAgC,OAAA;AACzC,wHAAuH;AAA9G,gIAAA,sBAAsB,OAAA;AAC/B,gIAA+H;AAAtH,wIAAA,0BAA0B,OAAA"}
|
package/dist/esm/typechain.d.ts
CHANGED
|
@@ -3,20 +3,19 @@
|
|
|
3
3
|
* Currently, the packages `@across-protocol/contracts` and `@across-protocol/across-token` are not optimized for tree-shaking
|
|
4
4
|
* and contain modules that are not compatible in a browser environment. This is a temporary solution until we can fix the issue upstream.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/@openzeppelin/contracts-v4/token/ERC20/ERC20__factory";
|
|
6
|
+
export type { TypedEvent, TypedEventFilter } from "@across-protocol/contracts/dist/typechain/common";
|
|
7
|
+
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory";
|
|
8
|
+
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory";
|
|
9
|
+
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/HubPool__factory";
|
|
10
|
+
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/SpokePool__factory";
|
|
11
|
+
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/ERC20__factory";
|
|
13
12
|
export { AcceleratingDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory";
|
|
14
13
|
export { ClaimAndStake__factory } from "@across-protocol/across-token/dist/typechain/factories/ClaimAndStake__factory";
|
|
15
14
|
export { MerkleDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/MerkleDistributor__factory";
|
|
16
|
-
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
17
|
-
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
18
|
-
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/
|
|
19
|
-
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/
|
|
15
|
+
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/AcrossMerkleDistributor";
|
|
16
|
+
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/AcrossConfigStore";
|
|
17
|
+
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/HubPool";
|
|
18
|
+
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/SpokePool";
|
|
20
19
|
export type { AcceleratingDistributor, AcceleratingDistributorInterface, } from "@across-protocol/across-token/dist/typechain/AcceleratingDistributor";
|
|
21
20
|
export type { ClaimAndStake, ClaimAndStakeInterface } from "@across-protocol/across-token/dist/typechain/ClaimAndStake";
|
|
22
21
|
export type { MerkleDistributor, MerkleDistributorInterface, } from "@across-protocol/across-token/dist/typechain/MerkleDistributor";
|
package/dist/esm/typechain.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/
|
|
2
|
-
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/
|
|
3
|
-
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/
|
|
4
|
-
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/
|
|
5
|
-
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories
|
|
1
|
+
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory";
|
|
2
|
+
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory";
|
|
3
|
+
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/HubPool__factory";
|
|
4
|
+
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/SpokePool__factory";
|
|
5
|
+
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/ERC20__factory";
|
|
6
6
|
export { AcceleratingDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory";
|
|
7
7
|
export { ClaimAndStake__factory } from "@across-protocol/across-token/dist/typechain/factories/ClaimAndStake__factory";
|
|
8
8
|
export { MerkleDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/MerkleDistributor__factory";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typechain.js","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"typechain.js","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,gCAAgC,EAAE,MAAM,sFAAsF,CAAC;AACxI,OAAO,EAAE,0BAA0B,EAAE,MAAM,gFAAgF,CAAC;AAC5H,OAAO,EAAE,gBAAgB,EAAE,MAAM,sEAAsE,CAAC;AACxG,OAAO,EAAE,kBAAkB,EAAE,MAAM,wEAAwE,CAAC;AAC5G,OAAO,EAAE,cAAc,EAAE,MAAM,oEAAoE,CAAC;AAEpG,OAAO,EAAE,gCAAgC,EAAE,MAAM,yFAAyF,CAAC;AAC3I,OAAO,EAAE,sBAAsB,EAAE,MAAM,+EAA+E,CAAC;AACvH,OAAO,EAAE,0BAA0B,EAAE,MAAM,mFAAmF,CAAC"}
|
|
@@ -3,20 +3,19 @@
|
|
|
3
3
|
* Currently, the packages `@across-protocol/contracts` and `@across-protocol/across-token` are not optimized for tree-shaking
|
|
4
4
|
* and contain modules that are not compatible in a browser environment. This is a temporary solution until we can fix the issue upstream.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/@openzeppelin/contracts-v4/token/ERC20/ERC20__factory";
|
|
6
|
+
export type { TypedEvent, TypedEventFilter } from "@across-protocol/contracts/dist/typechain/common";
|
|
7
|
+
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory";
|
|
8
|
+
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory";
|
|
9
|
+
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/HubPool__factory";
|
|
10
|
+
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/SpokePool__factory";
|
|
11
|
+
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/ERC20__factory";
|
|
13
12
|
export { AcceleratingDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory";
|
|
14
13
|
export { ClaimAndStake__factory } from "@across-protocol/across-token/dist/typechain/factories/ClaimAndStake__factory";
|
|
15
14
|
export { MerkleDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/MerkleDistributor__factory";
|
|
16
|
-
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
17
|
-
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/
|
|
18
|
-
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/
|
|
19
|
-
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/
|
|
15
|
+
export type { AcrossMerkleDistributor, AcrossMerkleDistributorInterface, } from "@across-protocol/contracts/dist/typechain/AcrossMerkleDistributor";
|
|
16
|
+
export type { AcrossConfigStore, AcrossConfigStoreInterface, } from "@across-protocol/contracts/dist/typechain/AcrossConfigStore";
|
|
17
|
+
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/HubPool";
|
|
18
|
+
export type { SpokePool, SpokePoolInterface, V3FundsDepositedEvent, FilledV3RelayEvent, } from "@across-protocol/contracts/dist/typechain/SpokePool";
|
|
20
19
|
export type { AcceleratingDistributor, AcceleratingDistributorInterface, } from "@across-protocol/across-token/dist/typechain/AcceleratingDistributor";
|
|
21
20
|
export type { ClaimAndStake, ClaimAndStakeInterface } from "@across-protocol/across-token/dist/typechain/ClaimAndStake";
|
|
22
21
|
export type { MerkleDistributor, MerkleDistributorInterface, } from "@across-protocol/across-token/dist/typechain/MerkleDistributor";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typechain.d.ts","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,
|
|
1
|
+
{"version":3,"file":"typechain.d.ts","sourceRoot":"","sources":["../../src/typechain.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,YAAY,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,kDAAkD,CAAC;AACrG,OAAO,EAAE,gCAAgC,EAAE,MAAM,sFAAsF,CAAC;AACxI,OAAO,EAAE,0BAA0B,EAAE,MAAM,gFAAgF,CAAC;AAC5H,OAAO,EAAE,gBAAgB,EAAE,MAAM,sEAAsE,CAAC;AACxG,OAAO,EAAE,kBAAkB,EAAE,MAAM,wEAAwE,CAAC;AAC5G,OAAO,EAAE,cAAc,EAAE,MAAM,oEAAoE,CAAC;AAEpG,OAAO,EAAE,gCAAgC,EAAE,MAAM,yFAAyF,CAAC;AAC3I,OAAO,EAAE,sBAAsB,EAAE,MAAM,+EAA+E,CAAC;AACvH,OAAO,EAAE,0BAA0B,EAAE,MAAM,mFAAmF,CAAC;AAE/H,YAAY,EACV,uBAAuB,EACvB,gCAAgC,GACjC,MAAM,mEAAmE,CAAC;AAC3E,YAAY,EACV,iBAAiB,EACjB,0BAA0B,GAC3B,MAAM,6DAA6D,CAAC;AACrE,YAAY,EAAE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mDAAmD,CAAC;AACnG,YAAY,EACV,SAAS,EACT,kBAAkB,EAClB,qBAAqB,EACrB,kBAAkB,GACnB,MAAM,qDAAqD,CAAC;AAE7D,YAAY,EACV,uBAAuB,EACvB,gCAAgC,GACjC,MAAM,sEAAsE,CAAC;AAC9E,YAAY,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,4DAA4D,CAAC;AACxH,YAAY,EACV,iBAAiB,EACjB,0BAA0B,GAC3B,MAAM,gEAAgE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@across-protocol/sdk",
|
|
3
3
|
"author": "UMA Team",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.113-alpha.1",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"homepage": "https://docs.across.to/reference/sdk",
|
|
7
7
|
"repository": {
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@across-protocol/across-token": "^1.0.0",
|
|
113
113
|
"@across-protocol/constants": "^3.1.97",
|
|
114
|
-
"@across-protocol/contracts": "4.1.
|
|
114
|
+
"@across-protocol/contracts": "4.1.21-alpha.1",
|
|
115
115
|
"@coral-xyz/anchor": "^0.30.1",
|
|
116
116
|
"@eth-optimism/sdk": "^3.3.1",
|
|
117
117
|
"@ethersproject/bignumber": "^5.7.0",
|
package/src/typechain.ts
CHANGED
|
@@ -3,14 +3,12 @@
|
|
|
3
3
|
* Currently, the packages `@across-protocol/contracts` and `@across-protocol/across-token` are not optimized for tree-shaking
|
|
4
4
|
* and contain modules that are not compatible in a browser environment. This is a temporary solution until we can fix the issue upstream.
|
|
5
5
|
*/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/contracts/SpokePool__factory";
|
|
13
|
-
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/@openzeppelin/contracts-v4/token/ERC20/ERC20__factory";
|
|
6
|
+
export type { TypedEvent, TypedEventFilter } from "@across-protocol/contracts/dist/typechain/common";
|
|
7
|
+
export { AcrossMerkleDistributor__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossMerkleDistributor__factory";
|
|
8
|
+
export { AcrossConfigStore__factory } from "@across-protocol/contracts/dist/typechain/factories/AcrossConfigStore__factory";
|
|
9
|
+
export { HubPool__factory } from "@across-protocol/contracts/dist/typechain/factories/HubPool__factory";
|
|
10
|
+
export { SpokePool__factory } from "@across-protocol/contracts/dist/typechain/factories/SpokePool__factory";
|
|
11
|
+
export { ERC20__factory } from "@across-protocol/contracts/dist/typechain/factories/ERC20__factory";
|
|
14
12
|
|
|
15
13
|
export { AcceleratingDistributor__factory } from "@across-protocol/across-token/dist/typechain/factories/AcceleratingDistributor__factory";
|
|
16
14
|
export { ClaimAndStake__factory } from "@across-protocol/across-token/dist/typechain/factories/ClaimAndStake__factory";
|
|
@@ -19,18 +17,18 @@ export { MerkleDistributor__factory } from "@across-protocol/across-token/dist/t
|
|
|
19
17
|
export type {
|
|
20
18
|
AcrossMerkleDistributor,
|
|
21
19
|
AcrossMerkleDistributorInterface,
|
|
22
|
-
} from "@across-protocol/contracts/dist/typechain/
|
|
20
|
+
} from "@across-protocol/contracts/dist/typechain/AcrossMerkleDistributor";
|
|
23
21
|
export type {
|
|
24
22
|
AcrossConfigStore,
|
|
25
23
|
AcrossConfigStoreInterface,
|
|
26
|
-
} from "@across-protocol/contracts/dist/typechain/
|
|
27
|
-
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/
|
|
24
|
+
} from "@across-protocol/contracts/dist/typechain/AcrossConfigStore";
|
|
25
|
+
export type { HubPool, HubPoolInterface } from "@across-protocol/contracts/dist/typechain/HubPool";
|
|
28
26
|
export type {
|
|
29
27
|
SpokePool,
|
|
30
28
|
SpokePoolInterface,
|
|
31
29
|
V3FundsDepositedEvent,
|
|
32
30
|
FilledV3RelayEvent,
|
|
33
|
-
} from "@across-protocol/contracts/dist/typechain/
|
|
31
|
+
} from "@across-protocol/contracts/dist/typechain/SpokePool";
|
|
34
32
|
|
|
35
33
|
export type {
|
|
36
34
|
AcceleratingDistributor,
|