@across-protocol/contracts 0.1.0 → 0.1.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/build/artfacts.json +342 -0
- package/contract-types/ethers/AVMBridgeDepositBox.ts +780 -0
- package/contract-types/ethers/AVMCrossDomainEnabled.ts +75 -0
- package/contract-types/ethers/AccessControl.ts +353 -0
- package/contract-types/ethers/AddressWhitelistInterface.ts +184 -0
- package/contract-types/ethers/ArbSys.ts +354 -0
- package/contract-types/ethers/ArbitrumBridgeMock.ts +159 -0
- package/contract-types/ethers/ArbitrumCrossDomainEnabled.ts +74 -0
- package/contract-types/ethers/ArbitrumInboxMock.ts +155 -0
- package/contract-types/ethers/ArbitrumMessenger.ts +297 -0
- package/contract-types/ethers/ArbitrumOutboxMock.ts +80 -0
- package/contract-types/ethers/ArbitrumParentMessenger.ts +1028 -0
- package/contract-types/ethers/Bridge.ts +1537 -0
- package/contract-types/ethers/BridgeAdmin.ts +1011 -0
- package/contract-types/ethers/BridgeAdminInterface.ts +409 -0
- package/contract-types/ethers/BridgeDepositBox.ts +557 -0
- package/contract-types/ethers/BridgeDepositBoxMock.ts +739 -0
- package/contract-types/ethers/BridgePool.ts +1741 -0
- package/contract-types/ethers/BridgePoolInterface.ts +173 -0
- package/contract-types/ethers/BridgePoolProd.ts +1741 -0
- package/contract-types/ethers/CrossDomainEnabled.ts +74 -0
- package/contract-types/ethers/ERC165.ts +95 -0
- package/contract-types/ethers/ERC20.ts +410 -0
- package/contract-types/ethers/FinderInterface.ts +136 -0
- package/contract-types/ethers/FxBaseChildTunnel.ts +185 -0
- package/contract-types/ethers/FxBaseRootTunnel.ts +234 -0
- package/contract-types/ethers/FxChildMock.ts +182 -0
- package/contract-types/ethers/FxRootMock.ts +159 -0
- package/contract-types/ethers/GenericHandler.ts +502 -0
- package/contract-types/ethers/IAccessControl.ts +235 -0
- package/contract-types/ethers/IArbitrumInbox.ts +155 -0
- package/contract-types/ethers/IArbitrumOutbox.ts +80 -0
- package/contract-types/ethers/IBridge.ts +126 -0
- package/contract-types/ethers/ICheckpointManager.ts +120 -0
- package/contract-types/ethers/ICrossDomainMessenger.ts +189 -0
- package/contract-types/ethers/IDepositExecute.ts +154 -0
- package/contract-types/ethers/IERC165.ts +95 -0
- package/contract-types/ethers/IERC20.ts +293 -0
- package/contract-types/ethers/IERC20Metadata.ts +332 -0
- package/contract-types/ethers/IERCHandler.ts +175 -0
- package/contract-types/ethers/IFxMessageProcessor.ts +108 -0
- package/contract-types/ethers/IFxStateSender.ts +102 -0
- package/contract-types/ethers/IGenericHandler.ts +112 -0
- package/contract-types/ethers/IL2ERC20Bridge.ts +350 -0
- package/contract-types/ethers/IOVMCrossDomainMessenger.ts +164 -0
- package/contract-types/ethers/IStateReceiver.ts +103 -0
- package/contract-types/ethers/IStateSender.ts +99 -0
- package/contract-types/ethers/IdentifierWhitelistInterface.ts +165 -0
- package/contract-types/ethers/Lockable.ts +50 -0
- package/contract-types/ethers/MessengerInterface.ts +136 -0
- package/contract-types/ethers/MessengerMock.ts +160 -0
- package/contract-types/ethers/MultiCaller.ts +91 -0
- package/contract-types/ethers/OVMBridgeDepositBox.ts +751 -0
- package/contract-types/ethers/OVMCrossDomainEnabled.ts +74 -0
- package/contract-types/ethers/OVML1CrossDomainMessengerMock.ts +190 -0
- package/contract-types/ethers/OVMOETHBridgeDepositBox.ts +783 -0
- package/contract-types/ethers/OptimismMessenger.ts +245 -0
- package/contract-types/ethers/OptimismWrapper.ts +264 -0
- package/contract-types/ethers/OptimisticOracleConstraints.ts +82 -0
- package/contract-types/ethers/OptimisticOracleInterface.ts +804 -0
- package/contract-types/ethers/OracleInterfaces.ts +235 -0
- package/contract-types/ethers/Ownable.ts +158 -0
- package/contract-types/ethers/ParentMessengerBase.ts +554 -0
- package/contract-types/ethers/ParentMessengerConsumerInterface.ts +104 -0
- package/contract-types/ethers/ParentMessengerInterface.ts +116 -0
- package/contract-types/ethers/Pausable.ts +94 -0
- package/contract-types/ethers/SkinnyOptimisticOracleInterface.ts +727 -0
- package/contract-types/ethers/StandardBridgeLike.ts +113 -0
- package/contract-types/ethers/StateSyncMock.ts +122 -0
- package/contract-types/ethers/StoreInterface.ts +228 -0
- package/contract-types/ethers/Testable.ts +136 -0
- package/contract-types/ethers/Timer.ts +117 -0
- package/contract-types/ethers/TokenLike.ts +88 -0
- package/contract-types/ethers/WETH9Like.ts +138 -0
- package/contract-types/ethers/common.ts +44 -0
- package/contract-types/ethers/factories/AVMBridgeDepositBox__factory.ts +649 -0
- package/contract-types/ethers/factories/AVMCrossDomainEnabled__factory.ts +61 -0
- package/contract-types/ethers/factories/AccessControl__factory.ts +227 -0
- package/contract-types/ethers/factories/AddressWhitelistInterface__factory.ts +88 -0
- package/contract-types/ethers/factories/ArbSys__factory.ts +244 -0
- package/contract-types/ethers/factories/ArbitrumBridgeMock__factory.ts +118 -0
- package/contract-types/ethers/factories/ArbitrumCrossDomainEnabled__factory.ts +43 -0
- package/contract-types/ethers/factories/ArbitrumInboxMock__factory.ts +128 -0
- package/contract-types/ethers/factories/ArbitrumMessenger__factory.ts +243 -0
- package/contract-types/ethers/factories/ArbitrumOutboxMock__factory.ts +74 -0
- package/contract-types/ethers/factories/ArbitrumParentMessenger__factory.ts +680 -0
- package/contract-types/ethers/factories/BridgeAdminInterface__factory.ts +338 -0
- package/contract-types/ethers/factories/BridgeAdmin__factory.ts +737 -0
- package/contract-types/ethers/factories/BridgeDepositBoxMock__factory.ts +591 -0
- package/contract-types/ethers/factories/BridgeDepositBox__factory.ts +406 -0
- package/contract-types/ethers/factories/BridgePoolInterface__factory.ts +78 -0
- package/contract-types/ethers/factories/BridgePoolProd__factory.ts +1798 -0
- package/contract-types/ethers/factories/BridgePool__factory.ts +1795 -0
- package/contract-types/ethers/factories/Bridge__factory.ts +1094 -0
- package/contract-types/ethers/factories/CrossDomainEnabled__factory.ts +90 -0
- package/contract-types/ethers/factories/ERC165__factory.ts +39 -0
- package/contract-types/ethers/factories/ERC20__factory.ts +345 -0
- package/contract-types/ethers/factories/FinderInterface__factory.ts +63 -0
- package/contract-types/ethers/factories/FxBaseChildTunnel__factory.ts +101 -0
- package/contract-types/ethers/factories/FxBaseRootTunnel__factory.ts +123 -0
- package/contract-types/ethers/factories/FxChildMock__factory.ts +153 -0
- package/contract-types/ethers/factories/FxRootMock__factory.ts +128 -0
- package/contract-types/ethers/factories/GenericHandler__factory.ts +395 -0
- package/contract-types/ethers/factories/IAccessControl__factory.ts +123 -0
- package/contract-types/ethers/factories/IArbitrumInbox__factory.ts +93 -0
- package/contract-types/ethers/factories/IArbitrumOutbox__factory.ts +39 -0
- package/contract-types/ethers/factories/IBridge__factory.ts +59 -0
- package/contract-types/ethers/factories/ICheckpointManager__factory.ts +100 -0
- package/contract-types/ethers/factories/ICrossDomainMessenger__factory.ts +129 -0
- package/contract-types/ethers/factories/IDepositExecute__factory.ts +77 -0
- package/contract-types/ethers/factories/IERC165__factory.ts +42 -0
- package/contract-types/ethers/factories/IERC20Metadata__factory.ts +248 -0
- package/contract-types/ethers/factories/IERC20__factory.ts +203 -0
- package/contract-types/ethers/factories/IERCHandler__factory.ts +77 -0
- package/contract-types/ethers/factories/IFxMessageProcessor__factory.ts +49 -0
- package/contract-types/ethers/factories/IFxStateSender__factory.ts +44 -0
- package/contract-types/ethers/factories/IGenericHandler__factory.ts +54 -0
- package/contract-types/ethers/factories/IL2ERC20Bridge__factory.ts +267 -0
- package/contract-types/ethers/factories/IOVMCrossDomainMessenger__factory.ts +105 -0
- package/contract-types/ethers/factories/IStateReceiver__factory.ts +44 -0
- package/contract-types/ethers/factories/IStateSender__factory.ts +41 -0
- package/contract-types/ethers/factories/IdentifierWhitelistInterface__factory.ts +75 -0
- package/contract-types/ethers/factories/Lockable__factory.ts +63 -0
- package/contract-types/ethers/factories/MessengerInterface__factory.ts +69 -0
- package/contract-types/ethers/factories/MessengerMock__factory.ts +132 -0
- package/contract-types/ethers/factories/MultiCaller__factory.ts +77 -0
- package/contract-types/ethers/factories/OVMBridgeDepositBox__factory.ts +609 -0
- package/contract-types/ethers/factories/OVMCrossDomainEnabled__factory.ts +94 -0
- package/contract-types/ethers/factories/OVML1CrossDomainMessengerMock__factory.ts +166 -0
- package/contract-types/ethers/factories/OVMOETHBridgeDepositBox__factory.ts +665 -0
- package/contract-types/ethers/factories/OptimismMessenger__factory.ts +185 -0
- package/contract-types/ethers/factories/OptimismWrapper__factory.ts +200 -0
- package/contract-types/ethers/factories/OptimisticOracleConstraints__factory.ts +80 -0
- package/contract-types/ethers/factories/OptimisticOracleInterface__factory.ts +574 -0
- package/contract-types/ethers/factories/OracleInterfaces__factory.ts +191 -0
- package/contract-types/ethers/factories/Ownable__factory.ts +75 -0
- package/contract-types/ethers/factories/ParentMessengerBase__factory.ts +312 -0
- package/contract-types/ethers/factories/ParentMessengerConsumerInterface__factory.ts +50 -0
- package/contract-types/ethers/factories/ParentMessengerInterface__factory.ts +56 -0
- package/contract-types/ethers/factories/Pausable__factory.ts +62 -0
- package/contract-types/ethers/factories/SkinnyOptimisticOracleInterface__factory.ts +874 -0
- package/contract-types/ethers/factories/StandardBridgeLike__factory.ts +60 -0
- package/contract-types/ethers/factories/StateSyncMock__factory.ts +101 -0
- package/contract-types/ethers/factories/StoreInterface__factory.ts +139 -0
- package/contract-types/ethers/factories/Testable__factory.ts +62 -0
- package/contract-types/ethers/factories/Timer__factory.ts +86 -0
- package/contract-types/ethers/factories/TokenLike__factory.ts +42 -0
- package/contract-types/ethers/factories/WETH9Like__factory.ts +67 -0
- package/contract-types/ethers/hardhat.d.ts +798 -0
- package/contract-types/ethers/index.ts +150 -0
- package/contract-types/web3/AVM_BridgeDepositBox.ts +269 -0
- package/contract-types/web3/AVM_CrossDomainEnabled.ts +62 -0
- package/contract-types/web3/AccessControl.ts +127 -0
- package/contract-types/web3/AddressWhitelistInterface.ts +43 -0
- package/contract-types/web3/ArbSys.ts +112 -0
- package/contract-types/web3/Arbitrum_BridgeMock.ts +46 -0
- package/contract-types/web3/Arbitrum_CrossDomainEnabled.ts +37 -0
- package/contract-types/web3/Arbitrum_InboxMock.ts +48 -0
- package/contract-types/web3/Arbitrum_Messenger.ts +106 -0
- package/contract-types/web3/Arbitrum_OutboxMock.ts +37 -0
- package/contract-types/web3/Arbitrum_ParentMessenger.ts +348 -0
- package/contract-types/web3/Bridge.ts +401 -0
- package/contract-types/web3/BridgeAdmin.ts +357 -0
- package/contract-types/web3/BridgeAdminInterface.ts +265 -0
- package/contract-types/web3/BridgeDepositBox.ts +203 -0
- package/contract-types/web3/BridgeDepositBoxMock.ts +241 -0
- package/contract-types/web3/BridgePool.ts +520 -0
- package/contract-types/web3/BridgePoolInterface.ts +47 -0
- package/contract-types/web3/BridgePoolProd.ts +520 -0
- package/contract-types/web3/CrossDomainEnabled.ts +37 -0
- package/contract-types/web3/ERC165.ts +39 -0
- package/contract-types/web3/ERC20.ts +105 -0
- package/contract-types/web3/FinderInterface.ts +44 -0
- package/contract-types/web3/FxBaseChildTunnel.ts +65 -0
- package/contract-types/web3/FxBaseRootTunnel.ts +53 -0
- package/contract-types/web3/FxChildMock.ts +68 -0
- package/contract-types/web3/FxRootMock.ts +46 -0
- package/contract-types/web3/GenericHandler.ts +94 -0
- package/contract-types/web3/IAccessControl.ts +57 -0
- package/contract-types/web3/IBridge.ts +43 -0
- package/contract-types/web3/ICheckpointManager.ts +48 -0
- package/contract-types/web3/ICrossDomainMessenger.ts +103 -0
- package/contract-types/web3/IDepositExecute.ts +48 -0
- package/contract-types/web3/IERC165.ts +39 -0
- package/contract-types/web3/IERC20.ts +89 -0
- package/contract-types/web3/IERC20Metadata.ts +95 -0
- package/contract-types/web3/IERCHandler.ts +48 -0
- package/contract-types/web3/IFxMessageProcessor.ts +41 -0
- package/contract-types/web3/IFxStateSender.ts +40 -0
- package/contract-types/web3/IGenericHandler.ts +42 -0
- package/contract-types/web3/IL2ERC20Bridge.ts +143 -0
- package/contract-types/web3/IStateReceiver.ts +40 -0
- package/contract-types/web3/IStateSender.ts +40 -0
- package/contract-types/web3/IdentifierWhitelistInterface.ts +47 -0
- package/contract-types/web3/Lockable.ts +35 -0
- package/contract-types/web3/MessengerInterface.ts +45 -0
- package/contract-types/web3/MessengerMock.ts +69 -0
- package/contract-types/web3/MultiCaller.ts +37 -0
- package/contract-types/web3/OVM_BridgeDepositBox.ts +243 -0
- package/contract-types/web3/OVM_CrossDomainEnabled.ts +37 -0
- package/contract-types/web3/OVM_L1CrossDomainMessengerMock.ts +103 -0
- package/contract-types/web3/OVM_OETH_BridgeDepositBox.ts +247 -0
- package/contract-types/web3/Optimism_Messenger.ts +73 -0
- package/contract-types/web3/Optimism_Wrapper.ts +86 -0
- package/contract-types/web3/OptimisticOracleConstraints.ts +37 -0
- package/contract-types/web3/OptimisticOracleInterface.ts +151 -0
- package/contract-types/web3/OracleInterfaces.ts +55 -0
- package/contract-types/web3/Ownable.ts +61 -0
- package/contract-types/web3/ParentMessengerBase.ts +178 -0
- package/contract-types/web3/ParentMessengerConsumerInterface.ts +40 -0
- package/contract-types/web3/ParentMessengerInterface.ts +41 -0
- package/contract-types/web3/Pausable.ts +58 -0
- package/contract-types/web3/SkinnyOptimisticOracleInterface.ts +213 -0
- package/contract-types/web3/StandardBridgeLike.ts +42 -0
- package/contract-types/web3/StateSyncMock.ts +62 -0
- package/contract-types/web3/StoreInterface.ts +55 -0
- package/contract-types/web3/Testable.ts +43 -0
- package/contract-types/web3/Timer.ts +41 -0
- package/contract-types/web3/TokenLike.ts +37 -0
- package/contract-types/web3/WETH9Like.ts +44 -0
- package/contract-types/web3/iArbitrum_Inbox.ts +48 -0
- package/contract-types/web3/iArbitrum_Outbox.ts +37 -0
- package/contract-types/web3/iOVM_CrossDomainMessenger.ts +95 -0
- package/contract-types/web3/types.ts +73 -0
- package/networks/1.json +33 -0
- package/networks/10.json +6 -0
- package/networks/42161.json +6 -0
- package/package.json +12 -5
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface FinderInterface extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): FinderInterface;
|
|
30
|
+
clone(): FinderInterface;
|
|
31
|
+
methods: {
|
|
32
|
+
changeImplementationAddress(
|
|
33
|
+
interfaceName: string | number[],
|
|
34
|
+
implementationAddress: string
|
|
35
|
+
): NonPayableTransactionObject<void>;
|
|
36
|
+
|
|
37
|
+
getImplementationAddress(
|
|
38
|
+
interfaceName: string | number[]
|
|
39
|
+
): NonPayableTransactionObject<string>;
|
|
40
|
+
};
|
|
41
|
+
events: {
|
|
42
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export type MessageSent = ContractEventLog<{
|
|
25
|
+
message: string;
|
|
26
|
+
0: string;
|
|
27
|
+
}>;
|
|
28
|
+
|
|
29
|
+
export interface FxBaseChildTunnel extends BaseContract {
|
|
30
|
+
constructor(
|
|
31
|
+
jsonInterface: any[],
|
|
32
|
+
address?: string,
|
|
33
|
+
options?: ContractOptions
|
|
34
|
+
): FxBaseChildTunnel;
|
|
35
|
+
clone(): FxBaseChildTunnel;
|
|
36
|
+
methods: {
|
|
37
|
+
fxChild(): NonPayableTransactionObject<string>;
|
|
38
|
+
|
|
39
|
+
fxRootTunnel(): NonPayableTransactionObject<string>;
|
|
40
|
+
|
|
41
|
+
processMessageFromRoot(
|
|
42
|
+
stateId: number | string | BN,
|
|
43
|
+
rootMessageSender: string,
|
|
44
|
+
data: string | number[]
|
|
45
|
+
): NonPayableTransactionObject<void>;
|
|
46
|
+
|
|
47
|
+
setFxRootTunnel(_fxRootTunnel: string): NonPayableTransactionObject<void>;
|
|
48
|
+
};
|
|
49
|
+
events: {
|
|
50
|
+
MessageSent(cb?: Callback<MessageSent>): EventEmitter;
|
|
51
|
+
MessageSent(
|
|
52
|
+
options?: EventOptions,
|
|
53
|
+
cb?: Callback<MessageSent>
|
|
54
|
+
): EventEmitter;
|
|
55
|
+
|
|
56
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
once(event: "MessageSent", cb: Callback<MessageSent>): void;
|
|
60
|
+
once(
|
|
61
|
+
event: "MessageSent",
|
|
62
|
+
options: EventOptions,
|
|
63
|
+
cb: Callback<MessageSent>
|
|
64
|
+
): void;
|
|
65
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface FxBaseRootTunnel extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): FxBaseRootTunnel;
|
|
30
|
+
clone(): FxBaseRootTunnel;
|
|
31
|
+
methods: {
|
|
32
|
+
SEND_MESSAGE_EVENT_SIG(): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
checkpointManager(): NonPayableTransactionObject<string>;
|
|
35
|
+
|
|
36
|
+
fxChildTunnel(): NonPayableTransactionObject<string>;
|
|
37
|
+
|
|
38
|
+
fxRoot(): NonPayableTransactionObject<string>;
|
|
39
|
+
|
|
40
|
+
processedExits(
|
|
41
|
+
arg0: string | number[]
|
|
42
|
+
): NonPayableTransactionObject<boolean>;
|
|
43
|
+
|
|
44
|
+
receiveMessage(
|
|
45
|
+
inputData: string | number[]
|
|
46
|
+
): NonPayableTransactionObject<void>;
|
|
47
|
+
|
|
48
|
+
setFxChildTunnel(_fxChildTunnel: string): NonPayableTransactionObject<void>;
|
|
49
|
+
};
|
|
50
|
+
events: {
|
|
51
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export type NewFxMessage = ContractEventLog<{
|
|
25
|
+
rootMessageSender: string;
|
|
26
|
+
receiver: string;
|
|
27
|
+
data: string;
|
|
28
|
+
0: string;
|
|
29
|
+
1: string;
|
|
30
|
+
2: string;
|
|
31
|
+
}>;
|
|
32
|
+
|
|
33
|
+
export interface FxChildMock extends BaseContract {
|
|
34
|
+
constructor(
|
|
35
|
+
jsonInterface: any[],
|
|
36
|
+
address?: string,
|
|
37
|
+
options?: ContractOptions
|
|
38
|
+
): FxChildMock;
|
|
39
|
+
clone(): FxChildMock;
|
|
40
|
+
methods: {
|
|
41
|
+
fxRoot(): NonPayableTransactionObject<string>;
|
|
42
|
+
|
|
43
|
+
onStateReceive(
|
|
44
|
+
stateId: number | string | BN,
|
|
45
|
+
_data: string | number[]
|
|
46
|
+
): NonPayableTransactionObject<void>;
|
|
47
|
+
|
|
48
|
+
setFxRoot(_fxRoot: string): NonPayableTransactionObject<void>;
|
|
49
|
+
|
|
50
|
+
systemCaller(): NonPayableTransactionObject<string>;
|
|
51
|
+
};
|
|
52
|
+
events: {
|
|
53
|
+
NewFxMessage(cb?: Callback<NewFxMessage>): EventEmitter;
|
|
54
|
+
NewFxMessage(
|
|
55
|
+
options?: EventOptions,
|
|
56
|
+
cb?: Callback<NewFxMessage>
|
|
57
|
+
): EventEmitter;
|
|
58
|
+
|
|
59
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
once(event: "NewFxMessage", cb: Callback<NewFxMessage>): void;
|
|
63
|
+
once(
|
|
64
|
+
event: "NewFxMessage",
|
|
65
|
+
options: EventOptions,
|
|
66
|
+
cb: Callback<NewFxMessage>
|
|
67
|
+
): void;
|
|
68
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface FxRootMock extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): FxRootMock;
|
|
30
|
+
clone(): FxRootMock;
|
|
31
|
+
methods: {
|
|
32
|
+
fxChild(): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
sendMessageToChild(
|
|
35
|
+
_receiver: string,
|
|
36
|
+
_data: string | number[]
|
|
37
|
+
): NonPayableTransactionObject<void>;
|
|
38
|
+
|
|
39
|
+
setFxChild(_fxChild: string): NonPayableTransactionObject<void>;
|
|
40
|
+
|
|
41
|
+
stateSender(): NonPayableTransactionObject<string>;
|
|
42
|
+
};
|
|
43
|
+
events: {
|
|
44
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface GenericHandler extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): GenericHandler;
|
|
30
|
+
clone(): GenericHandler;
|
|
31
|
+
methods: {
|
|
32
|
+
_bridgeAddress(): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
_contractAddressToDepositFunctionSignature(
|
|
35
|
+
arg0: string
|
|
36
|
+
): NonPayableTransactionObject<string>;
|
|
37
|
+
|
|
38
|
+
_contractAddressToExecuteFunctionSignature(
|
|
39
|
+
arg0: string
|
|
40
|
+
): NonPayableTransactionObject<string>;
|
|
41
|
+
|
|
42
|
+
_contractAddressToResourceID(
|
|
43
|
+
arg0: string
|
|
44
|
+
): NonPayableTransactionObject<string>;
|
|
45
|
+
|
|
46
|
+
_contractWhitelist(arg0: string): NonPayableTransactionObject<boolean>;
|
|
47
|
+
|
|
48
|
+
_depositRecords(
|
|
49
|
+
arg0: number | string | BN,
|
|
50
|
+
arg1: number | string | BN
|
|
51
|
+
): NonPayableTransactionObject<{
|
|
52
|
+
_destinationChainID: string;
|
|
53
|
+
_depositer: string;
|
|
54
|
+
_resourceID: string;
|
|
55
|
+
_metaData: string;
|
|
56
|
+
0: string;
|
|
57
|
+
1: string;
|
|
58
|
+
2: string;
|
|
59
|
+
3: string;
|
|
60
|
+
}>;
|
|
61
|
+
|
|
62
|
+
_resourceIDToContractAddress(
|
|
63
|
+
arg0: string | number[]
|
|
64
|
+
): NonPayableTransactionObject<string>;
|
|
65
|
+
|
|
66
|
+
deposit(
|
|
67
|
+
resourceID: string | number[],
|
|
68
|
+
destinationChainID: number | string | BN,
|
|
69
|
+
depositNonce: number | string | BN,
|
|
70
|
+
depositer: string,
|
|
71
|
+
arg4: string | number[]
|
|
72
|
+
): NonPayableTransactionObject<void>;
|
|
73
|
+
|
|
74
|
+
executeProposal(
|
|
75
|
+
resourceID: string | number[],
|
|
76
|
+
arg1: string | number[]
|
|
77
|
+
): NonPayableTransactionObject<void>;
|
|
78
|
+
|
|
79
|
+
getDepositRecord(
|
|
80
|
+
depositNonce: number | string | BN,
|
|
81
|
+
destId: number | string | BN
|
|
82
|
+
): NonPayableTransactionObject<[string, string, string, string]>;
|
|
83
|
+
|
|
84
|
+
setResource(
|
|
85
|
+
resourceID: string | number[],
|
|
86
|
+
contractAddress: string,
|
|
87
|
+
depositFunctionSig: string | number[],
|
|
88
|
+
executeFunctionSig: string | number[]
|
|
89
|
+
): NonPayableTransactionObject<void>;
|
|
90
|
+
};
|
|
91
|
+
events: {
|
|
92
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface IAccessControl extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): IAccessControl;
|
|
30
|
+
clone(): IAccessControl;
|
|
31
|
+
methods: {
|
|
32
|
+
getRoleAdmin(role: string | number[]): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
grantRole(
|
|
35
|
+
role: string | number[],
|
|
36
|
+
account: string
|
|
37
|
+
): NonPayableTransactionObject<void>;
|
|
38
|
+
|
|
39
|
+
hasRole(
|
|
40
|
+
role: string | number[],
|
|
41
|
+
account: string
|
|
42
|
+
): NonPayableTransactionObject<boolean>;
|
|
43
|
+
|
|
44
|
+
renounceRole(
|
|
45
|
+
role: string | number[],
|
|
46
|
+
account: string
|
|
47
|
+
): NonPayableTransactionObject<void>;
|
|
48
|
+
|
|
49
|
+
revokeRole(
|
|
50
|
+
role: string | number[],
|
|
51
|
+
account: string
|
|
52
|
+
): NonPayableTransactionObject<void>;
|
|
53
|
+
};
|
|
54
|
+
events: {
|
|
55
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface IBridge extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): IBridge;
|
|
30
|
+
clone(): IBridge;
|
|
31
|
+
methods: {
|
|
32
|
+
_chainID(): NonPayableTransactionObject<string>;
|
|
33
|
+
|
|
34
|
+
deposit(
|
|
35
|
+
destinationChainID: number | string | BN,
|
|
36
|
+
resourceID: string | number[],
|
|
37
|
+
data: string | number[]
|
|
38
|
+
): NonPayableTransactionObject<void>;
|
|
39
|
+
};
|
|
40
|
+
events: {
|
|
41
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface ICheckpointManager extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): ICheckpointManager;
|
|
30
|
+
clone(): ICheckpointManager;
|
|
31
|
+
methods: {
|
|
32
|
+
headerBlocks(arg0: number | string | BN): NonPayableTransactionObject<{
|
|
33
|
+
root: string;
|
|
34
|
+
start: string;
|
|
35
|
+
end: string;
|
|
36
|
+
createdAt: string;
|
|
37
|
+
proposer: string;
|
|
38
|
+
0: string;
|
|
39
|
+
1: string;
|
|
40
|
+
2: string;
|
|
41
|
+
3: string;
|
|
42
|
+
4: string;
|
|
43
|
+
}>;
|
|
44
|
+
};
|
|
45
|
+
events: {
|
|
46
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export type FailedRelayedMessage = ContractEventLog<{
|
|
25
|
+
msgHash: string;
|
|
26
|
+
0: string;
|
|
27
|
+
}>;
|
|
28
|
+
export type RelayedMessage = ContractEventLog<{
|
|
29
|
+
msgHash: string;
|
|
30
|
+
0: string;
|
|
31
|
+
}>;
|
|
32
|
+
export type SentMessage = ContractEventLog<{
|
|
33
|
+
target: string;
|
|
34
|
+
sender: string;
|
|
35
|
+
message: string;
|
|
36
|
+
messageNonce: string;
|
|
37
|
+
gasLimit: string;
|
|
38
|
+
0: string;
|
|
39
|
+
1: string;
|
|
40
|
+
2: string;
|
|
41
|
+
3: string;
|
|
42
|
+
4: string;
|
|
43
|
+
}>;
|
|
44
|
+
|
|
45
|
+
export interface ICrossDomainMessenger extends BaseContract {
|
|
46
|
+
constructor(
|
|
47
|
+
jsonInterface: any[],
|
|
48
|
+
address?: string,
|
|
49
|
+
options?: ContractOptions
|
|
50
|
+
): ICrossDomainMessenger;
|
|
51
|
+
clone(): ICrossDomainMessenger;
|
|
52
|
+
methods: {
|
|
53
|
+
sendMessage(
|
|
54
|
+
_target: string,
|
|
55
|
+
_message: string | number[],
|
|
56
|
+
_gasLimit: number | string | BN
|
|
57
|
+
): NonPayableTransactionObject<void>;
|
|
58
|
+
|
|
59
|
+
xDomainMessageSender(): NonPayableTransactionObject<string>;
|
|
60
|
+
};
|
|
61
|
+
events: {
|
|
62
|
+
FailedRelayedMessage(cb?: Callback<FailedRelayedMessage>): EventEmitter;
|
|
63
|
+
FailedRelayedMessage(
|
|
64
|
+
options?: EventOptions,
|
|
65
|
+
cb?: Callback<FailedRelayedMessage>
|
|
66
|
+
): EventEmitter;
|
|
67
|
+
|
|
68
|
+
RelayedMessage(cb?: Callback<RelayedMessage>): EventEmitter;
|
|
69
|
+
RelayedMessage(
|
|
70
|
+
options?: EventOptions,
|
|
71
|
+
cb?: Callback<RelayedMessage>
|
|
72
|
+
): EventEmitter;
|
|
73
|
+
|
|
74
|
+
SentMessage(cb?: Callback<SentMessage>): EventEmitter;
|
|
75
|
+
SentMessage(
|
|
76
|
+
options?: EventOptions,
|
|
77
|
+
cb?: Callback<SentMessage>
|
|
78
|
+
): EventEmitter;
|
|
79
|
+
|
|
80
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
once(event: "FailedRelayedMessage", cb: Callback<FailedRelayedMessage>): void;
|
|
84
|
+
once(
|
|
85
|
+
event: "FailedRelayedMessage",
|
|
86
|
+
options: EventOptions,
|
|
87
|
+
cb: Callback<FailedRelayedMessage>
|
|
88
|
+
): void;
|
|
89
|
+
|
|
90
|
+
once(event: "RelayedMessage", cb: Callback<RelayedMessage>): void;
|
|
91
|
+
once(
|
|
92
|
+
event: "RelayedMessage",
|
|
93
|
+
options: EventOptions,
|
|
94
|
+
cb: Callback<RelayedMessage>
|
|
95
|
+
): void;
|
|
96
|
+
|
|
97
|
+
once(event: "SentMessage", cb: Callback<SentMessage>): void;
|
|
98
|
+
once(
|
|
99
|
+
event: "SentMessage",
|
|
100
|
+
options: EventOptions,
|
|
101
|
+
cb: Callback<SentMessage>
|
|
102
|
+
): void;
|
|
103
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import BN from "bn.js";
|
|
6
|
+
import { ContractOptions } from "web3-eth-contract";
|
|
7
|
+
import { EventLog } from "web3-core";
|
|
8
|
+
import { EventEmitter } from "events";
|
|
9
|
+
import {
|
|
10
|
+
Callback,
|
|
11
|
+
PayableTransactionObject,
|
|
12
|
+
NonPayableTransactionObject,
|
|
13
|
+
BlockType,
|
|
14
|
+
ContractEventLog,
|
|
15
|
+
BaseContract,
|
|
16
|
+
} from "./types";
|
|
17
|
+
|
|
18
|
+
export interface EventOptions {
|
|
19
|
+
filter?: object;
|
|
20
|
+
fromBlock?: BlockType;
|
|
21
|
+
topics?: string[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface IDepositExecute extends BaseContract {
|
|
25
|
+
constructor(
|
|
26
|
+
jsonInterface: any[],
|
|
27
|
+
address?: string,
|
|
28
|
+
options?: ContractOptions
|
|
29
|
+
): IDepositExecute;
|
|
30
|
+
clone(): IDepositExecute;
|
|
31
|
+
methods: {
|
|
32
|
+
deposit(
|
|
33
|
+
resourceID: string | number[],
|
|
34
|
+
destinationChainID: number | string | BN,
|
|
35
|
+
depositNonce: number | string | BN,
|
|
36
|
+
depositer: string,
|
|
37
|
+
data: string | number[]
|
|
38
|
+
): NonPayableTransactionObject<void>;
|
|
39
|
+
|
|
40
|
+
executeProposal(
|
|
41
|
+
resourceID: string | number[],
|
|
42
|
+
data: string | number[]
|
|
43
|
+
): NonPayableTransactionObject<void>;
|
|
44
|
+
};
|
|
45
|
+
events: {
|
|
46
|
+
allEvents(options?: EventOptions, cb?: Callback<EventLog>): EventEmitter;
|
|
47
|
+
};
|
|
48
|
+
}
|