@superfluid-finance/sdk-core 1.0.1-dev.0846cd5.0
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 +9 -0
- package/README.md +487 -0
- package/dist/main/BatchCall.d.ts +53 -0
- package/dist/main/ConstantFlowAgreementV1.d.ts +74 -0
- package/dist/main/Framework.d.ts +75 -0
- package/dist/main/Host.d.ts +18 -0
- package/dist/main/InstantDistributionAgreementV1.d.ts +107 -0
- package/dist/main/Operation.d.ts +38 -0
- package/dist/main/Query.d.ts +24 -0
- package/dist/main/SFError.d.ts +13 -0
- package/dist/main/SuperToken.d.ts +191 -0
- package/dist/main/Token.d.ts +76 -0
- package/dist/main/constants.d.ts +10 -0
- package/dist/main/events.d.ts +254 -0
- package/dist/main/frameworkHelpers.d.ts +20 -0
- package/dist/main/index.d.ts +19 -0
- package/dist/main/index.js +10780 -0
- package/dist/main/interfaces.d.ts +309 -0
- package/dist/main/mapGetAllEventsQueryEvents.d.ts +3 -0
- package/dist/main/pagination.d.ts +31 -0
- package/dist/main/scripts/setup.d.ts +22 -0
- package/dist/main/subgraph/SubgraphClient.d.ts +16 -0
- package/dist/main/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +41 -0
- package/dist/main/subgraph/queries/getAllEvents.generated.d.ts +578 -0
- package/dist/main/subgraph/queries/getIndexSubscriptions.generated.d.ts +42 -0
- package/dist/main/subgraph/queries/getIndexes.generated.d.ts +40 -0
- package/dist/main/subgraph/queries/getStreams.generated.d.ts +54 -0
- package/dist/main/subgraph/queries/getTokens.generated.d.ts +23 -0
- package/dist/main/subgraph/schema.generated.d.ts +6907 -0
- package/dist/main/typechain/ERC20WithTokenInfo.d.ts +159 -0
- package/dist/main/typechain/IConstantFlowAgreementV1.d.ts +305 -0
- package/dist/main/typechain/IInstantDistributionAgreementV1.d.ts +585 -0
- package/dist/main/typechain/IResolver.d.ts +57 -0
- package/dist/main/typechain/SuperToken.d.ts +1011 -0
- package/dist/main/typechain/Superfluid.d.ts +780 -0
- package/dist/main/typechain/SuperfluidLoader.d.ts +55 -0
- package/dist/main/typechain/TestToken.d.ts +207 -0
- package/dist/main/typechain/common.d.ts +21 -0
- package/dist/main/typechain/factories/ERC20WithTokenInfo__factory.d.ts +35 -0
- package/dist/main/typechain/factories/IConstantFlowAgreementV1__factory.d.ts +35 -0
- package/dist/main/typechain/factories/IInstantDistributionAgreementV1__factory.d.ts +35 -0
- package/dist/main/typechain/factories/IResolver__factory.d.ts +22 -0
- package/dist/main/typechain/factories/SuperToken__factory.d.ts +46 -0
- package/dist/main/typechain/factories/SuperfluidLoader__factory.d.ts +37 -0
- package/dist/main/typechain/factories/Superfluid__factory.d.ts +82 -0
- package/dist/main/typechain/factories/TestToken__factory.d.ts +46 -0
- package/dist/main/typechain/index.d.ts +16 -0
- package/dist/main/types.d.ts +2 -0
- package/dist/main/utils.d.ts +89 -0
- package/dist/main/validation.d.ts +8 -0
- package/dist/module/BatchCall.d.ts +53 -0
- package/dist/module/ConstantFlowAgreementV1.d.ts +74 -0
- package/dist/module/Framework.d.ts +75 -0
- package/dist/module/Host.d.ts +18 -0
- package/dist/module/InstantDistributionAgreementV1.d.ts +107 -0
- package/dist/module/Operation.d.ts +38 -0
- package/dist/module/Query.d.ts +24 -0
- package/dist/module/SFError.d.ts +13 -0
- package/dist/module/SuperToken.d.ts +191 -0
- package/dist/module/Token.d.ts +76 -0
- package/dist/module/constants.d.ts +10 -0
- package/dist/module/events.d.ts +254 -0
- package/dist/module/frameworkHelpers.d.ts +20 -0
- package/dist/module/index.d.ts +19 -0
- package/dist/module/index.js +10749 -0
- package/dist/module/interfaces.d.ts +309 -0
- package/dist/module/mapGetAllEventsQueryEvents.d.ts +3 -0
- package/dist/module/pagination.d.ts +31 -0
- package/dist/module/scripts/setup.d.ts +22 -0
- package/dist/module/subgraph/SubgraphClient.d.ts +16 -0
- package/dist/module/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +41 -0
- package/dist/module/subgraph/queries/getAllEvents.generated.d.ts +578 -0
- package/dist/module/subgraph/queries/getIndexSubscriptions.generated.d.ts +42 -0
- package/dist/module/subgraph/queries/getIndexes.generated.d.ts +40 -0
- package/dist/module/subgraph/queries/getStreams.generated.d.ts +54 -0
- package/dist/module/subgraph/queries/getTokens.generated.d.ts +23 -0
- package/dist/module/subgraph/schema.generated.d.ts +6907 -0
- package/dist/module/typechain/ERC20WithTokenInfo.d.ts +159 -0
- package/dist/module/typechain/IConstantFlowAgreementV1.d.ts +305 -0
- package/dist/module/typechain/IInstantDistributionAgreementV1.d.ts +585 -0
- package/dist/module/typechain/IResolver.d.ts +57 -0
- package/dist/module/typechain/SuperToken.d.ts +1011 -0
- package/dist/module/typechain/Superfluid.d.ts +780 -0
- package/dist/module/typechain/SuperfluidLoader.d.ts +55 -0
- package/dist/module/typechain/TestToken.d.ts +207 -0
- package/dist/module/typechain/common.d.ts +21 -0
- package/dist/module/typechain/factories/ERC20WithTokenInfo__factory.d.ts +35 -0
- package/dist/module/typechain/factories/IConstantFlowAgreementV1__factory.d.ts +35 -0
- package/dist/module/typechain/factories/IInstantDistributionAgreementV1__factory.d.ts +35 -0
- package/dist/module/typechain/factories/IResolver__factory.d.ts +22 -0
- package/dist/module/typechain/factories/SuperToken__factory.d.ts +46 -0
- package/dist/module/typechain/factories/SuperfluidLoader__factory.d.ts +37 -0
- package/dist/module/typechain/factories/Superfluid__factory.d.ts +82 -0
- package/dist/module/typechain/factories/TestToken__factory.d.ts +46 -0
- package/dist/module/typechain/index.d.ts +16 -0
- package/dist/module/types.d.ts +2 -0
- package/dist/module/utils.d.ts +89 -0
- package/dist/module/validation.d.ts +8 -0
- package/dist/umd/BatchCall.d.ts +53 -0
- package/dist/umd/ConstantFlowAgreementV1.d.ts +74 -0
- package/dist/umd/Framework.d.ts +75 -0
- package/dist/umd/Host.d.ts +18 -0
- package/dist/umd/InstantDistributionAgreementV1.d.ts +107 -0
- package/dist/umd/Operation.d.ts +38 -0
- package/dist/umd/Query.d.ts +24 -0
- package/dist/umd/SFError.d.ts +13 -0
- package/dist/umd/SuperToken.d.ts +191 -0
- package/dist/umd/Token.d.ts +76 -0
- package/dist/umd/constants.d.ts +10 -0
- package/dist/umd/events.d.ts +254 -0
- package/dist/umd/frameworkHelpers.d.ts +20 -0
- package/dist/umd/index.d.ts +19 -0
- package/dist/umd/index.js +10782 -0
- package/dist/umd/interfaces.d.ts +309 -0
- package/dist/umd/mapGetAllEventsQueryEvents.d.ts +3 -0
- package/dist/umd/pagination.d.ts +31 -0
- package/dist/umd/scripts/setup.d.ts +22 -0
- package/dist/umd/subgraph/SubgraphClient.d.ts +16 -0
- package/dist/umd/subgraph/queries/getAccountTokenSnapshots.generated.d.ts +41 -0
- package/dist/umd/subgraph/queries/getAllEvents.generated.d.ts +578 -0
- package/dist/umd/subgraph/queries/getIndexSubscriptions.generated.d.ts +42 -0
- package/dist/umd/subgraph/queries/getIndexes.generated.d.ts +40 -0
- package/dist/umd/subgraph/queries/getStreams.generated.d.ts +54 -0
- package/dist/umd/subgraph/queries/getTokens.generated.d.ts +23 -0
- package/dist/umd/subgraph/schema.generated.d.ts +6907 -0
- package/dist/umd/typechain/ERC20WithTokenInfo.d.ts +159 -0
- package/dist/umd/typechain/IConstantFlowAgreementV1.d.ts +305 -0
- package/dist/umd/typechain/IInstantDistributionAgreementV1.d.ts +585 -0
- package/dist/umd/typechain/IResolver.d.ts +57 -0
- package/dist/umd/typechain/SuperToken.d.ts +1011 -0
- package/dist/umd/typechain/Superfluid.d.ts +780 -0
- package/dist/umd/typechain/SuperfluidLoader.d.ts +55 -0
- package/dist/umd/typechain/TestToken.d.ts +207 -0
- package/dist/umd/typechain/common.d.ts +21 -0
- package/dist/umd/typechain/factories/ERC20WithTokenInfo__factory.d.ts +35 -0
- package/dist/umd/typechain/factories/IConstantFlowAgreementV1__factory.d.ts +35 -0
- package/dist/umd/typechain/factories/IInstantDistributionAgreementV1__factory.d.ts +35 -0
- package/dist/umd/typechain/factories/IResolver__factory.d.ts +22 -0
- package/dist/umd/typechain/factories/SuperToken__factory.d.ts +46 -0
- package/dist/umd/typechain/factories/SuperfluidLoader__factory.d.ts +37 -0
- package/dist/umd/typechain/factories/Superfluid__factory.d.ts +82 -0
- package/dist/umd/typechain/factories/TestToken__factory.d.ts +46 -0
- package/dist/umd/typechain/index.d.ts +16 -0
- package/dist/umd/types.d.ts +2 -0
- package/dist/umd/utils.d.ts +89 -0
- package/dist/umd/validation.d.ts +8 -0
- package/package.json +76 -0
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
export declare type EventBase = {
|
|
2
|
+
blockNumber: number;
|
|
3
|
+
transactionHash: string;
|
|
4
|
+
timestamp: number;
|
|
5
|
+
};
|
|
6
|
+
export interface IEventFilter {
|
|
7
|
+
readonly account?: string;
|
|
8
|
+
readonly timestamp_gte?: number;
|
|
9
|
+
}
|
|
10
|
+
export declare type AccountEvents = FlowUpdatedEvent | IndexCreatedEvent | IndexDistributionClaimedEvent | IndexSubscribedEvent | IndexUnitsUpdatedEvent | IndexUnsubscribedEvent | IndexUpdatedEvent | TokenDowngradedEvent | TransferEvent | TokenUpgradedEvent | SubscriptionApprovedEvent | SubscriptionDistributionClaimedEvent | SubscriptionRevokedEvent | SubscriptionUnitsUpdatedEvent;
|
|
11
|
+
export declare type OtherEvents = AgreementClassRegisteredEvent | AgreementClassUpdatedEvent | AgreementLiquidatedByEvent | AppRegisteredEvent | BurnedEvent | CFAv1LiquidationPeriodChangedEvent | ConfigChangedEvent | CustomSuperTokenCreatedEvent | GovernanceReplacedEvent | JailEvent | MintedEvent | RewardAddressChangedEvent | RoleAdminChangedEvent | RoleGrantedEvent | RoleRevokedEvent | SentEvent | SuperTokenCreatedEvent | SuperTokenFactoryUpdatedEvent | SuperTokenLogicCreatedEvent | SuperTokenLogicUpdatedEvent | TrustedForwarderChangedEvent;
|
|
12
|
+
export declare type AllEvents = AccountEvents | OtherEvents;
|
|
13
|
+
export interface FlowUpdatedEvent extends EventBase {
|
|
14
|
+
name: "FlowUpdated";
|
|
15
|
+
token: string;
|
|
16
|
+
sender: string;
|
|
17
|
+
receiver: string;
|
|
18
|
+
flowRate: string;
|
|
19
|
+
}
|
|
20
|
+
export interface IndexCreatedEvent extends EventBase {
|
|
21
|
+
name: "IndexCreated";
|
|
22
|
+
token: string;
|
|
23
|
+
publisher: string;
|
|
24
|
+
indexId: string;
|
|
25
|
+
userData: string;
|
|
26
|
+
}
|
|
27
|
+
export interface IndexDistributionClaimedEvent extends EventBase {
|
|
28
|
+
name: "IndexDistributionClaimed";
|
|
29
|
+
token: string;
|
|
30
|
+
publisher: string;
|
|
31
|
+
indexId: string;
|
|
32
|
+
subscriber: string;
|
|
33
|
+
amount: string;
|
|
34
|
+
}
|
|
35
|
+
export interface IndexSubscribedEvent extends EventBase {
|
|
36
|
+
name: "IndexSubscribed";
|
|
37
|
+
token: string;
|
|
38
|
+
publisher: string;
|
|
39
|
+
indexId: string;
|
|
40
|
+
subscriber: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IndexUnitsUpdatedEvent extends EventBase {
|
|
43
|
+
name: "IndexUnitsUpdated";
|
|
44
|
+
token: string;
|
|
45
|
+
publisher: string;
|
|
46
|
+
indexId: string;
|
|
47
|
+
subscriber: string;
|
|
48
|
+
units: string;
|
|
49
|
+
userData: string;
|
|
50
|
+
oldUnits: string;
|
|
51
|
+
}
|
|
52
|
+
export interface IndexUnsubscribedEvent extends EventBase {
|
|
53
|
+
name: "IndexUnsubscribed";
|
|
54
|
+
token: string;
|
|
55
|
+
publisher: string;
|
|
56
|
+
indexId: string;
|
|
57
|
+
subscriber: string;
|
|
58
|
+
userData: string;
|
|
59
|
+
}
|
|
60
|
+
export interface IndexUpdatedEvent extends EventBase {
|
|
61
|
+
name: "IndexUpdated";
|
|
62
|
+
token: string;
|
|
63
|
+
publisher: string;
|
|
64
|
+
indexId: string;
|
|
65
|
+
oldIndexValue: string;
|
|
66
|
+
newIndexValue: string;
|
|
67
|
+
totalUnitsPending: string;
|
|
68
|
+
totalUnitsApproved: string;
|
|
69
|
+
userData: string;
|
|
70
|
+
}
|
|
71
|
+
export interface TokenDowngradedEvent extends EventBase {
|
|
72
|
+
name: "TokenDowngraded";
|
|
73
|
+
token: string;
|
|
74
|
+
amount: string;
|
|
75
|
+
account: string;
|
|
76
|
+
}
|
|
77
|
+
export interface TokenUpgradedEvent extends EventBase {
|
|
78
|
+
name: "TokenUpgraded";
|
|
79
|
+
token: string;
|
|
80
|
+
amount: string;
|
|
81
|
+
account: string;
|
|
82
|
+
}
|
|
83
|
+
export interface TransferEvent extends EventBase {
|
|
84
|
+
name: "Transfer";
|
|
85
|
+
from: string;
|
|
86
|
+
to: string;
|
|
87
|
+
value: string;
|
|
88
|
+
token: string;
|
|
89
|
+
}
|
|
90
|
+
export interface AgreementClassRegisteredEvent extends EventBase {
|
|
91
|
+
name: "AgreementClassRegistered";
|
|
92
|
+
agreementType: string;
|
|
93
|
+
code: string;
|
|
94
|
+
}
|
|
95
|
+
export interface AgreementClassUpdatedEvent extends EventBase {
|
|
96
|
+
name: "AgreementClassUpdated";
|
|
97
|
+
agreementType: string;
|
|
98
|
+
code: string;
|
|
99
|
+
}
|
|
100
|
+
export interface AgreementLiquidatedByEvent extends EventBase {
|
|
101
|
+
name: "AgreementLiquidatedBy";
|
|
102
|
+
agreementClass: string;
|
|
103
|
+
agreementId: string;
|
|
104
|
+
bailoutAmount: string;
|
|
105
|
+
bondAccount: string;
|
|
106
|
+
liquidatorAccount: string;
|
|
107
|
+
penaltyAccount: string;
|
|
108
|
+
rewardAmount: string;
|
|
109
|
+
token: string;
|
|
110
|
+
}
|
|
111
|
+
export interface AppRegisteredEvent extends EventBase {
|
|
112
|
+
name: "AppRegistered";
|
|
113
|
+
app: string;
|
|
114
|
+
}
|
|
115
|
+
export interface BurnedEvent extends EventBase {
|
|
116
|
+
name: "Burned";
|
|
117
|
+
amount: string;
|
|
118
|
+
data: string;
|
|
119
|
+
from: string;
|
|
120
|
+
operator: string;
|
|
121
|
+
operatorData: string;
|
|
122
|
+
}
|
|
123
|
+
export interface CFAv1LiquidationPeriodChangedEvent extends EventBase {
|
|
124
|
+
name: "CFAv1LiquidationPeriodChanged";
|
|
125
|
+
host: string;
|
|
126
|
+
isSet: boolean;
|
|
127
|
+
liquidationPeriod: number;
|
|
128
|
+
superToken: string;
|
|
129
|
+
}
|
|
130
|
+
export interface ConfigChangedEvent extends EventBase {
|
|
131
|
+
name: "ConfigChanged";
|
|
132
|
+
host: string;
|
|
133
|
+
isSet: boolean;
|
|
134
|
+
key: string;
|
|
135
|
+
superToken: string;
|
|
136
|
+
value: string;
|
|
137
|
+
}
|
|
138
|
+
export interface CustomSuperTokenCreatedEvent extends EventBase {
|
|
139
|
+
name: "CustomSuperTokenCreated";
|
|
140
|
+
token: string;
|
|
141
|
+
}
|
|
142
|
+
export interface GovernanceReplacedEvent extends EventBase {
|
|
143
|
+
name: "GovernanceReplaced";
|
|
144
|
+
oldGovernance: string;
|
|
145
|
+
newGovernance: string;
|
|
146
|
+
}
|
|
147
|
+
export interface JailEvent extends EventBase {
|
|
148
|
+
name: "Jail";
|
|
149
|
+
app: string;
|
|
150
|
+
reason: string;
|
|
151
|
+
}
|
|
152
|
+
export interface MintedEvent extends EventBase {
|
|
153
|
+
name: "Minted";
|
|
154
|
+
operator: string;
|
|
155
|
+
to: string;
|
|
156
|
+
amount: string;
|
|
157
|
+
data: string;
|
|
158
|
+
operatorData: string;
|
|
159
|
+
}
|
|
160
|
+
export interface RewardAddressChangedEvent extends EventBase {
|
|
161
|
+
name: "RewardAddressChanged";
|
|
162
|
+
host: string;
|
|
163
|
+
superToken: string;
|
|
164
|
+
isSet: boolean;
|
|
165
|
+
rewardAddress: string;
|
|
166
|
+
}
|
|
167
|
+
export interface RoleAdminChangedEvent extends EventBase {
|
|
168
|
+
name: "RoleAdminChanged";
|
|
169
|
+
role: string;
|
|
170
|
+
previousAdminRole: string;
|
|
171
|
+
newAdminRole: string;
|
|
172
|
+
}
|
|
173
|
+
export interface RoleGrantedEvent extends EventBase {
|
|
174
|
+
name: "RoleGranted";
|
|
175
|
+
role: string;
|
|
176
|
+
account: string;
|
|
177
|
+
sender: string;
|
|
178
|
+
}
|
|
179
|
+
export interface RoleRevokedEvent extends EventBase {
|
|
180
|
+
name: "RoleRevoked";
|
|
181
|
+
role: string;
|
|
182
|
+
account: string;
|
|
183
|
+
sender: string;
|
|
184
|
+
}
|
|
185
|
+
export interface SentEvent extends EventBase {
|
|
186
|
+
name: "Sent";
|
|
187
|
+
operator: string;
|
|
188
|
+
to: string;
|
|
189
|
+
amount: string;
|
|
190
|
+
data: string;
|
|
191
|
+
operatorData: string;
|
|
192
|
+
}
|
|
193
|
+
export interface SubscriptionApprovedEvent extends EventBase {
|
|
194
|
+
name: "SubscriptionApproved";
|
|
195
|
+
token: string;
|
|
196
|
+
subscriber: string;
|
|
197
|
+
publisher: string;
|
|
198
|
+
indexId: string;
|
|
199
|
+
userData: string;
|
|
200
|
+
subscription: string;
|
|
201
|
+
}
|
|
202
|
+
export interface SubscriptionDistributionClaimedEvent extends EventBase {
|
|
203
|
+
name: "SubscriptionDistributionClaimed";
|
|
204
|
+
token: string;
|
|
205
|
+
subscriber: string;
|
|
206
|
+
publisher: string;
|
|
207
|
+
indexId: string;
|
|
208
|
+
amount: string;
|
|
209
|
+
subscription: string;
|
|
210
|
+
}
|
|
211
|
+
export interface SubscriptionRevokedEvent extends EventBase {
|
|
212
|
+
name: "SubscriptionRevoked";
|
|
213
|
+
token: string;
|
|
214
|
+
subscriber: string;
|
|
215
|
+
publisher: string;
|
|
216
|
+
indexId: string;
|
|
217
|
+
userData: string;
|
|
218
|
+
subscription: string;
|
|
219
|
+
}
|
|
220
|
+
export interface SubscriptionUnitsUpdatedEvent extends EventBase {
|
|
221
|
+
name: "SubscriptionUnitsUpdated";
|
|
222
|
+
token: string;
|
|
223
|
+
subscriber: string;
|
|
224
|
+
publisher: string;
|
|
225
|
+
indexId: string;
|
|
226
|
+
units: string;
|
|
227
|
+
userData: string;
|
|
228
|
+
subscription: string;
|
|
229
|
+
}
|
|
230
|
+
export interface SuperTokenCreatedEvent extends EventBase {
|
|
231
|
+
name: "SuperTokenCreated";
|
|
232
|
+
token: string;
|
|
233
|
+
}
|
|
234
|
+
export interface SuperTokenFactoryUpdatedEvent extends EventBase {
|
|
235
|
+
name: "SuperTokenFactoryUpdated";
|
|
236
|
+
newFactory: string;
|
|
237
|
+
}
|
|
238
|
+
export interface SuperTokenLogicCreatedEvent extends EventBase {
|
|
239
|
+
name: "SuperTokenLogicCreated";
|
|
240
|
+
tokenLogic: string;
|
|
241
|
+
}
|
|
242
|
+
export interface SuperTokenLogicUpdatedEvent extends EventBase {
|
|
243
|
+
name: "SuperTokenLogicUpdated";
|
|
244
|
+
token: string;
|
|
245
|
+
code: string;
|
|
246
|
+
}
|
|
247
|
+
export interface TrustedForwarderChangedEvent extends EventBase {
|
|
248
|
+
name: "TrustedForwarderChanged";
|
|
249
|
+
host: string;
|
|
250
|
+
superToken: string;
|
|
251
|
+
isSet: boolean;
|
|
252
|
+
forwarder: string;
|
|
253
|
+
enabled: boolean;
|
|
254
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IFrameworkOptions } from "./Framework";
|
|
2
|
+
export declare const validateFrameworkConstructorOptions: (options: IFrameworkOptions) => void;
|
|
3
|
+
/**
|
|
4
|
+
* @dev options.networkName is casted as not null as we check to ensure chainId or networkName is not null.
|
|
5
|
+
* @param options
|
|
6
|
+
* @returns SubgraphQueriesEndpoint which is a custom endpoint or based on selected network
|
|
7
|
+
*/
|
|
8
|
+
export declare const getSubgraphQueriesEndpoint: (options: IFrameworkOptions) => string;
|
|
9
|
+
interface INetworkNameParams {
|
|
10
|
+
readonly chainId?: number;
|
|
11
|
+
readonly networkName?: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @dev We check that the user has input a networkName or chainId and that they are both supported.
|
|
15
|
+
* @param options.chainId the chainId of the desired network
|
|
16
|
+
* @param options.networkName the name of the desired network
|
|
17
|
+
* @returns the network name
|
|
18
|
+
*/
|
|
19
|
+
export declare const getNetworkName: (options: INetworkNameParams) => string;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Framework from "./Framework";
|
|
2
|
+
import SuperToken from "./SuperToken";
|
|
3
|
+
import Query from "./Query";
|
|
4
|
+
import ConstantFlowAgreementV1 from "./ConstantFlowAgreementV1";
|
|
5
|
+
import InstantDistributionAgreementV1 from "./InstantDistributionAgreementV1";
|
|
6
|
+
import Host from "./Host";
|
|
7
|
+
import BatchCall from "./BatchCall";
|
|
8
|
+
export * from "./interfaces";
|
|
9
|
+
export * from "./utils";
|
|
10
|
+
export * from "./pagination";
|
|
11
|
+
export * from "./events";
|
|
12
|
+
export * from "./types";
|
|
13
|
+
export { Framework };
|
|
14
|
+
export { SuperToken };
|
|
15
|
+
export { Query };
|
|
16
|
+
export { ConstantFlowAgreementV1 };
|
|
17
|
+
export { InstantDistributionAgreementV1 };
|
|
18
|
+
export { Host };
|
|
19
|
+
export { BatchCall };
|