@helium/helium-admin-cli 0.2.15 → 0.2.16
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/lib/cjs/distribute-iot-operations-fund.js +110 -0
- package/lib/cjs/distribute-iot-operations-fund.js.map +1 -0
- package/lib/esm/src/distribute-iot-operations-fund.js +69 -0
- package/lib/esm/src/distribute-iot-operations-fund.js.map +1 -0
- package/lib/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/lib/types/src/distribute-iot-operations-fund.d.ts +2 -0
- package/lib/types/src/distribute-iot-operations-fund.d.ts.map +1 -0
- package/package.json +13 -13
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
26
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
28
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
29
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
30
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
31
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
32
|
+
});
|
|
33
|
+
};
|
|
34
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
35
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
36
|
+
};
|
|
37
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
+
exports.run = void 0;
|
|
39
|
+
const anchor = __importStar(require("@coral-xyz/anchor"));
|
|
40
|
+
const client = __importStar(require("@helium/distributor-oracle"));
|
|
41
|
+
const helium_entity_manager_sdk_1 = require("@helium/helium-entity-manager-sdk");
|
|
42
|
+
const lazy_distributor_sdk_1 = require("@helium/lazy-distributor-sdk");
|
|
43
|
+
const rewards_oracle_sdk_1 = require("@helium/rewards-oracle-sdk");
|
|
44
|
+
const helium_sub_daos_sdk_1 = require("@helium/helium-sub-daos-sdk");
|
|
45
|
+
const spl_utils_1 = require("@helium/spl-utils");
|
|
46
|
+
const web3_js_1 = require("@solana/web3.js");
|
|
47
|
+
const os_1 = __importDefault(require("os"));
|
|
48
|
+
const yargs_1 = __importDefault(require("yargs/yargs"));
|
|
49
|
+
const IOT_OPERATIONS_FUND = 'iot_operations_fund';
|
|
50
|
+
function run(args = process.argv) {
|
|
51
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
52
|
+
const yarg = (0, yargs_1.default)(args).options({
|
|
53
|
+
wallet: {
|
|
54
|
+
alias: 'k',
|
|
55
|
+
describe: 'Anchor wallet keypair',
|
|
56
|
+
default: `${os_1.default.homedir()}/.config/solana/id.json`,
|
|
57
|
+
},
|
|
58
|
+
url: {
|
|
59
|
+
alias: 'u',
|
|
60
|
+
default: 'http://127.0.0.1:8899',
|
|
61
|
+
describe: 'The solana url',
|
|
62
|
+
},
|
|
63
|
+
mint: {
|
|
64
|
+
type: 'string',
|
|
65
|
+
describe: 'Pubkey of the rewards mint',
|
|
66
|
+
default: spl_utils_1.IOT_MINT.toBase58(),
|
|
67
|
+
},
|
|
68
|
+
hntMint: {
|
|
69
|
+
type: 'string',
|
|
70
|
+
describe: 'Mint address of hnt',
|
|
71
|
+
default: spl_utils_1.HNT_MINT.toBase58(),
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
const argv = yield yarg.argv;
|
|
75
|
+
process.env.ANCHOR_WALLET = argv.wallet;
|
|
76
|
+
process.env.ANCHOR_PROVIDER_URL = argv.url;
|
|
77
|
+
anchor.setProvider(anchor.AnchorProvider.local(argv.url));
|
|
78
|
+
const provider = anchor.getProvider();
|
|
79
|
+
const hemProgram = yield (0, helium_entity_manager_sdk_1.init)(provider);
|
|
80
|
+
const lazyProgram = yield (0, lazy_distributor_sdk_1.init)(provider);
|
|
81
|
+
const rewardsOracleProgram = yield (0, rewards_oracle_sdk_1.init)(provider);
|
|
82
|
+
const mint = new web3_js_1.PublicKey(argv.mint);
|
|
83
|
+
const [dao] = (0, helium_sub_daos_sdk_1.daoKey)(new web3_js_1.PublicKey(argv.hntMint));
|
|
84
|
+
const [lazyDistributor] = (0, lazy_distributor_sdk_1.lazyDistributorKey)(mint);
|
|
85
|
+
const [keyToAsset] = (0, helium_entity_manager_sdk_1.keyToAssetKey)(dao, IOT_OPERATIONS_FUND, 'utf8');
|
|
86
|
+
const assetId = (yield hemProgram.account.keyToAssetV0.fetch(keyToAsset))
|
|
87
|
+
.asset;
|
|
88
|
+
const [recipient] = (0, lazy_distributor_sdk_1.recipientKey)(lazyDistributor, assetId);
|
|
89
|
+
if (!(yield provider.connection.getAccountInfo(recipient))) {
|
|
90
|
+
const method = lazyProgram.methods.initializeRecipientV0().accounts({
|
|
91
|
+
lazyDistributor,
|
|
92
|
+
mint: assetId,
|
|
93
|
+
});
|
|
94
|
+
yield method.rpc({ skipPreflight: true });
|
|
95
|
+
}
|
|
96
|
+
const rewards = yield client.getCurrentRewards(lazyProgram, lazyDistributor, assetId);
|
|
97
|
+
const tx = yield client.formTransaction({
|
|
98
|
+
program: lazyProgram,
|
|
99
|
+
rewardsOracleProgram: rewardsOracleProgram,
|
|
100
|
+
provider,
|
|
101
|
+
rewards,
|
|
102
|
+
asset: assetId,
|
|
103
|
+
lazyDistributor,
|
|
104
|
+
});
|
|
105
|
+
const signed = yield provider.wallet.signTransaction(tx);
|
|
106
|
+
yield (0, spl_utils_1.sendAndConfirmWithRetry)(provider.connection, signed.serialize(), { skipPreflight: true }, 'confirmed');
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
exports.run = run;
|
|
110
|
+
//# sourceMappingURL=distribute-iot-operations-fund.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"distribute-iot-operations-fund.js","sourceRoot":"","sources":["../../src/distribute-iot-operations-fund.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as anchor from '@coral-xyz/anchor';
|
|
2
|
+
import * as client from '@helium/distributor-oracle';
|
|
3
|
+
import { init as initHem, keyToAssetKey, } from '@helium/helium-entity-manager-sdk';
|
|
4
|
+
import { init as initLazy, lazyDistributorKey, recipientKey, } from '@helium/lazy-distributor-sdk';
|
|
5
|
+
import { init as initRewards } from '@helium/rewards-oracle-sdk';
|
|
6
|
+
import { daoKey } from '@helium/helium-sub-daos-sdk';
|
|
7
|
+
import { HNT_MINT, IOT_MINT, sendAndConfirmWithRetry } from '@helium/spl-utils';
|
|
8
|
+
import { PublicKey } from '@solana/web3.js';
|
|
9
|
+
import os from 'os';
|
|
10
|
+
import yargs from 'yargs/yargs';
|
|
11
|
+
const IOT_OPERATIONS_FUND = 'iot_operations_fund';
|
|
12
|
+
export async function run(args = process.argv) {
|
|
13
|
+
const yarg = yargs(args).options({
|
|
14
|
+
wallet: {
|
|
15
|
+
alias: 'k',
|
|
16
|
+
describe: 'Anchor wallet keypair',
|
|
17
|
+
default: `${os.homedir()}/.config/solana/id.json`,
|
|
18
|
+
},
|
|
19
|
+
url: {
|
|
20
|
+
alias: 'u',
|
|
21
|
+
default: 'http://127.0.0.1:8899',
|
|
22
|
+
describe: 'The solana url',
|
|
23
|
+
},
|
|
24
|
+
mint: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
describe: 'Pubkey of the rewards mint',
|
|
27
|
+
default: IOT_MINT.toBase58(),
|
|
28
|
+
},
|
|
29
|
+
hntMint: {
|
|
30
|
+
type: 'string',
|
|
31
|
+
describe: 'Mint address of hnt',
|
|
32
|
+
default: HNT_MINT.toBase58(),
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
const argv = await yarg.argv;
|
|
36
|
+
process.env.ANCHOR_WALLET = argv.wallet;
|
|
37
|
+
process.env.ANCHOR_PROVIDER_URL = argv.url;
|
|
38
|
+
anchor.setProvider(anchor.AnchorProvider.local(argv.url));
|
|
39
|
+
const provider = anchor.getProvider();
|
|
40
|
+
const hemProgram = await initHem(provider);
|
|
41
|
+
const lazyProgram = await initLazy(provider);
|
|
42
|
+
const rewardsOracleProgram = await initRewards(provider);
|
|
43
|
+
const mint = new PublicKey(argv.mint);
|
|
44
|
+
const [dao] = daoKey(new PublicKey(argv.hntMint));
|
|
45
|
+
const [lazyDistributor] = lazyDistributorKey(mint);
|
|
46
|
+
const [keyToAsset] = keyToAssetKey(dao, IOT_OPERATIONS_FUND, 'utf8');
|
|
47
|
+
const assetId = (await hemProgram.account.keyToAssetV0.fetch(keyToAsset))
|
|
48
|
+
.asset;
|
|
49
|
+
const [recipient] = recipientKey(lazyDistributor, assetId);
|
|
50
|
+
if (!(await provider.connection.getAccountInfo(recipient))) {
|
|
51
|
+
const method = lazyProgram.methods.initializeRecipientV0().accounts({
|
|
52
|
+
lazyDistributor,
|
|
53
|
+
mint: assetId,
|
|
54
|
+
});
|
|
55
|
+
await method.rpc({ skipPreflight: true });
|
|
56
|
+
}
|
|
57
|
+
const rewards = await client.getCurrentRewards(lazyProgram, lazyDistributor, assetId);
|
|
58
|
+
const tx = await client.formTransaction({
|
|
59
|
+
program: lazyProgram,
|
|
60
|
+
rewardsOracleProgram: rewardsOracleProgram,
|
|
61
|
+
provider,
|
|
62
|
+
rewards,
|
|
63
|
+
asset: assetId,
|
|
64
|
+
lazyDistributor,
|
|
65
|
+
});
|
|
66
|
+
const signed = await provider.wallet.signTransaction(tx);
|
|
67
|
+
await sendAndConfirmWithRetry(provider.connection, signed.serialize(), { skipPreflight: true }, 'confirmed');
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=distribute-iot-operations-fund.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"distribute-iot-operations-fund.js","sourceRoot":"","sources":["../../../src/distribute-iot-operations-fund.ts"],"names":[],"mappings":"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"}
|