@sonarwatch/portfolio-plugins 0.14.77 → 0.14.78
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/CHANGELOG.md +5 -1
- package/package.json +1 -1
- package/src/index.js +5 -0
- package/src/index.js.map +1 -1
- package/src/plugins/perena/constants.d.ts +6 -0
- package/src/plugins/perena/constants.js +14 -0
- package/src/plugins/perena/constants.js.map +1 -0
- package/src/plugins/perena/index.d.ts +6 -0
- package/src/plugins/perena/index.js +12 -0
- package/src/plugins/perena/index.js.map +1 -0
- package/src/plugins/perena/poolsJob.d.ts +3 -0
- package/src/plugins/perena/poolsJob.js +69 -0
- package/src/plugins/perena/poolsJob.js.map +1 -0
- package/src/plugins/perena/structs.d.ts +47 -0
- package/src/plugins/perena/structs.js +47 -0
- package/src/plugins/perena/structs.js.map +1 -0
- package/src/plugins/perena/types.d.ts +5 -0
- package/src/plugins/perena/types.js +3 -0
- package/src/plugins/perena/types.js.map +1 -0
- package/src/plugins/tensor/constants.d.ts +3 -0
- package/src/plugins/tensor/constants.js +19 -1
- package/src/plugins/tensor/constants.js.map +1 -1
- package/src/plugins/tensor/index.d.ts +2 -0
- package/src/plugins/tensor/index.js +10 -3
- package/src/plugins/tensor/index.js.map +1 -1
- package/src/plugins/tensor/powerUserAirdropFetcher.d.ts +3 -0
- package/src/plugins/tensor/powerUserAirdropFetcher.js +98 -0
- package/src/plugins/tensor/powerUserAirdropFetcher.js.map +1 -0
- package/src/plugins/tensor/season4AirdropFetcher.d.ts +3 -0
- package/src/plugins/tensor/season4AirdropFetcher.js +44 -0
- package/src/plugins/tensor/season4AirdropFetcher.js.map +1 -0
- package/src/plugins/tensor/season4Alloc.d.ts +6 -0
- package/src/plugins/tensor/season4Alloc.js +86167 -0
- package/src/plugins/tensor/season4Alloc.js.map +1 -0
- package/src/plugins/zeta/airdropFetcher.js +14 -14
@@ -40,20 +40,20 @@ const clients_1 = require("../../utils/clients");
|
|
40
40
|
const getMultipleAccountsInfoSafe_1 = require("../../utils/solana/getMultipleAccountsInfoSafe");
|
41
41
|
const helpers_1 = require("./helpers");
|
42
42
|
const AirdropFetcher_1 = require("../../AirdropFetcher");
|
43
|
-
const query = (0, graphql_request_1.gql) `
|
44
|
-
query GetAirdropFinalFrontend($authority: String!) {
|
45
|
-
getAirdropFinalFrontend(authority: $authority) {
|
46
|
-
authority
|
47
|
-
community_allocation
|
48
|
-
eligibility
|
49
|
-
main_allocation
|
50
|
-
og_allocation
|
51
|
-
s1_allocation
|
52
|
-
s2_allocation
|
53
|
-
total_allocation
|
54
|
-
__typename
|
55
|
-
}
|
56
|
-
}
|
43
|
+
const query = (0, graphql_request_1.gql) `
|
44
|
+
query GetAirdropFinalFrontend($authority: String!) {
|
45
|
+
getAirdropFinalFrontend(authority: $authority) {
|
46
|
+
authority
|
47
|
+
community_allocation
|
48
|
+
eligibility
|
49
|
+
main_allocation
|
50
|
+
og_allocation
|
51
|
+
s1_allocation
|
52
|
+
s2_allocation
|
53
|
+
total_allocation
|
54
|
+
__typename
|
55
|
+
}
|
56
|
+
}
|
57
57
|
`;
|
58
58
|
const networkId = portfolio_core_1.NetworkId.solana;
|
59
59
|
const executor = (owner) => __awaiter(void 0, void 0, void 0, function* () {
|