@superfluid-finance/sdk-core 0.6.12 → 0.6.13-dev.2295e0f.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/dist/index.umd.js +537 -109
- package/dist/main/defaultSubgraphReleaseTag.json +1 -1
- package/dist/main/subgraph/schema.generated.d.ts +2 -38
- package/dist/main/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts +155 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts.map +1 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.js +3 -0
- package/dist/main/typechain-types/contracts/mocks/CrossStreamSuperApp.js.map +1 -0
- package/dist/main/typechain-types/contracts/mocks/index.d.ts +1 -0
- package/dist/main/typechain-types/contracts/mocks/index.d.ts.map +1 -1
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts +301 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts.map +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js +407 -0
- package/dist/main/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js.map +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
- package/dist/main/typechain-types/factories/contracts/mocks/index.d.ts.map +1 -1
- package/dist/main/typechain-types/factories/contracts/mocks/index.js +3 -1
- package/dist/main/typechain-types/factories/contracts/mocks/index.js.map +1 -1
- package/dist/main/typechain-types/index.d.ts +2 -0
- package/dist/main/typechain-types/index.d.ts.map +1 -1
- package/dist/main/typechain-types/index.js +4 -2
- package/dist/main/typechain-types/index.js.map +1 -1
- package/dist/module/defaultSubgraphReleaseTag.json +1 -1
- package/dist/module/subgraph/schema.generated.d.ts +2 -38
- package/dist/module/subgraph/schema.generated.d.ts.map +1 -1
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts +155 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.d.ts.map +1 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.js +2 -0
- package/dist/module/typechain-types/contracts/mocks/CrossStreamSuperApp.js.map +1 -0
- package/dist/module/typechain-types/contracts/mocks/index.d.ts +1 -0
- package/dist/module/typechain-types/contracts/mocks/index.d.ts.map +1 -1
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts +301 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.d.ts.map +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js +403 -0
- package/dist/module/typechain-types/factories/contracts/mocks/CrossStreamSuperApp__factory.js.map +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.d.ts.map +1 -1
- package/dist/module/typechain-types/factories/contracts/mocks/index.js +1 -0
- package/dist/module/typechain-types/factories/contracts/mocks/index.js.map +1 -1
- package/dist/module/typechain-types/index.d.ts +2 -0
- package/dist/module/typechain-types/index.d.ts.map +1 -1
- package/dist/module/typechain-types/index.js +1 -0
- package/dist/module/typechain-types/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -53,10 +53,6 @@ export interface Scalars {
|
|
|
53
53
|
input: string;
|
|
54
54
|
output: string;
|
|
55
55
|
};
|
|
56
|
-
Int8: {
|
|
57
|
-
input: any;
|
|
58
|
-
output: any;
|
|
59
|
-
};
|
|
60
56
|
}
|
|
61
57
|
export interface AccountTokenSnapshotLog_Filter {
|
|
62
58
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -7778,14 +7774,6 @@ export interface TokenStatisticLog_Filter {
|
|
|
7778
7774
|
totalDeposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
7779
7775
|
totalDeposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
7780
7776
|
totalDeposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
7781
|
-
totalNumberOfAccounts?: InputMaybe<Scalars['Int']['input']>;
|
|
7782
|
-
totalNumberOfAccounts_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7783
|
-
totalNumberOfAccounts_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
7784
|
-
totalNumberOfAccounts_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7785
|
-
totalNumberOfAccounts_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
7786
|
-
totalNumberOfAccounts_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7787
|
-
totalNumberOfAccounts_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7788
|
-
totalNumberOfAccounts_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7789
7777
|
totalNumberOfActiveIndexes?: InputMaybe<Scalars['Int']['input']>;
|
|
7790
7778
|
totalNumberOfActiveIndexes_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7791
7779
|
totalNumberOfActiveIndexes_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7810,14 +7798,6 @@ export interface TokenStatisticLog_Filter {
|
|
|
7810
7798
|
totalNumberOfClosedStreams_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7811
7799
|
totalNumberOfClosedStreams_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7812
7800
|
totalNumberOfClosedStreams_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7813
|
-
totalNumberOfHolders?: InputMaybe<Scalars['Int']['input']>;
|
|
7814
|
-
totalNumberOfHolders_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7815
|
-
totalNumberOfHolders_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
7816
|
-
totalNumberOfHolders_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7817
|
-
totalNumberOfHolders_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
7818
|
-
totalNumberOfHolders_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7819
|
-
totalNumberOfHolders_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7820
|
-
totalNumberOfHolders_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7821
7801
|
totalNumberOfIndexes?: InputMaybe<Scalars['Int']['input']>;
|
|
7822
7802
|
totalNumberOfIndexes_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7823
7803
|
totalNumberOfIndexes_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7881,7 +7861,7 @@ export interface TokenStatisticLog_Filter {
|
|
|
7881
7861
|
triggeredByEventName_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
7882
7862
|
triggeredByEventName_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
7883
7863
|
}
|
|
7884
|
-
export type TokenStatisticLog_OrderBy = 'blockNumber' | 'id' | 'logIndex' | 'order' | 'timestamp' | 'token' | 'tokenStatistic' | 'tokenStatistic__id' | 'tokenStatistic__totalAmountDistributedUntilUpdatedAt' | 'tokenStatistic__totalAmountStreamedUntilUpdatedAt' | 'tokenStatistic__totalAmountTransferredUntilUpdatedAt' | 'tokenStatistic__totalApprovedSubscriptions' | 'tokenStatistic__totalDeposit' | '
|
|
7864
|
+
export type TokenStatisticLog_OrderBy = 'blockNumber' | 'id' | 'logIndex' | 'order' | 'timestamp' | 'token' | 'tokenStatistic' | 'tokenStatistic__id' | 'tokenStatistic__totalAmountDistributedUntilUpdatedAt' | 'tokenStatistic__totalAmountStreamedUntilUpdatedAt' | 'tokenStatistic__totalAmountTransferredUntilUpdatedAt' | 'tokenStatistic__totalApprovedSubscriptions' | 'tokenStatistic__totalDeposit' | 'tokenStatistic__totalNumberOfActiveIndexes' | 'tokenStatistic__totalNumberOfActiveStreams' | 'tokenStatistic__totalNumberOfClosedStreams' | 'tokenStatistic__totalNumberOfIndexes' | 'tokenStatistic__totalOutflowRate' | 'tokenStatistic__totalSubscriptionsWithUnits' | 'tokenStatistic__totalSupply' | 'tokenStatistic__updatedAtBlockNumber' | 'tokenStatistic__updatedAtTimestamp' | 'token__createdAtBlockNumber' | 'token__createdAtTimestamp' | 'token__decimals' | 'token__id' | 'token__isListed' | 'token__isNativeAssetSuperToken' | 'token__isSuperToken' | 'token__name' | 'token__symbol' | 'token__underlyingAddress' | 'totalAmountDistributed' | 'totalAmountStreamed' | 'totalAmountTransferred' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalNumberOfActiveIndexes' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalNumberOfIndexes' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'totalSupply' | 'transactionHash' | 'triggeredByEventName';
|
|
7885
7865
|
export interface TokenStatistic_Filter {
|
|
7886
7866
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
7887
7867
|
and?: InputMaybe<Array<InputMaybe<TokenStatistic_Filter>>>;
|
|
@@ -7956,14 +7936,6 @@ export interface TokenStatistic_Filter {
|
|
|
7956
7936
|
totalDeposit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
7957
7937
|
totalDeposit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
7958
7938
|
totalDeposit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
7959
|
-
totalNumberOfAccounts?: InputMaybe<Scalars['Int']['input']>;
|
|
7960
|
-
totalNumberOfAccounts_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7961
|
-
totalNumberOfAccounts_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
7962
|
-
totalNumberOfAccounts_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7963
|
-
totalNumberOfAccounts_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
7964
|
-
totalNumberOfAccounts_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7965
|
-
totalNumberOfAccounts_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7966
|
-
totalNumberOfAccounts_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7967
7939
|
totalNumberOfActiveIndexes?: InputMaybe<Scalars['Int']['input']>;
|
|
7968
7940
|
totalNumberOfActiveIndexes_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7969
7941
|
totalNumberOfActiveIndexes_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7988,14 +7960,6 @@ export interface TokenStatistic_Filter {
|
|
|
7988
7960
|
totalNumberOfClosedStreams_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7989
7961
|
totalNumberOfClosedStreams_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7990
7962
|
totalNumberOfClosedStreams_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7991
|
-
totalNumberOfHolders?: InputMaybe<Scalars['Int']['input']>;
|
|
7992
|
-
totalNumberOfHolders_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
7993
|
-
totalNumberOfHolders_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
7994
|
-
totalNumberOfHolders_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7995
|
-
totalNumberOfHolders_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
7996
|
-
totalNumberOfHolders_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
7997
|
-
totalNumberOfHolders_not?: InputMaybe<Scalars['Int']['input']>;
|
|
7998
|
-
totalNumberOfHolders_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
7999
7963
|
totalNumberOfIndexes?: InputMaybe<Scalars['Int']['input']>;
|
|
8000
7964
|
totalNumberOfIndexes_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
8001
7965
|
totalNumberOfIndexes_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8045,7 +8009,7 @@ export interface TokenStatistic_Filter {
|
|
|
8045
8009
|
updatedAtTimestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8046
8010
|
updatedAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8047
8011
|
}
|
|
8048
|
-
export type TokenStatistic_OrderBy = 'id' | 'token' | 'tokenStatisticLogs' | 'token__createdAtBlockNumber' | 'token__createdAtTimestamp' | 'token__decimals' | 'token__id' | 'token__isListed' | 'token__isNativeAssetSuperToken' | 'token__isSuperToken' | 'token__name' | 'token__symbol' | 'token__underlyingAddress' | 'totalAmountDistributedUntilUpdatedAt' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | '
|
|
8012
|
+
export type TokenStatistic_OrderBy = 'id' | 'token' | 'tokenStatisticLogs' | 'token__createdAtBlockNumber' | 'token__createdAtTimestamp' | 'token__decimals' | 'token__id' | 'token__isListed' | 'token__isNativeAssetSuperToken' | 'token__isSuperToken' | 'token__name' | 'token__symbol' | 'token__underlyingAddress' | 'totalAmountDistributedUntilUpdatedAt' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalNumberOfActiveIndexes' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalNumberOfIndexes' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'totalSupply' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
8049
8013
|
export interface TokenUpgradedEvent_Filter {
|
|
8050
8014
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
8051
8015
|
account?: InputMaybe<Scalars['String']['input']>;
|