@orb-labs/orby-ethers6 0.0.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/LICENSE +21 -0
- package/README.md +63 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/orby_provider.d.ts +130 -0
- package/dist/orby_provider.js +383 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/wallet.d.ts +17 -0
- package/dist/wallet.js +132 -0
- package/package.json +30 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Orb Labs, Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
# Orby RPC SDK
|
2
|
+
|
3
|
+
An extension to the ethers v6 library that adds functionality for calling Custom RPC functions on the Orby. With this extension, you can call both standard RPC functions as well as the Orby custom ones.
|
4
|
+
|
5
|
+
Orby is an RPC-proxy that wraps around standard RPCs and extends their functionality to enable gas abstraction, gas sponsorship, and chain abstraction for any account (including EOAs) with just a few lines of code. Additionally, it allows wallets to monetize on any transaction from their users.
|
6
|
+
|
7
|
+
## Example Usage
|
8
|
+
|
9
|
+
```
|
10
|
+
// add imports
|
11
|
+
import { OrbyProvider } from '@orb-labs/orby-ethers5';
|
12
|
+
|
13
|
+
// provide the url
|
14
|
+
const virtualNodeRpcUrl = "enter virtual node here"
|
15
|
+
|
16
|
+
// create the url instance
|
17
|
+
const virtualNode = new OrbyProvider(virtualNodeRpcUrl);
|
18
|
+
|
19
|
+
// create operations for transaction
|
20
|
+
const operationSet = await virtualNode.getOperationsToExecuteTransaction(
|
21
|
+
accountClusterId,
|
22
|
+
to,
|
23
|
+
data,
|
24
|
+
value
|
25
|
+
);
|
26
|
+
```
|
27
|
+
|
28
|
+
## Development
|
29
|
+
|
30
|
+
Run `yarn run dev`
|
31
|
+
|
32
|
+
## Publishing to npm
|
33
|
+
|
34
|
+
1. Bump the package.json version
|
35
|
+
|
36
|
+
```
|
37
|
+
// package.json
|
38
|
+
version: "0.0.1" // change to "0.0.2"
|
39
|
+
```
|
40
|
+
|
41
|
+
2. Run yarn at the root of orby folder
|
42
|
+
|
43
|
+
```
|
44
|
+
yarn
|
45
|
+
```
|
46
|
+
|
47
|
+
3. Build
|
48
|
+
|
49
|
+
```
|
50
|
+
yarn workspace @orb-labs/orby-ethers6 build
|
51
|
+
```
|
52
|
+
|
53
|
+
4. Login to npm
|
54
|
+
|
55
|
+
```
|
56
|
+
yarn npm login
|
57
|
+
```
|
58
|
+
|
59
|
+
4. Publish @orb-labs/orby-ethers6 to npm
|
60
|
+
|
61
|
+
```
|
62
|
+
yarn workspace @orb-labs/orby-ethers6 npm publish --access public
|
63
|
+
```
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
import { ethers } from "ethers";
|
2
|
+
import { Account, AccountCluster, Activity, BlockchainInformation, ChainEndpoint, ChainSupportStatus, CurrencyAmount, FungibleTokenOverview, GasSpendForInstance, GasSponsorshipData, GasSponsorshipPolicy, OperationSet, OperationStatus, Orby, Order, QuoteType, SignedOperation, StandardizedBalance, StandardizedToken } from "@orb-labs/orby-core";
|
3
|
+
export declare class OrbyProvider extends ethers.JsonRpcProvider implements Orby {
|
4
|
+
private accountClusterActions;
|
5
|
+
private adminActions;
|
6
|
+
private applicationActions;
|
7
|
+
private instanceActions;
|
8
|
+
private operationActions;
|
9
|
+
private tokenActions;
|
10
|
+
constructor(url: string);
|
11
|
+
createAccountCluster(accounts: Account[]): Promise<AccountCluster>;
|
12
|
+
addToAccountCluster(accounts: Account[], accountClusterId: string): Promise<AccountCluster>;
|
13
|
+
removeFromAccountCluster(accounts: Account[], accountClusterId: string): Promise<AccountCluster>;
|
14
|
+
enableChainAbstractionForAccountCluster(accountClusterId: string, enable: boolean): Promise<boolean>;
|
15
|
+
setCustomChainEndpointsForAccountCluster(accountClusterId: string, chainEndpoints: ChainEndpoint[]): Promise<boolean>;
|
16
|
+
removeCustomChainEndpointsForAccountCluster(accountClusterId: string, chainIds: bigint[]): Promise<boolean>;
|
17
|
+
getCustomChainEndpointsForAccountCluster(accountClusterId: string, returnChainIdsOnly: boolean): Promise<boolean>;
|
18
|
+
isChainSupportedOnAccountCluster(accountClusterId: string, chainId: bigint): Promise<ChainSupportStatus>;
|
19
|
+
getNodeRpcUrl(accountClusterId: string, chainId: bigint): Promise<string>;
|
20
|
+
getVirtualNodeRpcUrl(accountClusterId: string, chainId: bigint, entrypointAccountAddress: string): Promise<string>;
|
21
|
+
getActivity(accountClusterId: string, limit?: number, offset?: number, order?: Order, startDate?: number, endDate?: number, filters?: {
|
22
|
+
transactionHash?: string;
|
23
|
+
address?: string;
|
24
|
+
}[]): Promise<Activity[]>;
|
25
|
+
getPortfolioOverview(accountClusterId: string): Promise<FungibleTokenOverview>;
|
26
|
+
getFungibleTokenPortfolio(accountClusterId: string): Promise<StandardizedBalance[]>;
|
27
|
+
getFungibleTokenBalances(accountClusterId: string, offset?: number, limit?: number, chainId?: bigint, tokensToOmit?: string[]): Promise<StandardizedBalance[]>;
|
28
|
+
createInstance(name: string): Promise<{
|
29
|
+
success: boolean;
|
30
|
+
orbyInstancePrivateUrl: string;
|
31
|
+
orbyInstancePublicUrl: string;
|
32
|
+
}>;
|
33
|
+
getInstanceUrls(name: string): Promise<{
|
34
|
+
orbyInstancePrivateUrl: string;
|
35
|
+
orbyInstancePublicUrl: string;
|
36
|
+
}>;
|
37
|
+
getGasSpentForCustomer(month: string, year: string): Promise<GasSponsorshipData>;
|
38
|
+
getGasSpentForInstances(month: string, year: string, instanceNames: string[]): Promise<GasSpendForInstance[]>;
|
39
|
+
isChainAbstractionCompatible(appDomainUrl: string): Promise<boolean>;
|
40
|
+
setCustomChainEndpointsForInstance(chainEndpoints: ChainEndpoint[]): Promise<boolean>;
|
41
|
+
removeCustomChainEndpointForInstance(chainIds: bigint[]): Promise<boolean>;
|
42
|
+
getCustomChainEndpointsForInstance(returnChainIdsOnly: boolean): Promise<boolean>;
|
43
|
+
getChainsSupportedByDefault(): Promise<BlockchainInformation[]>;
|
44
|
+
enabledChainAbstractionForInstance(enable: boolean): Promise<boolean>;
|
45
|
+
enableGasSponsorshipForInstance(enable: boolean): Promise<boolean>;
|
46
|
+
getGasSponsorForInstance(): Promise<string>;
|
47
|
+
getOrbyGasSponsorPolicyForInstance(): Promise<GasSponsorshipPolicy>;
|
48
|
+
setOrbyGasSponsorPolicyForInstance(gasSponsorshipPolicy: GasSponsorshipPolicy): Promise<boolean>;
|
49
|
+
removeOrbyGasSponsorPolicyForInstance(): Promise<boolean>;
|
50
|
+
getOperationsToExecuteTransaction(accountClusterId: string, to: string, data: string, value?: bigint): Promise<OperationSet>;
|
51
|
+
getOperationsToSignTypedData(accountClusterId: string, data: string): Promise<OperationSet>;
|
52
|
+
getOperationsToCancelTransaction(accountClusterId: string, operationSetId: string): Promise<OperationSet>;
|
53
|
+
isTransactionPreconditionSatisfied(accountClusterId: string, to: string, data: string, value?: string): Promise<boolean>;
|
54
|
+
isTypedDataPreconditionSatisfied(accountClusterId: string, data: string): Promise<boolean>;
|
55
|
+
sendSignedOperations(accountClusterId: string, signedOperations: SignedOperation[]): Promise<{
|
56
|
+
operationSetId: string;
|
57
|
+
operationResponses: OperationStatus[];
|
58
|
+
}>;
|
59
|
+
getOperationStatuses(operationIds: string[]): Promise<OperationStatus[]>;
|
60
|
+
estimateFiatCostToExecuteTransaction(to: string, data: string, value?: string): Promise<CurrencyAmount>;
|
61
|
+
estimateFiatCostToSignTypedData(data: string): Promise<CurrencyAmount>;
|
62
|
+
getOperationsToTransferToken(accountClusterId: string, standardizedTokenId: string, amount: bigint, recipient: {
|
63
|
+
chainId: bigint;
|
64
|
+
recipientAddress: string;
|
65
|
+
}, gasToken?: {
|
66
|
+
standardizedTokenId: string;
|
67
|
+
tokenSources?: {
|
68
|
+
chainId: bigint;
|
69
|
+
address?: string;
|
70
|
+
}[];
|
71
|
+
}): Promise<OperationSet>;
|
72
|
+
getOperationsToSwap(accountClusterId: string, swapType: QuoteType, input: {
|
73
|
+
standardizedTokenId: string;
|
74
|
+
amount?: bigint;
|
75
|
+
tokenSources?: {
|
76
|
+
chainId: string;
|
77
|
+
address?: string;
|
78
|
+
}[];
|
79
|
+
}, output: {
|
80
|
+
standardizedTokenId: string;
|
81
|
+
amount?: bigint;
|
82
|
+
tokenDestination?: {
|
83
|
+
chainId: string;
|
84
|
+
address?: string;
|
85
|
+
};
|
86
|
+
}, gasToken?: {
|
87
|
+
standardizedTokenId: string;
|
88
|
+
tokenSources?: {
|
89
|
+
chainId: bigint;
|
90
|
+
address?: string;
|
91
|
+
}[];
|
92
|
+
}): Promise<OperationSet>;
|
93
|
+
getQuote(accountClusterId: string, swapType: QuoteType, input: {
|
94
|
+
standardizedTokenId: string;
|
95
|
+
amount?: bigint;
|
96
|
+
tokenSources?: {
|
97
|
+
chainId: string;
|
98
|
+
address?: string;
|
99
|
+
}[];
|
100
|
+
}, output: {
|
101
|
+
standardizedTokenId: string;
|
102
|
+
amount?: bigint;
|
103
|
+
tokenDestination?: {
|
104
|
+
chainId: string;
|
105
|
+
address?: string;
|
106
|
+
};
|
107
|
+
}): Promise<OperationSet>;
|
108
|
+
getOperationsToBridge(accountClusterId: string, standardizedTokenId: string, amount: bigint, tokenSources?: {
|
109
|
+
chainId: string;
|
110
|
+
address?: string;
|
111
|
+
}[], tokenDestination?: {
|
112
|
+
chainId: string;
|
113
|
+
address?: string;
|
114
|
+
}, gasToken?: {
|
115
|
+
standardizedTokenId: string;
|
116
|
+
tokenSources?: {
|
117
|
+
chainId: bigint;
|
118
|
+
address?: string;
|
119
|
+
}[];
|
120
|
+
}): Promise<OperationSet>;
|
121
|
+
getStandardizedTokenIds(tokens: {
|
122
|
+
tokenAddress: string;
|
123
|
+
chainId: bigint;
|
124
|
+
}[]): Promise<string[]>;
|
125
|
+
getStandardizedTokens(tokens: {
|
126
|
+
tokenAddress: string;
|
127
|
+
chainId: bigint;
|
128
|
+
}[]): Promise<StandardizedToken[]>;
|
129
|
+
getFungibleTokenData(standardizedTokenIds: string[]): Promise<StandardizedToken>;
|
130
|
+
}
|
@@ -0,0 +1,383 @@
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
if (typeof b !== "function" && b !== null)
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
11
|
+
extendStatics(d, b);
|
12
|
+
function __() { this.constructor = d; }
|
13
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
14
|
+
};
|
15
|
+
})();
|
16
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
17
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
18
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
19
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
20
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
21
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
22
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
23
|
+
});
|
24
|
+
};
|
25
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
26
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
27
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
28
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
29
|
+
function step(op) {
|
30
|
+
if (f) throw new TypeError("Generator is already executing.");
|
31
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
32
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
33
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
34
|
+
switch (op[0]) {
|
35
|
+
case 0: case 1: t = op; break;
|
36
|
+
case 4: _.label++; return { value: op[1], done: false };
|
37
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
38
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
39
|
+
default:
|
40
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
41
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
42
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
43
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
44
|
+
if (t[2]) _.ops.pop();
|
45
|
+
_.trys.pop(); continue;
|
46
|
+
}
|
47
|
+
op = body.call(thisArg, _);
|
48
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
49
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
50
|
+
}
|
51
|
+
};
|
52
|
+
import { ethers } from "ethers";
|
53
|
+
import { AccountClusterActions, AdminActions, ApplicationActions, InstanceActions, LIBRARY_TYPE, OperationActions, TokenActions, } from "@orb-labs/orby-core";
|
54
|
+
var OrbyProvider = /** @class */ (function (_super) {
|
55
|
+
__extends(OrbyProvider, _super);
|
56
|
+
function OrbyProvider(url) {
|
57
|
+
var _this = _super.call(this, url) || this;
|
58
|
+
_this.accountClusterActions = new AccountClusterActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
59
|
+
_this.adminActions = new AdminActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
60
|
+
_this.applicationActions = new ApplicationActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
61
|
+
_this.instanceActions = new InstanceActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
62
|
+
_this.operationActions = new OperationActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
63
|
+
_this.tokenActions = new TokenActions(LIBRARY_TYPE.ETHERS, undefined, _this);
|
64
|
+
return _this;
|
65
|
+
}
|
66
|
+
OrbyProvider.prototype.createAccountCluster = function (accounts) {
|
67
|
+
return __awaiter(this, void 0, void 0, function () {
|
68
|
+
return __generator(this, function (_a) {
|
69
|
+
return [2 /*return*/, this.accountClusterActions.createAccountCluster(accounts)];
|
70
|
+
});
|
71
|
+
});
|
72
|
+
};
|
73
|
+
OrbyProvider.prototype.addToAccountCluster = function (accounts, accountClusterId) {
|
74
|
+
return __awaiter(this, void 0, void 0, function () {
|
75
|
+
return __generator(this, function (_a) {
|
76
|
+
return [2 /*return*/, this.accountClusterActions.addToAccountCluster(accounts, accountClusterId)];
|
77
|
+
});
|
78
|
+
});
|
79
|
+
};
|
80
|
+
OrbyProvider.prototype.removeFromAccountCluster = function (accounts, accountClusterId) {
|
81
|
+
return __awaiter(this, void 0, void 0, function () {
|
82
|
+
return __generator(this, function (_a) {
|
83
|
+
return [2 /*return*/, this.accountClusterActions.removeFromAccountCluster(accounts, accountClusterId)];
|
84
|
+
});
|
85
|
+
});
|
86
|
+
};
|
87
|
+
OrbyProvider.prototype.enableChainAbstractionForAccountCluster = function (accountClusterId, enable) {
|
88
|
+
return __awaiter(this, void 0, void 0, function () {
|
89
|
+
return __generator(this, function (_a) {
|
90
|
+
return [2 /*return*/, this.accountClusterActions.enableChainAbstractionForAccountCluster(accountClusterId, enable)];
|
91
|
+
});
|
92
|
+
});
|
93
|
+
};
|
94
|
+
OrbyProvider.prototype.setCustomChainEndpointsForAccountCluster = function (accountClusterId, chainEndpoints) {
|
95
|
+
return __awaiter(this, void 0, void 0, function () {
|
96
|
+
return __generator(this, function (_a) {
|
97
|
+
return [2 /*return*/, this.accountClusterActions.setCustomChainEndpointsForAccountCluster(accountClusterId, chainEndpoints)];
|
98
|
+
});
|
99
|
+
});
|
100
|
+
};
|
101
|
+
OrbyProvider.prototype.removeCustomChainEndpointsForAccountCluster = function (accountClusterId, chainIds) {
|
102
|
+
return __awaiter(this, void 0, void 0, function () {
|
103
|
+
return __generator(this, function (_a) {
|
104
|
+
return [2 /*return*/, this.accountClusterActions.removeCustomChainEndpointsForAccountCluster(accountClusterId, chainIds)];
|
105
|
+
});
|
106
|
+
});
|
107
|
+
};
|
108
|
+
OrbyProvider.prototype.getCustomChainEndpointsForAccountCluster = function (accountClusterId, returnChainIdsOnly) {
|
109
|
+
return __awaiter(this, void 0, void 0, function () {
|
110
|
+
return __generator(this, function (_a) {
|
111
|
+
return [2 /*return*/, this.accountClusterActions.getCustomChainEndpointsForAccountCluster(accountClusterId, returnChainIdsOnly)];
|
112
|
+
});
|
113
|
+
});
|
114
|
+
};
|
115
|
+
OrbyProvider.prototype.isChainSupportedOnAccountCluster = function (accountClusterId, chainId) {
|
116
|
+
return __awaiter(this, void 0, void 0, function () {
|
117
|
+
return __generator(this, function (_a) {
|
118
|
+
return [2 /*return*/, this.accountClusterActions.isChainSupportedOnAccountCluster(accountClusterId, chainId)];
|
119
|
+
});
|
120
|
+
});
|
121
|
+
};
|
122
|
+
OrbyProvider.prototype.getNodeRpcUrl = function (accountClusterId, chainId) {
|
123
|
+
return __awaiter(this, void 0, void 0, function () {
|
124
|
+
return __generator(this, function (_a) {
|
125
|
+
return [2 /*return*/, this.accountClusterActions.getNodeRpcUrl(accountClusterId, chainId)];
|
126
|
+
});
|
127
|
+
});
|
128
|
+
};
|
129
|
+
OrbyProvider.prototype.getVirtualNodeRpcUrl = function (accountClusterId, chainId, entrypointAccountAddress) {
|
130
|
+
return __awaiter(this, void 0, void 0, function () {
|
131
|
+
return __generator(this, function (_a) {
|
132
|
+
return [2 /*return*/, this.accountClusterActions.getVirtualNodeRpcUrl(accountClusterId, chainId, entrypointAccountAddress)];
|
133
|
+
});
|
134
|
+
});
|
135
|
+
};
|
136
|
+
OrbyProvider.prototype.getActivity = function (accountClusterId, limit, offset, order, startDate, endDate, filters) {
|
137
|
+
return __awaiter(this, void 0, void 0, function () {
|
138
|
+
return __generator(this, function (_a) {
|
139
|
+
return [2 /*return*/, this.accountClusterActions.getActivity(accountClusterId, limit, offset, order, startDate, endDate, filters)];
|
140
|
+
});
|
141
|
+
});
|
142
|
+
};
|
143
|
+
OrbyProvider.prototype.getPortfolioOverview = function (accountClusterId) {
|
144
|
+
return __awaiter(this, void 0, void 0, function () {
|
145
|
+
return __generator(this, function (_a) {
|
146
|
+
return [2 /*return*/, this.accountClusterActions.getPortfolioOverview(accountClusterId)];
|
147
|
+
});
|
148
|
+
});
|
149
|
+
};
|
150
|
+
OrbyProvider.prototype.getFungibleTokenPortfolio = function (accountClusterId) {
|
151
|
+
return __awaiter(this, void 0, void 0, function () {
|
152
|
+
return __generator(this, function (_a) {
|
153
|
+
return [2 /*return*/, this.accountClusterActions.getFungibleTokenPortfolio(accountClusterId)];
|
154
|
+
});
|
155
|
+
});
|
156
|
+
};
|
157
|
+
OrbyProvider.prototype.getFungibleTokenBalances = function (accountClusterId, offset, limit, chainId, tokensToOmit) {
|
158
|
+
return __awaiter(this, void 0, void 0, function () {
|
159
|
+
return __generator(this, function (_a) {
|
160
|
+
return [2 /*return*/, this.accountClusterActions.getFungibleTokenBalances(accountClusterId, offset, limit, chainId, tokensToOmit)];
|
161
|
+
});
|
162
|
+
});
|
163
|
+
};
|
164
|
+
OrbyProvider.prototype.createInstance = function (name) {
|
165
|
+
return __awaiter(this, void 0, void 0, function () {
|
166
|
+
return __generator(this, function (_a) {
|
167
|
+
return [2 /*return*/, this.adminActions.createInstance(name)];
|
168
|
+
});
|
169
|
+
});
|
170
|
+
};
|
171
|
+
OrbyProvider.prototype.getInstanceUrls = function (name) {
|
172
|
+
return __awaiter(this, void 0, void 0, function () {
|
173
|
+
return __generator(this, function (_a) {
|
174
|
+
return [2 /*return*/, this.adminActions.getInstanceUrls(name)];
|
175
|
+
});
|
176
|
+
});
|
177
|
+
};
|
178
|
+
OrbyProvider.prototype.getGasSpentForCustomer = function (month, year) {
|
179
|
+
return __awaiter(this, void 0, void 0, function () {
|
180
|
+
return __generator(this, function (_a) {
|
181
|
+
return [2 /*return*/, this.adminActions.getGasSpentForCustomer(month, year)];
|
182
|
+
});
|
183
|
+
});
|
184
|
+
};
|
185
|
+
OrbyProvider.prototype.getGasSpentForInstances = function (month, year, instanceNames) {
|
186
|
+
return __awaiter(this, void 0, void 0, function () {
|
187
|
+
return __generator(this, function (_a) {
|
188
|
+
return [2 /*return*/, this.adminActions.getGasSpentForInstances(month, year, instanceNames)];
|
189
|
+
});
|
190
|
+
});
|
191
|
+
};
|
192
|
+
OrbyProvider.prototype.isChainAbstractionCompatible = function (appDomainUrl) {
|
193
|
+
return __awaiter(this, void 0, void 0, function () {
|
194
|
+
return __generator(this, function (_a) {
|
195
|
+
return [2 /*return*/, this.applicationActions.isChainAbstractionCompatible(appDomainUrl)];
|
196
|
+
});
|
197
|
+
});
|
198
|
+
};
|
199
|
+
OrbyProvider.prototype.setCustomChainEndpointsForInstance = function (chainEndpoints) {
|
200
|
+
return __awaiter(this, void 0, void 0, function () {
|
201
|
+
return __generator(this, function (_a) {
|
202
|
+
return [2 /*return*/, this.instanceActions.setCustomChainEndpointsForInstance(chainEndpoints)];
|
203
|
+
});
|
204
|
+
});
|
205
|
+
};
|
206
|
+
OrbyProvider.prototype.removeCustomChainEndpointForInstance = function (chainIds) {
|
207
|
+
return __awaiter(this, void 0, void 0, function () {
|
208
|
+
return __generator(this, function (_a) {
|
209
|
+
return [2 /*return*/, this.instanceActions.removeCustomChainEndpointForInstance(chainIds)];
|
210
|
+
});
|
211
|
+
});
|
212
|
+
};
|
213
|
+
OrbyProvider.prototype.getCustomChainEndpointsForInstance = function (returnChainIdsOnly) {
|
214
|
+
return __awaiter(this, void 0, void 0, function () {
|
215
|
+
return __generator(this, function (_a) {
|
216
|
+
return [2 /*return*/, this.instanceActions.getCustomChainEndpointsForInstance(returnChainIdsOnly)];
|
217
|
+
});
|
218
|
+
});
|
219
|
+
};
|
220
|
+
OrbyProvider.prototype.getChainsSupportedByDefault = function () {
|
221
|
+
return __awaiter(this, void 0, void 0, function () {
|
222
|
+
return __generator(this, function (_a) {
|
223
|
+
return [2 /*return*/, this.instanceActions.getChainsSupportedByDefault()];
|
224
|
+
});
|
225
|
+
});
|
226
|
+
};
|
227
|
+
OrbyProvider.prototype.enabledChainAbstractionForInstance = function (enable) {
|
228
|
+
return __awaiter(this, void 0, void 0, function () {
|
229
|
+
return __generator(this, function (_a) {
|
230
|
+
return [2 /*return*/, this.instanceActions.enabledChainAbstractionForInstance(enable)];
|
231
|
+
});
|
232
|
+
});
|
233
|
+
};
|
234
|
+
OrbyProvider.prototype.enableGasSponsorshipForInstance = function (enable) {
|
235
|
+
return __awaiter(this, void 0, void 0, function () {
|
236
|
+
return __generator(this, function (_a) {
|
237
|
+
return [2 /*return*/, this.instanceActions.enableGasSponsorshipForInstance(enable)];
|
238
|
+
});
|
239
|
+
});
|
240
|
+
};
|
241
|
+
OrbyProvider.prototype.getGasSponsorForInstance = function () {
|
242
|
+
return __awaiter(this, void 0, void 0, function () {
|
243
|
+
return __generator(this, function (_a) {
|
244
|
+
return [2 /*return*/, this.instanceActions.getGasSponsorForInstance()];
|
245
|
+
});
|
246
|
+
});
|
247
|
+
};
|
248
|
+
OrbyProvider.prototype.getOrbyGasSponsorPolicyForInstance = function () {
|
249
|
+
return __awaiter(this, void 0, void 0, function () {
|
250
|
+
return __generator(this, function (_a) {
|
251
|
+
return [2 /*return*/, this.instanceActions.getOrbyGasSponsorPolicyForInstance()];
|
252
|
+
});
|
253
|
+
});
|
254
|
+
};
|
255
|
+
OrbyProvider.prototype.setOrbyGasSponsorPolicyForInstance = function (gasSponsorshipPolicy) {
|
256
|
+
return __awaiter(this, void 0, void 0, function () {
|
257
|
+
return __generator(this, function (_a) {
|
258
|
+
return [2 /*return*/, this.instanceActions.setOrbyGasSponsorPolicyForInstance(gasSponsorshipPolicy)];
|
259
|
+
});
|
260
|
+
});
|
261
|
+
};
|
262
|
+
OrbyProvider.prototype.removeOrbyGasSponsorPolicyForInstance = function () {
|
263
|
+
return __awaiter(this, void 0, void 0, function () {
|
264
|
+
return __generator(this, function (_a) {
|
265
|
+
return [2 /*return*/, this.instanceActions.removeOrbyGasSponsorPolicyForInstance()];
|
266
|
+
});
|
267
|
+
});
|
268
|
+
};
|
269
|
+
OrbyProvider.prototype.getOperationsToExecuteTransaction = function (accountClusterId, to, data, value) {
|
270
|
+
return __awaiter(this, void 0, void 0, function () {
|
271
|
+
return __generator(this, function (_a) {
|
272
|
+
return [2 /*return*/, this.operationActions.getOperationsToExecuteTransaction(accountClusterId, to, data, value)];
|
273
|
+
});
|
274
|
+
});
|
275
|
+
};
|
276
|
+
OrbyProvider.prototype.getOperationsToSignTypedData = function (accountClusterId, data) {
|
277
|
+
return __awaiter(this, void 0, void 0, function () {
|
278
|
+
return __generator(this, function (_a) {
|
279
|
+
return [2 /*return*/, this.operationActions.getOperationsToSignTypedData(accountClusterId, data)];
|
280
|
+
});
|
281
|
+
});
|
282
|
+
};
|
283
|
+
OrbyProvider.prototype.getOperationsToCancelTransaction = function (accountClusterId, operationSetId) {
|
284
|
+
return __awaiter(this, void 0, void 0, function () {
|
285
|
+
return __generator(this, function (_a) {
|
286
|
+
return [2 /*return*/, this.operationActions.getOperationsToCancelTransaction(accountClusterId, operationSetId)];
|
287
|
+
});
|
288
|
+
});
|
289
|
+
};
|
290
|
+
OrbyProvider.prototype.isTransactionPreconditionSatisfied = function (accountClusterId, to, data, value) {
|
291
|
+
return __awaiter(this, void 0, void 0, function () {
|
292
|
+
return __generator(this, function (_a) {
|
293
|
+
return [2 /*return*/, this.operationActions.isTransactionPreconditionSatisfied(accountClusterId, to, data, value)];
|
294
|
+
});
|
295
|
+
});
|
296
|
+
};
|
297
|
+
OrbyProvider.prototype.isTypedDataPreconditionSatisfied = function (accountClusterId, data) {
|
298
|
+
return __awaiter(this, void 0, void 0, function () {
|
299
|
+
return __generator(this, function (_a) {
|
300
|
+
return [2 /*return*/, this.operationActions.isTypedDataPreconditionSatisfied(accountClusterId, data)];
|
301
|
+
});
|
302
|
+
});
|
303
|
+
};
|
304
|
+
OrbyProvider.prototype.sendSignedOperations = function (accountClusterId, signedOperations) {
|
305
|
+
return __awaiter(this, void 0, void 0, function () {
|
306
|
+
return __generator(this, function (_a) {
|
307
|
+
return [2 /*return*/, this.operationActions.sendSignedOperations(accountClusterId, signedOperations)];
|
308
|
+
});
|
309
|
+
});
|
310
|
+
};
|
311
|
+
OrbyProvider.prototype.getOperationStatuses = function (operationIds) {
|
312
|
+
return __awaiter(this, void 0, void 0, function () {
|
313
|
+
return __generator(this, function (_a) {
|
314
|
+
return [2 /*return*/, this.operationActions.getOperationStatuses(operationIds)];
|
315
|
+
});
|
316
|
+
});
|
317
|
+
};
|
318
|
+
OrbyProvider.prototype.estimateFiatCostToExecuteTransaction = function (to, data, value) {
|
319
|
+
return __awaiter(this, void 0, void 0, function () {
|
320
|
+
return __generator(this, function (_a) {
|
321
|
+
return [2 /*return*/, this.operationActions.estimateFiatCostToExecuteTransaction(to, data, value)];
|
322
|
+
});
|
323
|
+
});
|
324
|
+
};
|
325
|
+
OrbyProvider.prototype.estimateFiatCostToSignTypedData = function (data) {
|
326
|
+
return __awaiter(this, void 0, void 0, function () {
|
327
|
+
return __generator(this, function (_a) {
|
328
|
+
return [2 /*return*/, this.operationActions.estimateFiatCostToSignTypedData(data)];
|
329
|
+
});
|
330
|
+
});
|
331
|
+
};
|
332
|
+
OrbyProvider.prototype.getOperationsToTransferToken = function (accountClusterId, standardizedTokenId, amount, recipient, gasToken) {
|
333
|
+
return __awaiter(this, void 0, void 0, function () {
|
334
|
+
return __generator(this, function (_a) {
|
335
|
+
return [2 /*return*/, this.operationActions.getOperationsToTransferToken(accountClusterId, standardizedTokenId, amount, recipient, gasToken)];
|
336
|
+
});
|
337
|
+
});
|
338
|
+
};
|
339
|
+
OrbyProvider.prototype.getOperationsToSwap = function (accountClusterId, swapType, input, output, gasToken) {
|
340
|
+
return __awaiter(this, void 0, void 0, function () {
|
341
|
+
return __generator(this, function (_a) {
|
342
|
+
return [2 /*return*/, this.operationActions.getOperationsToSwap(accountClusterId, swapType, input, output, gasToken)];
|
343
|
+
});
|
344
|
+
});
|
345
|
+
};
|
346
|
+
OrbyProvider.prototype.getQuote = function (accountClusterId, swapType, input, output) {
|
347
|
+
return __awaiter(this, void 0, void 0, function () {
|
348
|
+
return __generator(this, function (_a) {
|
349
|
+
return [2 /*return*/, this.operationActions.getQuote(accountClusterId, swapType, input, output)];
|
350
|
+
});
|
351
|
+
});
|
352
|
+
};
|
353
|
+
OrbyProvider.prototype.getOperationsToBridge = function (accountClusterId, standardizedTokenId, amount, tokenSources, tokenDestination, gasToken) {
|
354
|
+
return __awaiter(this, void 0, void 0, function () {
|
355
|
+
return __generator(this, function (_a) {
|
356
|
+
return [2 /*return*/, this.operationActions.getOperationsToBridge(accountClusterId, standardizedTokenId, amount, tokenSources, tokenDestination, gasToken)];
|
357
|
+
});
|
358
|
+
});
|
359
|
+
};
|
360
|
+
OrbyProvider.prototype.getStandardizedTokenIds = function (tokens) {
|
361
|
+
return __awaiter(this, void 0, void 0, function () {
|
362
|
+
return __generator(this, function (_a) {
|
363
|
+
return [2 /*return*/, this.tokenActions.getStandardizedTokenIds(tokens)];
|
364
|
+
});
|
365
|
+
});
|
366
|
+
};
|
367
|
+
OrbyProvider.prototype.getStandardizedTokens = function (tokens) {
|
368
|
+
return __awaiter(this, void 0, void 0, function () {
|
369
|
+
return __generator(this, function (_a) {
|
370
|
+
return [2 /*return*/, this.tokenActions.getStandardizedTokens(tokens)];
|
371
|
+
});
|
372
|
+
});
|
373
|
+
};
|
374
|
+
OrbyProvider.prototype.getFungibleTokenData = function (standardizedTokenIds) {
|
375
|
+
return __awaiter(this, void 0, void 0, function () {
|
376
|
+
return __generator(this, function (_a) {
|
377
|
+
return [2 /*return*/, this.tokenActions.getFungibleTokenData(standardizedTokenIds)];
|
378
|
+
});
|
379
|
+
});
|
380
|
+
};
|
381
|
+
return OrbyProvider;
|
382
|
+
}(ethers.JsonRpcProvider));
|
383
|
+
export { OrbyProvider };
|
@@ -0,0 +1 @@
|
|
1
|
+
{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.string.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/ethers/lib.commonjs/_version.d.ts","../../node_modules/ethers/lib.commonjs/utils/base58.d.ts","../../node_modules/ethers/lib.commonjs/utils/data.d.ts","../../node_modules/ethers/lib.commonjs/utils/base64.d.ts","../../node_modules/ethers/lib.commonjs/address/address.d.ts","../../node_modules/ethers/lib.commonjs/address/contract-address.d.ts","../../node_modules/ethers/lib.commonjs/address/checks.d.ts","../../node_modules/ethers/lib.commonjs/address/index.d.ts","../../node_modules/ethers/lib.commonjs/crypto/hmac.d.ts","../../node_modules/ethers/lib.commonjs/crypto/keccak.d.ts","../../node_modules/ethers/lib.commonjs/crypto/ripemd160.d.ts","../../node_modules/ethers/lib.commonjs/crypto/pbkdf2.d.ts","../../node_modules/ethers/lib.commonjs/crypto/random.d.ts","../../node_modules/ethers/lib.commonjs/crypto/scrypt.d.ts","../../node_modules/ethers/lib.commonjs/crypto/sha2.d.ts","../../node_modules/ethers/lib.commonjs/crypto/signature.d.ts","../../node_modules/ethers/lib.commonjs/crypto/signing-key.d.ts","../../node_modules/ethers/lib.commonjs/crypto/index.d.ts","../../node_modules/ethers/lib.commonjs/transaction/accesslist.d.ts","../../node_modules/ethers/lib.commonjs/transaction/address.d.ts","../../node_modules/ethers/lib.commonjs/transaction/transaction.d.ts","../../node_modules/ethers/lib.commonjs/transaction/index.d.ts","../../node_modules/ethers/lib.commonjs/providers/contracts.d.ts","../../node_modules/ethers/lib.commonjs/utils/fetch.d.ts","../../node_modules/ethers/lib.commonjs/providers/plugins-network.d.ts","../../node_modules/ethers/lib.commonjs/providers/network.d.ts","../../node_modules/ethers/lib.commonjs/providers/formatting.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider.d.ts","../../node_modules/ethers/lib.commonjs/providers/ens-resolver.d.ts","../../node_modules/ethers/lib.commonjs/providers/abstract-provider.d.ts","../../node_modules/ethers/lib.commonjs/hash/id.d.ts","../../node_modules/ethers/lib.commonjs/hash/namehash.d.ts","../../node_modules/ethers/lib.commonjs/hash/message.d.ts","../../node_modules/ethers/lib.commonjs/hash/solidity.d.ts","../../node_modules/ethers/lib.commonjs/hash/typed-data.d.ts","../../node_modules/ethers/lib.commonjs/hash/index.d.ts","../../node_modules/ethers/lib.commonjs/providers/signer.d.ts","../../node_modules/ethers/lib.commonjs/providers/abstract-signer.d.ts","../../node_modules/ethers/lib.commonjs/providers/community.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-jsonrpc.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-socket.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-websocket.d.ts","../../node_modules/ethers/lib.commonjs/providers/default-provider.d.ts","../../node_modules/ethers/lib.commonjs/providers/signer-noncemanager.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-fallback.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-browser.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-alchemy.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-ankr.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-cloudflare.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-chainstack.d.ts","../../node_modules/ethers/lib.commonjs/contract/types.d.ts","../../node_modules/ethers/lib.commonjs/contract/wrappers.d.ts","../../node_modules/ethers/lib.commonjs/contract/contract.d.ts","../../node_modules/ethers/lib.commonjs/contract/factory.d.ts","../../node_modules/ethers/lib.commonjs/contract/index.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-etherscan.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-infura.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-pocket.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-quicknode.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/@types/node/node_modules/undici-types/header.d.ts","../../node_modules/@types/node/node_modules/undici-types/readable.d.ts","../../node_modules/@types/node/node_modules/undici-types/file.d.ts","../../node_modules/@types/node/node_modules/undici-types/fetch.d.ts","../../node_modules/@types/node/node_modules/undici-types/formdata.d.ts","../../node_modules/@types/node/node_modules/undici-types/connector.d.ts","../../node_modules/@types/node/node_modules/undici-types/client.d.ts","../../node_modules/@types/node/node_modules/undici-types/errors.d.ts","../../node_modules/@types/node/node_modules/undici-types/dispatcher.d.ts","../../node_modules/@types/node/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/@types/node/node_modules/undici-types/global-origin.d.ts","../../node_modules/@types/node/node_modules/undici-types/pool-stats.d.ts","../../node_modules/@types/node/node_modules/undici-types/pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/handlers.d.ts","../../node_modules/@types/node/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-client.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-errors.d.ts","../../node_modules/@types/node/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/api.d.ts","../../node_modules/@types/node/node_modules/undici-types/cookies.d.ts","../../node_modules/@types/node/node_modules/undici-types/patch.d.ts","../../node_modules/@types/node/node_modules/undici-types/filereader.d.ts","../../node_modules/@types/node/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/@types/node/node_modules/undici-types/websocket.d.ts","../../node_modules/@types/node/node_modules/undici-types/content-type.d.ts","../../node_modules/@types/node/node_modules/undici-types/cache.d.ts","../../node_modules/@types/node/node_modules/undici-types/interceptors.d.ts","../../node_modules/@types/node/node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/ts5.6/index.d.ts","../../node_modules/ethers/lib.commonjs/providers/provider-ipcsocket.d.ts","../../node_modules/ethers/lib.commonjs/providers/index.d.ts","../../node_modules/ethers/lib.commonjs/utils/errors.d.ts","../../node_modules/ethers/lib.commonjs/utils/events.d.ts","../../node_modules/ethers/lib.commonjs/utils/fixednumber.d.ts","../../node_modules/ethers/lib.commonjs/utils/maths.d.ts","../../node_modules/ethers/lib.commonjs/utils/properties.d.ts","../../node_modules/ethers/lib.commonjs/utils/rlp-decode.d.ts","../../node_modules/ethers/lib.commonjs/utils/rlp.d.ts","../../node_modules/ethers/lib.commonjs/utils/rlp-encode.d.ts","../../node_modules/ethers/lib.commonjs/utils/units.d.ts","../../node_modules/ethers/lib.commonjs/utils/utf8.d.ts","../../node_modules/ethers/lib.commonjs/utils/uuid.d.ts","../../node_modules/ethers/lib.commonjs/utils/index.d.ts","../../node_modules/ethers/lib.commonjs/abi/coders/abstract-coder.d.ts","../../node_modules/ethers/lib.commonjs/abi/fragments.d.ts","../../node_modules/ethers/lib.commonjs/abi/abi-coder.d.ts","../../node_modules/ethers/lib.commonjs/abi/bytes32.d.ts","../../node_modules/ethers/lib.commonjs/abi/typed.d.ts","../../node_modules/ethers/lib.commonjs/abi/interface.d.ts","../../node_modules/ethers/lib.commonjs/abi/index.d.ts","../../node_modules/ethers/lib.commonjs/constants/addresses.d.ts","../../node_modules/ethers/lib.commonjs/constants/hashes.d.ts","../../node_modules/ethers/lib.commonjs/constants/numbers.d.ts","../../node_modules/ethers/lib.commonjs/constants/strings.d.ts","../../node_modules/ethers/lib.commonjs/constants/index.d.ts","../../node_modules/ethers/lib.commonjs/wallet/base-wallet.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/wordlist.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/wordlist-owl.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/lang-en.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/wordlist-owla.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/wordlists.d.ts","../../node_modules/ethers/lib.commonjs/wordlists/index.d.ts","../../node_modules/ethers/lib.commonjs/wallet/mnemonic.d.ts","../../node_modules/ethers/lib.commonjs/wallet/hdwallet.d.ts","../../node_modules/ethers/lib.commonjs/wallet/json-crowdsale.d.ts","../../node_modules/ethers/lib.commonjs/wallet/json-keystore.d.ts","../../node_modules/ethers/lib.commonjs/wallet/wallet.d.ts","../../node_modules/ethers/lib.commonjs/wallet/index.d.ts","../../node_modules/ethers/lib.commonjs/ethers.d.ts","../../node_modules/ethers/lib.commonjs/index.d.ts","../../rpc-core/dist/enums.d.ts","../../rpc-core/dist/entities/account.d.ts","../../rpc-core/dist/entities/financial/asset.d.ts","../../rpc-core/dist/entities/financial/currency.d.ts","../../node_modules/jsbi/jsbi.d.ts","../../node_modules/@uniswap/sdk-core/dist/chains.d.ts","../../node_modules/@uniswap/sdk-core/dist/addresses.d.ts","../../node_modules/@uniswap/sdk-core/dist/constants.d.ts","../../node_modules/@ethersproject/bytes/lib/index.d.ts","../../node_modules/@ethersproject/bignumber/lib/bignumber.d.ts","../../node_modules/@ethersproject/bignumber/lib/fixednumber.d.ts","../../node_modules/@ethersproject/bignumber/lib/index.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/token.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/basecurrency.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/nativecurrency.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/currency.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/fractions/fraction.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/fractions/currencyamount.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/fractions/percent.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/fractions/price.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/fractions/index.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/ether.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/weth9.d.ts","../../node_modules/@uniswap/sdk-core/dist/entities/index.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/computepriceimpact.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/computezksynccreate2address.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/sortedinsert.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/sqrt.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/validateandparseaddress.d.ts","../../node_modules/@uniswap/sdk-core/dist/utils/index.d.ts","../../node_modules/@uniswap/sdk-core/dist/index.d.ts","../../rpc-core/dist/entities/financial/currency_amount.d.ts","../../rpc-core/dist/entities/financial/fungible_token.d.ts","../../rpc-core/dist/entities/financial/fungible_token_amount.d.ts","../../rpc-core/dist/entities/financial/non_fungible_token.d.ts","../../rpc-core/dist/entities/financial/semi_fungible_token.d.ts","../../rpc-core/dist/entities/state.d.ts","../../rpc-core/dist/types.d.ts","../../rpc-core/dist/interfaces/account_cluster.d.ts","../../rpc-core/dist/interfaces/admin.d.ts","../../rpc-core/dist/interfaces/application.d.ts","../../rpc-core/dist/interfaces/instance.d.ts","../../rpc-core/dist/interfaces/operation.d.ts","../../rpc-core/dist/interfaces/token.d.ts","../../rpc-core/dist/interfaces/orby.d.ts","../../rpc-core/dist/entities/library_request.d.ts","../../rpc-core/dist/actions/account_cluster.d.ts","../../rpc-core/dist/actions/admin.d.ts","../../rpc-core/dist/actions/application.d.ts","../../rpc-core/dist/actions/instance.d.ts","../../rpc-core/dist/actions/operation.d.ts","../../rpc-core/dist/actions/token.d.ts","../../rpc-core/dist/entities/financial/account_balance.d.ts","../../rpc-core/dist/constants.d.ts","../../rpc-core/dist/utils/utils.d.ts","../../rpc-core/dist/index.d.ts","../src/orby_provider.ts","../src/wallet.ts","../src/index.ts","../../node_modules/@types/big.js/index.d.ts","../../node_modules/@types/bn.js/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.uniq/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/stylis/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/validator/lib/isboolean.d.ts","../../node_modules/@types/validator/lib/isemail.d.ts","../../node_modules/@types/validator/lib/isfqdn.d.ts","../../node_modules/@types/validator/lib/isiban.d.ts","../../node_modules/@types/validator/lib/isiso31661alpha2.d.ts","../../node_modules/@types/validator/lib/isiso4217.d.ts","../../node_modules/@types/validator/lib/isiso6391.d.ts","../../node_modules/@types/validator/lib/istaxid.d.ts","../../node_modules/@types/validator/lib/isurl.d.ts","../../node_modules/@types/validator/index.d.ts","../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[137,175,321,322],[137,175,264,320],[137,175,264,320,321],[137,175,273],[137,175,273,274],[137,175,274,275],[137,175],[137,175,223],[137,175,190,223],[137,175,327],[137,175,343],[137,175,331,333,334,335,336,337,338,339,340,341,342,343],[137,175,331,332,334,335,336,337,338,339,340,341,342,343],[137,175,332,333,334,335,336,337,338,339,340,341,342,343],[137,175,331,332,333,335,336,337,338,339,340,341,342,343],[137,175,331,332,333,334,336,337,338,339,340,341,342,343],[137,175,331,332,333,334,335,337,338,339,340,341,342,343],[137,175,331,332,333,334,335,336,338,339,340,341,342,343],[137,175,331,332,333,334,335,336,337,339,340,341,342,343],[137,175,331,332,333,334,335,336,337,338,340,341,342,343],[137,175,331,332,333,334,335,336,337,338,339,341,342,343],[137,175,331,332,333,334,335,336,337,338,339,340,342,343],[137,175,331,332,333,334,335,336,337,338,339,340,341,343],[137,175,331,332,333,334,335,336,337,338,339,340,341,342],[137,172,175],[137,174,175],[137,175,180,208],[137,175,176,187,188,195,205,216],[137,175,176,177,187,195],[132,133,134,137,175],[137,175,178,217],[137,175,179,180,188,196],[137,175,180,205,213],[137,175,181,183,187,195],[137,174,175,182],[137,175,183,184],[137,175,187],[137,175,185,187],[137,174,175,187],[137,175,187,188,189,205,216],[137,175,187,188,189,202,205,208],[137,170,175,221],[137,175,183,187,190,195,205,216],[137,175,187,188,190,191,195,205,213,216],[137,175,190,192,205,213,216],[137,175,187,193],[137,175,194,216,221],[137,175,183,187,195,205],[137,147,151,175,216],[137,147,175,205,216],[137,142,175],[137,144,147,175,213,216],[137,175,195,213],[137,142,175,223],[137,144,147,175,195,216],[137,139,140,143,146,175,187,205,216],[137,139,145,175],[137,143,147,175,208,216,223],[137,163,175,223],[137,141,142,175,223],[137,147,175],[137,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,175],[137,147,154,155,175],[137,145,147,155,156,175],[137,146,175],[137,139,142,147,175],[137,147,151,155,156,175],[137,151,175],[137,145,147,150,175,216],[137,139,144,145,147,151,154,175],[137,175,205],[137,142,147,163,175,221,223],[137,175,196],[137,175,197],[137,174,175,198],[137,175,199,215,221],[137,175,200],[137,175,201],[137,175,187,202,203],[137,175,202,204,217,219],[137,175,187,205,206,207,208],[137,175,205,207],[137,175,205,206],[137,175,208],[137,175,209],[137,175,187,211,212],[137,175,211,212],[137,175,180,195,205,213],[137,175,214],[175],[135,136,137,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222],[137,175,195,215],[137,175,190,201,216],[137,175,180,217],[137,175,205,218],[137,175,194,219],[137,175,220],[137,175,180,187,189,198,205,216,219,221],[137,175,205,222],[137,175,346,347,348],[137,175,351],[137,175,354,355,356,357,358,359,360,361,362],[137,175,187,190,192,195,205,213,216,222,223],[137,175,270],[137,175,269],[137,175,277,280],[137,175,277,279],[137,175,277,279,280],[137,175,269,272,277,280,281],[137,175,269,272],[137,175,281,282,283,284],[137,175,272,281],[137,175,272,280,281,282],[137,175,277,279,280,285,286,287],[137,175,278],[137,175,276,278,280],[137,175,277],[137,175,270,271,272,288,294],[137,175,288],[137,175,289,290,291,292,293],[137,175,237,238,239],[137,175,237],[137,175,239,240,241,242,243],[137,175,237,238,239,240,242],[80,137,175,237,238],[80,137,175],[77,78,79,137,175],[137,175,245,246,247,248],[80,100,123,124,137,175,225,237,244],[80,123,124,125,137,175,225,237,244],[123,124,125,126,137,175],[124,137,175,225,244],[100,123,125,137,175,225,237,244],[81,82,83,84,85,86,87,88,89,137,175],[88,90,137,175,237],[73,80,90,94,108,127,137,175,225,237,244,249,256,262],[103,104,105,106,107,137,175],[90,137,175],[90,137,175,237],[137,175,263],[80,98,99,100,101,137,175,237],[94,100,108,109,137,175],[100,137,175],[98,102,114,137,175],[100,102,137,175,237],[90,94,137,175],[95,97,98,99,100,101,102,109,110,111,112,113,114,115,116,117,118,119,120,121,122,128,129,130,131,137,175,224],[94,97,137,175,237],[96,100,137,175],[98,102,111,112,137,175,237],[98,112,137,175],[97,98,100,102,127,137,175],[98,102,137,175],[98,102,111,112,114,137,175,237],[98,112,113,137,175,195,223],[94,98,100,102,108,109,110,137,175,237],[98,100,102,112,137,175],[98,112,113,137,175],[80,90,94,95,98,99,137,175,237],[100,108,109,110,137,175],[80,94,95,100,108,137,175],[94,137,175],[91,92,93,137,175],[90,94,137,175,237],[75,137,175],[96,137,175,225],[74,75,76,96,137,175,226,227,228,229,230,231,232,233,234,235,236],[137,175,232],[137,175,231,233],[90,108,137,175,225],[90,137,175,225,237,250,256,257],[137,175,250,257,258,259,260,261],[137,175,237,256],[90,137,175,225,250,258],[137,175,251,252,253,254,255],[137,175,252],[137,175,251],[137,175,265,266,302,310],[137,175,265,302,310],[137,175,265,310],[137,175,265,296,302,310],[137,175,265,268,302],[137,175,265],[137,175,266,298],[137,175,267],[137,175,268,269,295],[137,175,265,268],[137,175,269,295,296,297],[137,175,265,267],[137,175,297,298,299,300],[137,175,265,266,267,268,296,297,298,299,300,301,302,303,304,305,306,307,308,309,311,312,313,314,315,316,317,318,319],[137,175,265,266,302],[137,175,302],[137,175,265,296,302],[137,175,303,304,305,306,307,308],[137,175,265,266,268,296,297,298,301]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbd8f7cbc0832353a1db0c80ffe50f4d623bcf992faac71b4aef9e0aa6f4f33e","impliedFormat":1},{"version":"643b5be3fb728581cdb973f3937606d4925a5270d367a38366e4ddc6b30ba688","impliedFormat":1},{"version":"f7b9aaeace9a3837c47fad74de94ba117751951904a6cb6f6a2340ca3a5052d2","impliedFormat":1},{"version":"b59a8f409202638d6530f1e9746035717925f196f8350ef188535d6b6f07ac30","impliedFormat":1},{"version":"10752162e9a90e7f4e6f92d096706911e209f5e6026bb0fe788b9979bf0c807b","impliedFormat":1},{"version":"91010341cfcb3809686aefe12ceaa794087fcd0c7d4d72fc81d567535c51f7b9","impliedFormat":1},{"version":"a5fa720bdcd335d6f01999c7f4c93fb00447782db3c2fad005cc775b1b37b684","impliedFormat":1},{"version":"e11b02953d2bf012fc8828336030f51c88c1f5b6774b3faef11a24e41fc07e94","impliedFormat":1},{"version":"18282a2d197d5d3b187d6cfe784b0bfeb36dc3caed79d24705c284506c6a7937","impliedFormat":1},{"version":"bc7f372120474ef5e195f4c5627aa9136af9dfc52c3e81f5404641f3eb921b20","impliedFormat":1},{"version":"c897edb7e0074c2cb1a118ad1f144d4095a76e13023c1c9d31499a97f0943c6d","impliedFormat":1},{"version":"5123f400963c1ae260ba78bd27826dd5ada91cc3df088a913fb709906c2f0fed","impliedFormat":1},{"version":"f6c69d4211c1c0dc144101b7d564eec8992315a5b652108ab44e617fdfb64a9f","impliedFormat":1},{"version":"3a0b914cd5a33a695925999bc0e20988f625ff92224224a60356531cc248324b","impliedFormat":1},{"version":"3b9ef4448417e777778007a2abbfb171fbb400c4012560331330c89a8fd08599","impliedFormat":1},{"version":"f7ecd4552cad04f600bd64a8cb309bf0696c6108285e85a57a8a5355467920ee","impliedFormat":1},{"version":"80ae4448e40828f253d49dd0cba14ddaa948c4988d54d6bbd558015c4727f1f7","impliedFormat":1},{"version":"36ccd9bc1c33bf3cce297133d37acfc376d89ea0aff3111cf1792498ae5732d4","impliedFormat":1},{"version":"a5bb15e8903456dedd2a0c6c7f29b520b75a02fc44b36248fbac98e8b3106f2e","impliedFormat":1},{"version":"6d2e4114ccd05fb0cd657cfb73419eeb7e1464446aabfe4e652d4ad460c1fd1a","impliedFormat":1},{"version":"cbd9ef1247380d38adbf15a9d687c3cbb2c91f8b61dfb37be0708a1186877c4e","impliedFormat":1},{"version":"dc9c4504acae3c2b33cf18392edaa470ccb4e5bf1e44759f44fa025214f7984f","impliedFormat":1},{"version":"8827ca3cd0a35d4a2da2b460620586a68dc0681b19f08559bc382f453ae0a915","impliedFormat":1},{"version":"5c56eea87bcede67b8df6a08185aaa023080fe74f21e7d262e5e0c5885ea6747","impliedFormat":1},{"version":"2a6140dea5f4014fbf2c301bcefcac865d9b5354ccc09865b309ec25b170eb24","impliedFormat":1},{"version":"62fbeac38ecc6d7b5ffe8b9c10c60a519963c8bc5a06d7260446a45fe920c01f","impliedFormat":1},{"version":"4e6e07e3b04d0ff8526bdc5f091fc2b42e18e245d2cfacabb81bb58acd670f4a","impliedFormat":1},{"version":"b0b3685d31aaec437a1976c20e2b372e51df0d857fa809d62490f03a0ae8f638","impliedFormat":1},{"version":"6cdb8c1473687522f8ef65e1620bb8d703a02f4c570c662bd99ebf442ec9c3ff","impliedFormat":1},{"version":"799e4c2b1aae2c8531a20544168c528c7994f13bbce20f4813e30cde1ca72cb9","impliedFormat":1},{"version":"c0a7ac0e0b21d67124311e0a70138df950cfa22360ae582c5d7b95a9a31f3436","impliedFormat":1},{"version":"c39a02bcdde4e5cf742febb47995c209f651249aa3f339d8981b47eb157dbc7f","impliedFormat":1},{"version":"3b63f1706adba31dd86669c3745ce127e1d80b83b1376942a5ae3653089b526f","impliedFormat":1},{"version":"d93c86ac706e8a3eb5c4fd2c3965d793c192438b44b21f94a422029d037113cd","impliedFormat":1},{"version":"c775b9469b2cbb895386691568a08c5f07e011d79531c79cb65f89355d324339","impliedFormat":1},{"version":"cfa66f842c639b28c9d54ef1b95730f05d3751dd98aa1edab898e6c75ccaac9a","impliedFormat":1},{"version":"a0564e9ad75067bfcf0dce1cfe4bfbc7dd6b191c985723e45be69c47f43fe268","impliedFormat":1},{"version":"faf27ee80055fc9f216a481466dae366ff96bf2d2e3205e82cc5f19e26532aaa","impliedFormat":1},{"version":"60258fd6c811627dabb45bc71ca506554d1595e8c23b929c69cc4050298e834a","impliedFormat":1},{"version":"fc8503a9751c177608cde9bc81482fcfd85e5eb53bd75e4d5bf2fbdd2ca1dd44","impliedFormat":1},{"version":"b21157929842b9593200c73299fffde810be1b6c2554437e319db0025ecd53ae","impliedFormat":1},{"version":"cb929086d0d062bb948a1726e87c604db6387d885a846838a4da40e006c51deb","impliedFormat":1},{"version":"cb2e0b454aed00d0109fa243d681650916750a960736755edb673d4c2fc495dc","impliedFormat":1},{"version":"2a5c6f30ace32a85b24dec0f03525ed0a40190104be5876bd9107f92cca0166b","impliedFormat":1},{"version":"4d752856defdcbb39e2915429f85a92aac94406eb1bdef2855b908dde5bc013b","impliedFormat":1},{"version":"475ea5c202926ee3ea22429c775087b479a0040e9a9cf710b6838a11b91520a1","impliedFormat":1},{"version":"6cde23545d1e8d78b222c594e0a66de065311e0c6b0e3989feffb5c7f6b66560","impliedFormat":1},{"version":"d7781fc81737645eeef3b7107c6796f95fb4791cb1a908b1f0254117b2536477","impliedFormat":1},{"version":"156d4829532c7d26f824ab7bb26b1eced1bfaf5711d426e95357004c43f40d98","impliedFormat":1},{"version":"2d9a0ac7d80da8b003ac92445f47891c3acdca1517fb0a0ca3006e2d71e1d2ab","impliedFormat":1},{"version":"c500c79e0c7b0aef46656f76d49625c38c7bdbea8f63dc1005a2d2982cc1f4d4","impliedFormat":1},{"version":"8c04e9d03324f465d5fb381371c06799cd06234f2aa83bdf4318cb9728132b80","impliedFormat":1},{"version":"616102e59c37f0f84d209b865f84fb186a29bb0bf112bd975be097113f854b89","impliedFormat":1},{"version":"a14590df3ef464f8a9dff9514df70c7aeff05c999f447e761ec13b8158a6cab0","impliedFormat":1},{"version":"98cbb6e3aa1b6610e7234ff6afa723b9cb52caf19ecb67cf1d96b04aa72b8f88","impliedFormat":1},{"version":"9c8c50b4d0c83256193970e68a1c495b09e92ef1b8e48c38e1e9cb05122014b9","impliedFormat":1},{"version":"f9575d2a80566ba8d17d2260526ffb81907386aa7cb21508888fb2e967911dca","impliedFormat":1},{"version":"d388e40b946609b83a5df1a1d12a0ea77168ee2407f28eac6958d6638a3fbf69","impliedFormat":1},{"version":"83e8adc1946281f15747109c98bd6af5ce3853f3693263419707510b704b70e5","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d8cfe625f967048fff0fe9892e427e7f0596a350b9b623449d2f116fcba8e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"7b02d1daadbc869cd68285e202f30e355f0609c6d383eda84775e6352a2065c2","affectsGlobalScope":true,"impliedFormat":1},{"version":"2aadab4729954c700a3ae50977f5611a8487dc3e3dc0e7f8fcd57f40475260a8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89","impliedFormat":1},{"version":"bd65dce9d4c997d308be95bbb0a81830a6f95383ee1fd8db5fa08bbbdd74b0ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"51bb58ef3a22fdc49a2d338a852050855d1507f918d4d7fa77a68d72fee9f780","impliedFormat":1},{"version":"9b8d21812a10cba340a3e8dfacd5e883f6ccec7603eae4038fa90a0684fa9a07","impliedFormat":1},{"version":"cef8931bc129687165253f0642427c2a72705a4613b3ac461b9fa78c7cdaef32","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"0c5de3b3b7d7cd0da81ad4cc12742fc1b7576d1d3ed46da5cd7678999da9d8d8","impliedFormat":1},{"version":"e46fa644658c2d6e5c85e954ea76b92c97d63f0851d3ccdab8c2a80d5962aaa9","impliedFormat":1},{"version":"1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","impliedFormat":1},{"version":"548d9051fd6a3544216aec47d3520ce922566c2508df667a1b351658b2e46b8d","impliedFormat":1},{"version":"c175f4dd3b15b38833abfe19acb8ee38c6be2f80f5964b01a4354cafb676a428","impliedFormat":1},{"version":"b9a4824bb83f25d6d227394db2ed99985308cf2a3a35f0d6d39aa72b15473982","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8452dcf0e3f7498da7034c9bead9935f0faa40f01e9ac61c4b4d8c9e6d872c6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4895fb67bd110c576d2c25db1a9369e7682ad26b2dcbecbdb0c621c3f6c94298","impliedFormat":1},{"version":"ab212d4276d07309bac9ccc93e24ad5ad1049e14f538344886221c2be7deef05","impliedFormat":1},{"version":"f77c60ba54edbc533f72ed4470e12864c482dfef94105a202cee4b1470a0150f","impliedFormat":1},{"version":"6b3c4aa0ce6eb9cf6187e61d352cd269ff0e492f333ae102dda121e76f90285c","impliedFormat":1},{"version":"565fda33feca88f4b5db23ba8e605da1fd28b6d63292d276bdbd2afe6cd4c490","impliedFormat":1},{"version":"e822320b448edce0c7ede9cbeada034c72e1f1c8c8281974817030564c63dcb1","impliedFormat":1},{"version":"ac181d6df6161dec3d61db812dc230858a478bf8b7b79de9169afccce5b5ab3a","affectsGlobalScope":true,"impliedFormat":1},{"version":"16bc7fc733bade239218d2f4351b0b53d7482c5aa917e5e12cf294c688f2e1b3","impliedFormat":1},{"version":"31682ca32a4013297ef3f483bd4de7f7a4818d9c1d52c29aaca24f78a737d90d","impliedFormat":1},{"version":"17bc38afc78d40b2f54af216c0cc31a4bd0c6897a5945fa39945dfc43260be2c","impliedFormat":1},{"version":"945467a431970f6888ce0314b3c80a622817316312d11d0624895b1f8611e0c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9e2e0c6e5e9ba4aff4d22b7eab4a4b4e7df9612b7e13f28001913dd5cba73ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"de905bc5f7e7a81cb420e212b95ab5e3ab840f93e0cfa8ce879f6e7fa465d4a2","impliedFormat":1},{"version":"91b64f6b37cfe86783b9a24d366f4c6c331c3ffb82926c60107cbc09960db804","impliedFormat":1},{"version":"bede3143eeddca3b8ec3592b09d7eb02042f9e195251040c5146eac09b173236","impliedFormat":1},{"version":"64a40cf4ec8a7a29db2b4bc35f042e5be8537c4be316e5221f40f30ca8ed7051","impliedFormat":1},{"version":"294c082d609e6523520290db4f1d54114ebc83643fb42abd965be5bcc5d9416b","impliedFormat":1},{"version":"a1fde752d2e310310f949aaf7f1702a21dfb41a43b07bbfb75ff1f7c7ca5a826","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"ce2fd18db93f879d300db4ae7738c28f3eefc7c2d9274ab7d22046f1d71ccd6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b85151402164ab7cb665e58df5c1a29aa25ea4ed3a367f84a15589e7d7a9c8ca","impliedFormat":1},{"version":"5d8cd11d44a41a6966a04e627d38efce8d214edb36daf494153ec15b2b95eee2","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcfc34bdee91e8895c3431438cf1e5c2a7d4ca26fa14cca505317b897f7943dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"b1a9bf3c14dd2bac9784aaffbeabd878f5f6618a4fd3bfc1633a2758b0e96f32","impliedFormat":1},{"version":"dc058956a93388aab38307b7b3b9b6379e1021e73a244aab6ac9427dc3a252a7","impliedFormat":1},{"version":"f33302cf240672359992c356f2005d395b559e176196d03f31a28cc7b01e69bc","impliedFormat":1},{"version":"3ce25041ff6ae06c08fcaccd5fcd9baf4ca6e80e6cb5a922773a1985672e74c2","affectsGlobalScope":true,"impliedFormat":1},{"version":"652c0de14329a834ff06af6ad44670fac35849654a464fd9ae36edb92a362c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"94a37720dc0163bddcbdf01f823af40b55c136ef65356d7a65e4aacfd20a72dc","impliedFormat":1},{"version":"f47fc200a9cad1976d5d046aa27b821918e93c82a2fd63cf06b47c9d0f88aaae","impliedFormat":1},{"version":"cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a","impliedFormat":1},{"version":"cb41c174db409193c4b26e1e02b39a80f3050318a6af120cc304323f29e1ec1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"37bef1064b7d015aeaa7c0716fe23a0b3844abe2c0a3df7144153ca8445fe0da","impliedFormat":1},{"version":"75bd411256302c183207051fd198b4e0dbab45d28a6daf04d3ad61f70a2c8e90","impliedFormat":1},{"version":"64fb32566d6ac361bdff2fafb937b67ee96b0f4b0ea835c2164620ec2ad8ea09","impliedFormat":1},{"version":"135c8de69bf2cf6d65e3768b16918fc896f2959a4de6a061bfd9a32b9e8652f4","impliedFormat":1},{"version":"b0b8ac2d71ea2251f4f513c7d644db07a46446a6e4bccbcc23ccbefbe9ac3ac4","impliedFormat":1},{"version":"c7cae4f5befd90da675906c456cc35244edad7cdcedb51fb8f94d576f2b52e5e","impliedFormat":1},{"version":"757767485a9b48e58684d16a3a22471b061d2cc10919a60abeec94e643bb0027","impliedFormat":1},{"version":"66ef9bd718776792705d01be029559b4f13c7978727dc364318fde5645d26abc","impliedFormat":1},{"version":"c4e720b6dd8053526bedd57807a9914e45bb2ffbda801145a086b93cf1cda6d5","impliedFormat":1},{"version":"1dc465a4431aaa00bb80452b26aa7e7ec33aca666e4256c271bdf04f18fef54d","impliedFormat":1},{"version":"ea5916d20a81cc0fd49bd783fce0837b690f2d39e456d979bc4b912cb89ceefc","impliedFormat":1},{"version":"dccc0a4cbe7cbabcf629ef783d3226ed28649f1215eb577a2e2cdb1129347a37","impliedFormat":1},{"version":"add54a06a7a910f6ed0195282144d58f24e375b7d16bd4a5c5b9d91bb4b5e184","impliedFormat":1},{"version":"dc03aa8332b32c2d7cd0f4f72b4a8cc61bbc2806eb18fa841ec3de56b8e806a6","impliedFormat":1},{"version":"dd56e1c623e5b14260b6d817f4f26d6cc63c77f5bf55321306d118617fc20c7d","impliedFormat":1},{"version":"d4cb93b91ab77070c8baebdcc5c951954ee219900795cc7e34aaef6be0081a2b","impliedFormat":1},{"version":"93ff68f1f2b1be14e488d472820e2cbc3c1744e4b55aea9a12288f612e8cf56f","impliedFormat":1},{"version":"7e4d2c8b02fc2529a60bd495322092644b5cf2f391b10bea4bcae8efea227c32","impliedFormat":1},{"version":"219b5d42961185874397f62f12d64e74e0825d260054984e0248010de538015e","impliedFormat":1},{"version":"27b5570022c0f24a093c0718de58a4f2d2b4124df0f7ff9b9786874c84c8af27","impliedFormat":1},{"version":"ad37fb454bd70dd332bb8b5047fbc0cf00ddfc48972d969a8530ab44998b7e70","impliedFormat":1},{"version":"265bdbd67761e88d8be1d91a21ec53bb8915e769a71bdc3f0e1e48fdda0a4c6e","impliedFormat":1},{"version":"817e174de32fb2f0d55d835c184c1248877c639885fcaed66bab759ff8be1b59","impliedFormat":1},{"version":"ea76d1231ea876a2a352eae09d90ae6ef20126052e0adfdc691437d624ebcc47","impliedFormat":1},{"version":"0961671995b68a718e081179cfa23c89410b97031880cf0fea203f702193385a","impliedFormat":1},{"version":"b6592f9a1102da83ba752d678e5e94af9443bf1ab70666f2f756ba1a85b8adfc","impliedFormat":1},{"version":"d1c933acc6c2847d38c7a29c3d154ef5a6b51e2ad728f682e47717524683e563","impliedFormat":1},{"version":"44380b6f061bbb7d7b81b3d9973c9a18b176e456eee4316a56c9e2932df77bfd","impliedFormat":1},{"version":"f6e2eefc6ebbb202d08fb7510178696fd33b4775949b317993e10e35003765f8","impliedFormat":1},{"version":"32d5ec19fbe22a610e11aa721d9947c1249e59a5b8e68f864d954f68795982d1","impliedFormat":1},{"version":"e1fa85a34e9710a03fb4e68a8b318b50cde979325a874a311c0429be2e9a6380","impliedFormat":1},{"version":"998c9ae7ae683f16a68d9204b8dea071377d886ed649f7da777dce408ede67b7","impliedFormat":1},{"version":"e02fe9a276b87b4c10c56cbcee81f8c6437d21a0a68eeb705e23105c3620677e","impliedFormat":1},{"version":"d56bc539844eceaaae11714c214add744ace0227da77c91e62d8c3cd0ee78964","impliedFormat":1},{"version":"9199f6ead2ae205b4a0efe8b427706b7b9856f2fb51587ca25e9161cfee2b163","impliedFormat":1},{"version":"120a62730ef5b8b61b4a82005c421506d0bf4f5a2fbe84b88149c79c894900da","impliedFormat":1},{"version":"3ca2a4b5f57c480c798f8310b3d3c10dc24fa73d5618889a27835eb80f783fa3","impliedFormat":1},{"version":"faf92d569360b567c70c11b08aadd997fb2ca1847687f370eaea8eda19f807f2","impliedFormat":1},{"version":"38e878406954753d87c2b0db8b5146da5abb86c44139526cba2046cc70fbd1d4","impliedFormat":1},{"version":"c500d215a2e0490d77f0f926507adac154bfc5cfcb855ffdbe2c600e67fbf36f","impliedFormat":1},{"version":"6a22003e006988f31654d8bf884208ff753d64bcb980a89e4c5eb933bf446d09","impliedFormat":1},{"version":"11bd81c4066fb0794dd9bbbe7657028d49ffdc7418e2cc120e1a6c32cd10131b","impliedFormat":1},{"version":"7f02dfc714a76c78325cdfbc138b57531103490dc9d88affdb3f4a54fdd879a0","impliedFormat":1},"eedd467272c1abaa67f7bc478d96b37594d7082697c85ccdb1063075504adb56","3d585338c8d8366bcb8ac47eefcd8627b35886baf5189c1a57a520d73110bc37","d04fa3b3756cc571495e3c69fc858cec46e39232802c2d2873f4ee4466ad6b53","b4e23f4efaf4d7266f886c8fdace558c23afb908ec85f6a426d1c14fac3c0e97",{"version":"e788661cb1508db23611453d1ee67413429d3f412a1ef589ebe95aed52047588","impliedFormat":1},{"version":"014f572185552227aeff1f109895e16455ba58d24655062779c52ef83b080321","impliedFormat":1},{"version":"1284e8f2f903115f04f27f98495a97eff13ff9fe1f5199dec944a2853a408826","impliedFormat":1},{"version":"d0efd4f632c93e90d91ee5e4611f3d7e4bb946c07eb6824bcaf08cf589f18c5d","impliedFormat":1},{"version":"691732c9f7b276b9692e5b37735fca2962d323f3c6b01ffb81d76ed8df8917e0","impliedFormat":1},{"version":"c8757e7dcea280e5dd2b29dd0fb873b5692b1ac66d96b38ecbaa3bd2b85570d8","impliedFormat":1},{"version":"883c2e5229997a91f51959fcf6dea6e0c588c393a748ecb5914bac36da166ae0","impliedFormat":1},{"version":"eb589f99701ed5e876f7aff403ac119e33a6d52714055489d53e59f7747e5bc1","impliedFormat":1},{"version":"613dd72219d3f6e2c269824f615d0b76060d16d1a4a1270d99aacc5cf1a3e09e","impliedFormat":1},{"version":"2c414f90866049acbd59a9dad2e155282a02080be773cbfb45ef5aaeae4c43c7","impliedFormat":1},{"version":"01a4823f194960e7d6cf43ddf58cc477ce43870b76c03764f3893c8ef9a505df","impliedFormat":1},{"version":"1c6615826296916563f6f88e21e8c1d1be76cc8c2a242fc2d51ffcaf856ed7d8","impliedFormat":1},{"version":"5ca71a9d355e4cd4446239366a3c281964a9623c01dac99021ad5f1a58f1c11f","impliedFormat":1},{"version":"c7764a8493c199941aa2f7689ac8d443162c18b19f02e4a3838b20135c485772","impliedFormat":1},{"version":"a77676cd14de48df1be967e9fad0825f259d5c6d8ab753251ea31886ae2467ec","impliedFormat":1},{"version":"b69ba53fe9ac4d116dfbae858949f81aff71b948205e4e0aa0237a67fb3e47a9","impliedFormat":1},{"version":"9b0b92c72051abf6a3fab9c943e9e5e076686119ae53ffd1c6f3caf4a5151cef","impliedFormat":1},{"version":"a6aa4f1777cf98dc18c63ee05de4c2d7eb0c9f7749354f4680bc86b60d618e83","impliedFormat":1},{"version":"ad30b20c6aec0fa39f7ca7c6922225450e67aea3b84a691baa74996da6c585ce","impliedFormat":1},{"version":"8b94d1eabccaec5b77706c4a88225d28a4ab8bc46da7af29dc303c9ec2950fea","impliedFormat":1},{"version":"5947cd6e46d10873b88edfea7f25a400a838e0fbf7def96bf45ad72b1913e683","impliedFormat":1},{"version":"dd6eead0d137363bf4202b0fef26a7b3af71d83c364d2ac4d729e4f1de7d82ed","impliedFormat":1},{"version":"d7ef97d18136014b6e15927a84bec746ca84b25c7ff254ab639285c3e6901f44","impliedFormat":1},{"version":"e3da81b21477fb45fe1d9981d56f0c5390f526724990f0156fc2fed235fdbf3c","impliedFormat":1},{"version":"b84e91d84f161245dbda145f2a7e8d0891583763d9a8e24e331ab00979ded8da","impliedFormat":1},{"version":"8baa163aa726dc495ee1ea7350906b3fe5f16b383b7105b98414be264fcd27f3","impliedFormat":1},{"version":"823739a2e34a0cde0a796c14bfc88978a1e70470023b9d885bacaa5d1b0a59ae","impliedFormat":1},"963b248c5e219addf310cdc9e02286eca11c32cfdf7a6cadb1ce4e8285870b37","521efe04749e1692be1c46072367f630ed9f9f58751f6a44a2b61bcd2efb4525","0c17cc207f77a8e6db2afd2bce90ceac965d63461d05366efede26be15a8b662","029b0570532b4e35feda26c666d6dd927ad686b03c63ac8a9a6a14144c2cc66d","b94f520265b5b118a66abe351426a773f647f63a5cdb2bf724fec16977a891ff","98950195690857da6090f6f1f64124ffb6553a6817965518875338b7d149385f","2a0912d73a0e604264a1f3bd59b3cd3f60b47115e9a95c8f912379ff8395452d","7008441c90e1099073f15b566f04cca2b860160a472a6a144c31d2cdd8a30b27","af657c3baf51752931d0c04c3efe09b8455c8af982c8c518fcd9136a20832368","ca8fc59749042a35f93ad00c8c746152a73afe12478b75962c71dc223ca50f30","7db14fcb9b2c72e499a139d6a9f293a85ed0e0279f83dc636fc5a3d151d5807c","3be624014571e613415d3cc6a17474722dc5fda95f2286f96695f29ccd144505","4605a761daaf45de8c6e1155de7d326d21caa22cc7f90a11e9073e16d112b338","15994fa24a45ac9b2042d0b49fdeba8c7bbce024f9496a21b339e0e42e367d1c","99a236027561320530bc455a725802f1d174356a472766cc725a10aac44bfee1","879f99233a4aa17ef5e93e702ecc477ca8388553ceb8f04ece15f03144f7c823","c3e8d691ba38f57e051bf1b7f714a962ad6b2683ef207efca6140ed0efae0265","13a9a73653cc002afe938b148693020ecf5bf53df4ac101a35ecfa8565bd725b","bd224774a5fa5e7f4c5b1109dc4a19f179052d58e0e54926ab76477a4809075e","2f07c038666cee7f3899325b69b19b5e98524c1281e78507ee418e77577fce31","457c552d4fc423a7158facdc581f0370d124927ccfb501c2d9e1ccce4a008c67","b942407e6923625ce4aada3f88dfed22fafa388158436f84fb2f18bd6266d807","ac74a8482e7fbb0e8e6015cc45a074aee3205f5e9582934c53da9715b9bb37f2","d118de74796fd224ab46d5ab89d9be3bae29326919e8d51df191500d8bb634c4","360b572cd792bad351780205380f703640c80c6b975007434e58184246f36806",{"version":"6bf257dc52ca76817eeb77070a2c6e9b263e4f3d7b7eb898b8fe4bf22a4b670a","signature":"b82876272ee83bae7e1092f399d294b3989be6c9b7445392f80d974cdbe0d6db"},{"version":"ae4c3a05b5e75de9b1bfd6206d0ef4905dcc0eb8adcc0c33f978277e3a79afaf","signature":"f821f25132767aa9ec9473b28cd92de39d96322e0ee943007e83a5b37466ccb8"},{"version":"e869e6b289ab76e8842a946a476c8a35d2b62884c06662df43726bda7623b771","signature":"903a095371c59ea09330c98e6dbc48d9dd2133515500eaca9ee9ee66830c75f9"},{"version":"ef50b93a202c92c16ba0aa66ac03ded00a213eea4c2fa30adbc191a944f76f12","impliedFormat":1},{"version":"ef9ba722fb39e39833a2dc9da7d81ffc0888d72817cd591bf4df176a15071388","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"68cc8d6fcc2f270d7108f02f3ebc59480a54615be3e09a47e14527f349e9d53e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"ceeb65c57fe2a1300994f095b5e5c7c5eae440e9ce116d32a3b46184ab1630ec","impliedFormat":1},{"version":"f90d4c1ae3af9afb35920b984ba3e41bdd43f0dc7bae890b89fbd52b978f0cac","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"bdf0ed7d9ebae6175a5d1b4ec4065d07f8099379370a804b1faff05004dc387d","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"288d992cd0d35fd4bb5a0f23df62114b8bfbc53e55b96a4ad00dde7e6fb72e31","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"40c800d4b0ce4abae987cedefd965448345b0b36752901a3503fc7cae5dbeb85","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"aa17748c522bd586f8712b1a308ea23af59c309b2fd278f6d4f406647c72e659","affectsGlobalScope":true,"impliedFormat":1},{"version":"480ffa66827143d60025514f0d979f7bc790024821e5ecc12967ce13a7e3e08a","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","impliedFormat":1},{"version":"c6cdcd12d577032b84eed1de4d2de2ae343463701a25961b202cff93989439fb","impliedFormat":1},{"version":"203d75f653988a418930fb16fda8e84dea1fac7e38abdaafd898f257247e0860","impliedFormat":1},{"version":"c5b3da7e2ecd5968f723282aba49d8d1a2e178d0afe48998dad93f81e2724091","impliedFormat":1},{"version":"efd2860dc74358ffa01d3de4c8fa2f966ae52c13c12b41ad931c078151b36601","impliedFormat":1},{"version":"09acacae732e3cc67a6415026cfae979ebe900905500147a629837b790a366b3","impliedFormat":1},{"version":"72154a9d896b0a0aed69fd2a58aa5aa8ab526078a65ff92f0d3c2237e9992610","impliedFormat":1},{"version":"99236ea5c4c583082975823fd19bcce6a44963c5c894e20384bc72e7eccf9b03","impliedFormat":1},{"version":"f6688a02946a3f7490aa9e26d76d1c97a388e42e77388cbab010b69982c86e9e","impliedFormat":1},{"version":"b027979b9e4e83be23db2d81e01d973b91fefe677feb93823486a83762f65012","impliedFormat":1},{"version":"ca2e3c7128139c25587a9e66bf7d9d82d32068dc5cd6671a32bdf4b5c369fdb7","impliedFormat":1},{"version":"bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","impliedFormat":1}],"root":[[321,323]],"options":{"allowJs":true,"declaration":true,"esModuleInterop":true,"module":99,"outDir":"./","skipLibCheck":true,"strict":true,"strictNullChecks":false,"target":1},"referencedMap":[[323,1],[321,2],[322,3],[274,4],[275,5],[276,6],[273,7],[324,7],[325,8],[326,9],[328,10],[329,7],[330,7],[344,11],[332,12],[333,13],[331,14],[334,15],[335,16],[336,17],[337,18],[338,19],[339,20],[340,21],[341,22],[342,23],[343,24],[345,7],[327,7],[172,25],[173,25],[174,26],[175,27],[176,28],[177,29],[132,7],[135,30],[133,7],[134,7],[178,31],[179,32],[180,33],[181,34],[182,35],[183,36],[184,36],[186,37],[185,38],[187,39],[188,40],[189,41],[171,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[154,49],[161,50],[153,49],[168,51],[145,52],[144,53],[167,8],[162,54],[165,55],[147,56],[146,57],[142,58],[141,8],[164,59],[143,60],[148,61],[149,7],[152,61],[139,7],[170,62],[169,61],[156,63],[157,64],[159,65],[155,66],[158,67],[163,8],[150,68],[151,69],[160,70],[140,71],[166,72],[196,73],[197,74],[198,75],[199,76],[200,77],[201,78],[202,79],[203,79],[204,80],[205,81],[207,82],[206,83],[208,84],[209,85],[210,71],[211,86],[212,87],[213,88],[214,89],[137,90],[136,7],[223,91],[215,92],[216,93],[217,94],[218,95],[219,96],[220,97],[221,98],[222,99],[346,7],[347,7],[349,100],[350,7],[352,101],[351,7],[353,7],[363,102],[354,7],[355,7],[356,7],[357,7],[358,7],[359,7],[360,7],[361,7],[362,7],[364,103],[271,104],[270,7],[272,105],[278,106],[280,107],[286,108],[282,109],[281,110],[285,111],[283,112],[284,113],[288,114],[279,115],[277,116],[287,117],[295,118],[289,119],[290,4],[294,120],[291,7],[292,105],[293,7],[138,7],[348,7],[73,7],[240,121],[241,122],[238,122],[239,7],[244,123],[243,124],[242,125],[77,7],[79,126],[78,122],[80,127],[245,7],[246,7],[249,128],[247,7],[248,7],[125,129],[126,130],[127,131],[123,132],[124,133],[81,122],[90,134],[82,122],[84,122],[85,7],[83,122],[86,122],[87,122],[88,122],[89,135],[263,136],[103,7],[108,137],[105,138],[104,7],[106,7],[107,139],[264,140],[102,141],[110,142],[111,7],[95,143],[115,144],[101,145],[99,146],[225,147],[98,148],[97,149],[119,150],[120,150],[118,151],[122,150],[121,151],[128,152],[117,153],[129,154],[224,155],[112,156],[130,150],[131,150],[113,157],[114,158],[100,159],[116,160],[109,161],[91,162],[92,139],[94,163],[93,164],[74,122],[76,165],[75,7],[226,166],[227,7],[96,7],[228,122],[237,167],[229,165],[230,7],[231,122],[233,168],[232,169],[234,122],[235,122],[236,122],[250,170],[258,171],[262,172],[259,7],[260,139],[257,173],[261,174],[256,175],[253,176],[252,177],[254,176],[251,7],[255,177],[269,7],[71,7],[72,7],[13,7],[12,7],[2,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[3,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[57,7],[55,7],[56,7],[58,7],[59,7],[10,7],[60,7],[1,7],[61,7],[62,7],[11,7],[67,7],[64,7],[63,7],[70,7],[68,7],[66,7],[69,7],[65,7],[311,178],[312,179],[313,180],[314,179],[315,181],[316,179],[318,182],[266,183],[317,184],[267,7],[268,185],[296,186],[297,187],[298,188],[299,189],[300,187],[310,183],[301,190],[265,7],[320,191],[303,192],[304,193],[305,7],[306,193],[307,194],[309,195],[308,193],[302,196],[319,183]],"version":"5.6.3"}
|
package/dist/wallet.d.ts
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
import { ethers, SigningKey } from "ethers";
|
2
|
+
import { OnchainOperation, OperationStatus } from "@orb-labs/orby-core";
|
3
|
+
import { OrbyProvider } from "./orby_provider";
|
4
|
+
export declare class Wallet extends ethers.Wallet {
|
5
|
+
constructor(key: string | SigningKey, provider?: null | OrbyProvider);
|
6
|
+
static sendOperation(accountClusterId: string, operation: OnchainOperation): Promise<{
|
7
|
+
operationSetId: string;
|
8
|
+
operationResponse: OperationStatus;
|
9
|
+
}>;
|
10
|
+
static sendOperations(accountClusterId: string, operations: {
|
11
|
+
wallet: ethers.Wallet;
|
12
|
+
operation: OnchainOperation;
|
13
|
+
}[]): Promise<{
|
14
|
+
operationSetId: string;
|
15
|
+
operationResponses: OperationStatus[];
|
16
|
+
}>;
|
17
|
+
}
|
package/dist/wallet.js
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
2
|
+
var extendStatics = function (d, b) {
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
5
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
6
|
+
return extendStatics(d, b);
|
7
|
+
};
|
8
|
+
return function (d, b) {
|
9
|
+
if (typeof b !== "function" && b !== null)
|
10
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
11
|
+
extendStatics(d, b);
|
12
|
+
function __() { this.constructor = d; }
|
13
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
14
|
+
};
|
15
|
+
})();
|
16
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
17
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
18
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
19
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
20
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
21
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
22
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
23
|
+
});
|
24
|
+
};
|
25
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
26
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
27
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
28
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
29
|
+
function step(op) {
|
30
|
+
if (f) throw new TypeError("Generator is already executing.");
|
31
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
32
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
33
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
34
|
+
switch (op[0]) {
|
35
|
+
case 0: case 1: t = op; break;
|
36
|
+
case 4: _.label++; return { value: op[1], done: false };
|
37
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
38
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
39
|
+
default:
|
40
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
41
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
42
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
43
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
44
|
+
if (t[2]) _.ops.pop();
|
45
|
+
_.trys.pop(); continue;
|
46
|
+
}
|
47
|
+
op = body.call(thisArg, _);
|
48
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
49
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
50
|
+
}
|
51
|
+
};
|
52
|
+
import { ethers } from "ethers";
|
53
|
+
import { Category, OperationDataFormat, OperationType, } from "@orb-labs/orby-core";
|
54
|
+
var Wallet = /** @class */ (function (_super) {
|
55
|
+
__extends(Wallet, _super);
|
56
|
+
function Wallet(key, provider) {
|
57
|
+
return _super.call(this, key, provider) || this;
|
58
|
+
}
|
59
|
+
Wallet.sendOperation = function (accountClusterId, operation) {
|
60
|
+
return __awaiter(this, void 0, void 0, function () {
|
61
|
+
var _a, operationSetId, operationResponses;
|
62
|
+
return __generator(this, function (_b) {
|
63
|
+
switch (_b.label) {
|
64
|
+
case 0: return [4 /*yield*/, Wallet.sendOperations(accountClusterId, [{ wallet: this, operation: operation }])];
|
65
|
+
case 1:
|
66
|
+
_a = _b.sent(), operationSetId = _a.operationSetId, operationResponses = _a.operationResponses;
|
67
|
+
return [2 /*return*/, { operationSetId: operationSetId, operationResponse: operationResponses[0] }];
|
68
|
+
}
|
69
|
+
});
|
70
|
+
});
|
71
|
+
};
|
72
|
+
Wallet.sendOperations = function (accountClusterId, operations) {
|
73
|
+
return __awaiter(this, void 0, void 0, function () {
|
74
|
+
var finalTransactionProvider, signingOperations, i, _a, wallet, operation, from, to, chainId, value, data, gasLimit, gasPrice, maxFeePerGas, nonce, maxPriorityFeePerGas, type, format, txData, signature, parsedData, signature;
|
75
|
+
return __generator(this, function (_b) {
|
76
|
+
switch (_b.label) {
|
77
|
+
case 0:
|
78
|
+
signingOperations = [];
|
79
|
+
i = 0;
|
80
|
+
_b.label = 1;
|
81
|
+
case 1:
|
82
|
+
if (!(i < operations.length)) return [3 /*break*/, 6];
|
83
|
+
_a = operations[i], wallet = _a.wallet, operation = _a.operation;
|
84
|
+
from = operation.from, to = operation.to, chainId = operation.chainId, value = operation.value, data = operation.data, gasLimit = operation.gasLimit, gasPrice = operation.gasPrice, maxFeePerGas = operation.maxFeePerGas, nonce = operation.nonce, maxPriorityFeePerGas = operation.maxPriorityFeePerGas, type = operation.type, format = operation.format;
|
85
|
+
if (type == OperationType.FINAL_TRANSACTION) {
|
86
|
+
finalTransactionProvider = wallet.provider;
|
87
|
+
}
|
88
|
+
if (!(format == OperationDataFormat.TRANSACTION)) return [3 /*break*/, 3];
|
89
|
+
txData = {
|
90
|
+
from: from,
|
91
|
+
to: to,
|
92
|
+
chainId: chainId,
|
93
|
+
value: value,
|
94
|
+
data: data,
|
95
|
+
gasLimit: gasLimit,
|
96
|
+
gasPrice: gasPrice,
|
97
|
+
maxFeePerGas: maxFeePerGas,
|
98
|
+
nonce: Number(nonce),
|
99
|
+
maxPriorityFeePerGas: maxPriorityFeePerGas,
|
100
|
+
};
|
101
|
+
return [4 /*yield*/, wallet.signTransaction(txData)];
|
102
|
+
case 2:
|
103
|
+
signature = _b.sent();
|
104
|
+
signingOperations.push({ type: type, signature: signature, category: Category.SEND });
|
105
|
+
return [3 /*break*/, 5];
|
106
|
+
case 3:
|
107
|
+
parsedData = JSON.parse(data);
|
108
|
+
return [4 /*yield*/, wallet.signTypedData(parsedData.domain, parsedData.types, parsedData.message)];
|
109
|
+
case 4:
|
110
|
+
signature = _b.sent();
|
111
|
+
signingOperations.push({
|
112
|
+
type: type,
|
113
|
+
signature: signature,
|
114
|
+
data: data,
|
115
|
+
category: Category.TYPED_DATA_SIGNATURE,
|
116
|
+
});
|
117
|
+
_b.label = 5;
|
118
|
+
case 5:
|
119
|
+
i++;
|
120
|
+
return [3 /*break*/, 1];
|
121
|
+
case 6:
|
122
|
+
if (!finalTransactionProvider) {
|
123
|
+
throw new Error("No final transaction provider found");
|
124
|
+
}
|
125
|
+
return [2 /*return*/, finalTransactionProvider.sendSignedOperations(accountClusterId, signingOperations)];
|
126
|
+
}
|
127
|
+
});
|
128
|
+
});
|
129
|
+
};
|
130
|
+
return Wallet;
|
131
|
+
}(ethers.Wallet));
|
132
|
+
export { Wallet };
|
package/package.json
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"name": "@orb-labs/orby-ethers6",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"exports": {
|
5
|
+
".": "./dist/index.js"
|
6
|
+
},
|
7
|
+
"types": "dist/index.d.ts",
|
8
|
+
"files": [
|
9
|
+
"dist"
|
10
|
+
],
|
11
|
+
"scripts": {
|
12
|
+
"build": "tsc && tsc-alias",
|
13
|
+
"start": "ts-node ./src/index.ts",
|
14
|
+
"watch:tsc": "tsc -w",
|
15
|
+
"watch:alias": "nodemon --watch dist --exec \"tsc-alias -p tsconfig.json\""
|
16
|
+
},
|
17
|
+
"peerDependencies": {
|
18
|
+
"ethers": "^6.11.1"
|
19
|
+
},
|
20
|
+
"dependencies": {
|
21
|
+
"@orb-labs/orby-core": "^0.0.6"
|
22
|
+
},
|
23
|
+
"devDependencies": {
|
24
|
+
"@types/lodash": "^4.17.13",
|
25
|
+
"eslint": "^8",
|
26
|
+
"nodemon": "^3.0.3",
|
27
|
+
"tsc-alias": "^1.8.10",
|
28
|
+
"typescript": "^5"
|
29
|
+
}
|
30
|
+
}
|