From 7dd3c923be32bbdf15a6d1f7bdc3d5d0d6bc3af5 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Fri, 25 Oct 2024 16:26:00 -0500 Subject: [PATCH 01/15] [HIP-124] Automatically track sliding scale of voting rewards --- .../src/initialize-vetoken-tracking.ts | 39 +++++++++++++++- .../initialize_vetoken_tracker_v0.rs | 13 +++++- .../src/instructions/mod.rs | 2 + .../src/instructions/reward_for_epoch_v0.rs | 45 +++++++++++++++++-- .../instructions/update_vetoken_tracker_v0.rs | 40 +++++++++++++++++ programs/position-voting-rewards/src/lib.rs | 14 +++++- programs/position-voting-rewards/src/state.rs | 9 ++++ tests/helium-sub-daos.ts | 4 +- tests/position-voting-rewards.ts | 42 +++++++++++++---- 9 files changed, 190 insertions(+), 18 deletions(-) create mode 100644 programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs diff --git a/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts b/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts index 19ae1ad1e..26439741f 100644 --- a/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts +++ b/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts @@ -11,6 +11,7 @@ import { PublicKey, TransactionInstruction } from "@solana/web3.js"; import Squads from "@sqds/sdk"; import os from "os"; import yargs from "yargs/yargs"; +import BN from "bn.js"; import { loadKeypair, sendInstructionsOrSquads @@ -74,11 +75,35 @@ export async function run(args: any = process.argv) { const subDao = subDaoKey(dntMint)[0]; const subDaoAcc = await program.account.subDaoV0.fetch(subDao); + const votingRewardsTiers = [ + { + numVetokens: new BN(0), + percent: delegatorRewardsPercent(12.5), + }, + { + numVetokens: new BN(35_000_000_000_000000), + percent: delegatorRewardsPercent(25), + }, + { + numVetokens: new BN(50_000_000_000_000000), + percent: delegatorRewardsPercent(50), + }, + { + numVetokens: new BN(75_000_000_000_000000), + percent: delegatorRewardsPercent(75), + }, + { + numVetokens: new BN(100_000_000_000_000000), + percent: delegatorRewardsPercent(100), + }, + ]; let { instruction, pubkeys: { vetokenTracker }, } = await pvrProgram.methods - .initializeVetokenTrackerV0() + .initializeVetokenTrackerV0({ + votingRewardsTiers, + }) .accounts({ registrar: subDaoAcc.registrar, proposalNamespace: organizationKey(argv.orgName)[0], @@ -90,6 +115,18 @@ export async function run(args: any = process.argv) { if (!await provider.connection.getAccountInfo(vetokenTracker!)) { instructions.push(instruction); + } else { + instructions.push( + await pvrProgram.methods + .updateVetokenTrackerV0({ + votingRewardsTiers, + }) + .accounts({ + vetokenTracker: vetokenTracker!, + realmAuthority: subDaoAcc.authority, + }) + .instruction() + ); } instructions.push( diff --git a/programs/position-voting-rewards/src/instructions/initialize_vetoken_tracker_v0.rs b/programs/position-voting-rewards/src/instructions/initialize_vetoken_tracker_v0.rs index 6a592b892..673940737 100644 --- a/programs/position-voting-rewards/src/instructions/initialize_vetoken_tracker_v0.rs +++ b/programs/position-voting-rewards/src/instructions/initialize_vetoken_tracker_v0.rs @@ -4,7 +4,12 @@ use anchor_lang::prelude::*; use anchor_spl::token::Mint; use voter_stake_registry::state::Registrar; -use crate::state::{RecentProposal, VeTokenTrackerV0}; +use crate::state::{RecentProposal, VeTokenTrackerV0, VotingRewardsTierV0}; + +#[derive(AnchorSerialize, AnchorDeserialize)] +pub struct InitializeVeTokenTrackerArgsV0 { + pub voting_rewards_tiers: Vec, +} #[derive(Accounts)] pub struct InitializeVeTokenTrackerV0<'info> { @@ -31,7 +36,10 @@ pub struct InitializeVeTokenTrackerV0<'info> { pub system_program: Program<'info, System>, } -pub fn handler(ctx: Context) -> Result<()> { +pub fn handler( + ctx: Context, + args: InitializeVeTokenTrackerArgsV0, +) -> Result<()> { ctx.accounts.vetoken_tracker.set_inner(VeTokenTrackerV0 { proposal_namespace: ctx.accounts.proposal_namespace.key(), registrar: ctx.accounts.registrar.key(), @@ -42,6 +50,7 @@ pub fn handler(ctx: Context) -> Result<()> { total_vetokens: 0, recent_proposals: array::from_fn(|_| RecentProposal::default()), bump_seed: ctx.bumps["vetoken_tracker"], + voting_rewards_tiers: args.voting_rewards_tiers, }); Ok(()) } diff --git a/programs/position-voting-rewards/src/instructions/mod.rs b/programs/position-voting-rewards/src/instructions/mod.rs index 42f19050d..411607ab5 100644 --- a/programs/position-voting-rewards/src/instructions/mod.rs +++ b/programs/position-voting-rewards/src/instructions/mod.rs @@ -4,6 +4,7 @@ pub mod initialize_vetoken_tracker_v0; pub mod reward_for_epoch_v0; pub mod track_vote_v0; pub mod unenroll_v0; +pub mod update_vetoken_tracker_v0; pub use claim_rewards_v0::*; pub use enroll_v0::*; @@ -11,3 +12,4 @@ pub use initialize_vetoken_tracker_v0::*; pub use reward_for_epoch_v0::*; pub use track_vote_v0::*; pub use unenroll_v0::*; +pub use update_vetoken_tracker_v0::*; diff --git a/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs b/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs index 8614c9e90..2dc9d9b8b 100644 --- a/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs +++ b/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs @@ -1,7 +1,7 @@ use anchor_lang::prelude::*; use anchor_spl::{ associated_token::AssociatedToken, - token::{transfer, Mint, Token, TokenAccount, Transfer}, + token::{burn, close_account, transfer, Burn, CloseAccount, Mint, Token, TokenAccount, Transfer}, }; use voter_stake_registry::state::Registrar; @@ -35,6 +35,7 @@ pub struct RewardForEpochV0<'info> { bump, )] pub vsr_epoch_info: Box>, + #[account(mut)] pub rewards_mint: Box>, #[account( init_if_needed, @@ -60,7 +61,6 @@ pub fn handler(ctx: Context, args: RewardForEpochArgsV0) -> Re ctx.accounts.vsr_epoch_info.bump_seed = ctx.bumps["vsr_epoch_info"]; ctx.accounts.vsr_epoch_info.recent_proposals = ctx.accounts.vetoken_tracker.recent_proposals.clone(); - ctx.accounts.vsr_epoch_info.rewards_amount = args.amount; ctx.accounts.vsr_epoch_info.rewards_issued_at = Some(ctx.accounts.registrar.clock_unix_timestamp()); @@ -70,6 +70,26 @@ pub fn handler(ctx: Context, args: RewardForEpochArgsV0) -> Re .vetoken_tracker .update_vetokens(&mut ctx.accounts.vsr_epoch_info, curr_ts)?; + let max_percent = 100_u64.checked_mul(10_0000000).unwrap(); + let tier = ctx + .accounts + .vetoken_tracker + .voting_rewards_tiers + .iter() + .rev() + .find(|tier| tier.num_vetokens <= ctx.accounts.vsr_epoch_info.vetokens_at_epoch_start) + .unwrap() + .percent; + let actual_amount: u64 = (args.amount as u128) + .checked_mul(u128::from(tier)) + .unwrap() + .checked_div(max_percent as u128) // 100% with 2 decimals accuracy + .unwrap() + .try_into() + .unwrap(); + + ctx.accounts.vsr_epoch_info.rewards_amount = actual_amount; + transfer( CpiContext::new( ctx.accounts.token_program.to_account_info(), @@ -79,8 +99,27 @@ pub fn handler(ctx: Context, args: RewardForEpochArgsV0) -> Re authority: ctx.accounts.rewards_payer.to_account_info(), }, ), - args.amount, + actual_amount, + )?; + burn( + CpiContext::new( + ctx.accounts.token_program.to_account_info(), + Burn { + mint: ctx.accounts.rewards_mint.to_account_info(), + authority: ctx.accounts.rewards_payer.to_account_info(), + from: ctx.accounts.payer_ata.to_account_info(), + }, + ), + args.amount - actual_amount, )?; + close_account(CpiContext::new( + ctx.accounts.token_program.to_account_info(), + CloseAccount { + account: ctx.accounts.payer_ata.to_account_info(), + destination: ctx.accounts.rent_payer.to_account_info(), + authority: ctx.accounts.rewards_payer.to_account_info(), + }, + ))?; Ok(()) } diff --git a/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs b/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs new file mode 100644 index 000000000..5d4a1a50e --- /dev/null +++ b/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs @@ -0,0 +1,40 @@ +use anchor_lang::prelude::*; +use shared_utils::resize_to_fit; +use voter_stake_registry::state::Registrar; + +use crate::state::{VeTokenTrackerV0, VotingRewardsTierV0}; + +#[derive(AnchorDeserialize, AnchorSerialize)] +pub struct UpdateVeTokenTrackerArgsV0 { + pub voting_rewards_tiers: Option>, +} +#[derive(Accounts)] +pub struct UpdateVeTokenTrackerV0<'info> { + #[account(mut)] + pub payer: Signer<'info>, + #[account(has_one = registrar)] + pub vetoken_tracker: Account<'info, VeTokenTrackerV0>, + #[account( + has_one = realm_authority + )] + pub registrar: Account<'info, Registrar>, + pub realm_authority: Signer<'info>, + pub system_program: Program<'info, System>, +} + +pub fn handler( + ctx: Context, + args: UpdateVeTokenTrackerArgsV0, +) -> Result<()> { + if let Some(voting_rewards_tiers) = args.voting_rewards_tiers { + ctx.accounts.vetoken_tracker.voting_rewards_tiers = voting_rewards_tiers; + } + + resize_to_fit( + &ctx.accounts.payer.to_account_info(), + &ctx.accounts.system_program.to_account_info(), + &ctx.accounts.vetoken_tracker, + )?; + + Ok(()) +} diff --git a/programs/position-voting-rewards/src/lib.rs b/programs/position-voting-rewards/src/lib.rs index a4733a4e7..b30a573f7 100644 --- a/programs/position-voting-rewards/src/lib.rs +++ b/programs/position-voting-rewards/src/lib.rs @@ -32,8 +32,18 @@ use instructions::*; pub mod position_voting_rewards { use super::*; - pub fn initialize_vetoken_tracker_v0(ctx: Context) -> Result<()> { - initialize_vetoken_tracker_v0::handler(ctx) + pub fn initialize_vetoken_tracker_v0( + ctx: Context, + args: InitializeVeTokenTrackerArgsV0, + ) -> Result<()> { + initialize_vetoken_tracker_v0::handler(ctx, args) + } + + pub fn update_vetoken_tracker_v0( + ctx: Context, + args: UpdateVeTokenTrackerArgsV0, + ) -> Result<()> { + update_vetoken_tracker_v0::handler(ctx, args) } pub fn enroll_v0(ctx: Context) -> Result<()> { diff --git a/programs/position-voting-rewards/src/state.rs b/programs/position-voting-rewards/src/state.rs index 16c693f5b..f8861f7c9 100644 --- a/programs/position-voting-rewards/src/state.rs +++ b/programs/position-voting-rewards/src/state.rs @@ -147,6 +147,15 @@ pub struct VeTokenTrackerV0 { pub total_vetokens: u128, // the total amount of vetoken staked to this subdao, with 12 decimals of extra precision pub recent_proposals: [RecentProposal; 4], pub bump_seed: u8, + #[max_len(5)] + pub voting_rewards_tiers: Vec, +} + +#[derive(AnchorSerialize, AnchorDeserialize, Clone, Default, InitSpace)] +pub struct VotingRewardsTierV0 { + pub num_vetokens: u128, + // number between 0 - (100_u64 * 100_000_000). The percent of the issued rewards to issue, the rest are burned + pub percent: u64, } #[macro_export] diff --git a/tests/helium-sub-daos.ts b/tests/helium-sub-daos.ts index 2777b1771..3ef836125 100644 --- a/tests/helium-sub-daos.ts +++ b/tests/helium-sub-daos.ts @@ -264,7 +264,9 @@ describe("helium-sub-daos", () => { let { pubkeys: { vetokenTracker: tracker }, } = await rewardsProgram.methods - .initializeVetokenTrackerV0() + .initializeVetokenTrackerV0({ + votingRewardsTiers: [], + }) .accounts({ registrar: subDaoRegistrar, proposalNamespace: me, diff --git a/tests/position-voting-rewards.ts b/tests/position-voting-rewards.ts index 28f7d0a5d..393c9f02a 100644 --- a/tests/position-voting-rewards.ts +++ b/tests/position-voting-rewards.ts @@ -8,7 +8,11 @@ import { ensureVSRIdl } from "./utils/fixtures"; import { Keypair, PublicKey } from "@solana/web3.js"; import { createPosition, initVsr } from "./utils/vsr"; import { createAtaAndMint, createMint, toBN, toNumber } from "../packages/spl-utils/src"; -import { currentEpoch, daoKey } from "../packages/helium-sub-daos-sdk/src"; +import { + currentEpoch, + daoKey, + delegatorRewardsPercent, +} from "../packages/helium-sub-daos-sdk/src"; import chai, { assert, expect } from "chai"; import chaiAsPromised from "chai-as-promised"; import { expectBnAccuracy } from "./utils/expectBnAccuracy"; @@ -147,13 +151,33 @@ describe("position-voting-rewards", () => { options, positionAuthorityKp )); - let { pubkeys: { vetokenTracker: tracker } } = await program.methods.initializeVetokenTrackerV0().accounts({ - registrar, - rewardsMint: hntMint, - payer: me, - rewardsAuthority: me, - proposalNamespace: me, - }).rpcAndKeys({ skipPreflight: true }); + let { + pubkeys: { vetokenTracker: tracker }, + } = await program.methods + .initializeVetokenTrackerV0({ + votingRewardsTiers: [ + { + numVetokens: new anchor.BN(0), + percent: delegatorRewardsPercent(0), + }, + { + numVetokens: new anchor.BN(10), + percent: delegatorRewardsPercent(50), + }, + { + numVetokens: new anchor.BN(1000000000000000), + percent: delegatorRewardsPercent(100), + }, + ], + }) + .accounts({ + registrar, + rewardsMint: hntMint, + payer: me, + rewardsAuthority: me, + proposalNamespace: me, + }) + .rpcAndKeys({ skipPreflight: true }); vetokenTracker = tracker! as PublicKey; const registrarAcc = await vsrProgram.account.registrar.fetch(registrar); @@ -568,7 +592,7 @@ describe("position-voting-rewards", () => { ).amount; expect( Number(postAtaBalance) - Number(preAtaBalance) - ).to.be.within(toBN(REWARDS, 8).toNumber() - 5000, toBN(REWARDS, 8).toNumber()); + ).to.be.within(toBN(REWARDS / 2, 8).toNumber() - 5000, toBN(REWARDS / 2, 8).toNumber()); }); }); }); From 882b8ac0a9742cc767975a7b359ddeec702e7d61 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 09:18:08 -0700 Subject: [PATCH 02/15] Fix bugs with HIP-124 --- packages/crons/src/end-epoch.ts | 39 ++++++++++++------- .../instructions/issue_voting_rewards_v0.rs | 2 +- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/packages/crons/src/end-epoch.ts b/packages/crons/src/end-epoch.ts index 56009ea31..57a63fdb4 100644 --- a/packages/crons/src/end-epoch.ts +++ b/packages/crons/src/end-epoch.ts @@ -78,12 +78,20 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { }, }, ]); + const vetokenTrackers = subDaos.map(subDao => subDao.account.vetokenTracker).filter(tracker => !tracker.equals(PublicKey.default)); + const vetokenTrackerAccounts = await Promise.all(vetokenTrackers.map(tracker => pvrProgram.account.veTokenTrackerV0.fetch(tracker))); + const targetTsVetokenTrackers = vetokenTrackerAccounts.reduce( + (acc, tracker) => BN.min(acc, tracker.vetokenLastCalculatedTs), + // Start one day back to ensure we at least close the epoch that the job is running in. + new BN(unixNow - 24 * 60 * 60) + ); - let targetTs = subDaos.reduce( + let targetTsSubdao = subDaos.reduce( (acc, subDao) => BN.min(acc, subDao.account.vehntLastCalculatedTs), // Start one day back to ensure we at least close the epoch that the job is running in. new BN(unixNow - 24 * 60 * 60) ); + let targetTs = BN.min(targetTsSubdao, targetTsVetokenTrackers); const solanaTime = await getSolanaUnixTimestamp(provider.connection) mainLoop: while (targetTs.toNumber() < unixNow) { @@ -147,8 +155,9 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { } } - if (!daoEpochInfo?.doneIssuingRewards) { - for (const subDao of subDaos) { + + for (const subDao of subDaos) { + if (!daoEpochInfo?.doneIssuingRewards) { const [subDaoEpoch] = subDaoEpochInfoKey(subDao.publicKey, targetTs); const subDaoEpochInfo = await heliumSubDaosProgram.account.subDaoEpochInfoV0.fetchNullable( @@ -175,15 +184,20 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { ); } } + } - const hasVeTokenTracker = !subDao.account.vetokenTracker.equals(PublicKey.default); - if (hasVeTokenTracker) { - const [vsrEpoch] = vsrEpochInfoKey(subDao.account.vetokenTracker, targetTs); - const vsrEpochInfo = - await pvrProgram.account.vsrEpochInfoV0.fetchNullable( - vsrEpoch - ); - if (!vsrEpochInfo || !vsrEpochInfo.rewardsIssuedAt) { + const hasVeTokenTracker = !subDao.account.vetokenTracker.equals( + PublicKey.default + ); + + if (hasVeTokenTracker) { + const [vsrEpoch] = vsrEpochInfoKey( + subDao.account.vetokenTracker, + targetTs + ); + const vsrEpochInfo = + await pvrProgram.account.vsrEpochInfoV0.fetchNullable(vsrEpoch); + if (!vsrEpochInfo || !vsrEpochInfo.rewardsIssuedAt) { try { await sendInstructionsWithPriorityFee( provider, @@ -203,8 +217,7 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { } catch (err: any) { errors.push( `Failed to issue voting rewards for ${subDao.account.dntMint.toBase58()}: ${err}` - ); - } + ); } } } diff --git a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs index 14f0e6133..681ec9ce9 100644 --- a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs +++ b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs @@ -89,7 +89,7 @@ pub fn handler(ctx: Context, args: IssueVotingRewardsArgsV let data = ctx.accounts.vsr_epoch_info.try_borrow_data()?; if !data.is_empty() { - let vsr_epoch_info = VsrEpochInfoV0::try_from_slice(&data)?; + let vsr_epoch_info = VsrEpochInfoV0::try_from_slice(&data[8..])?; if vsr_epoch_info.rewards_issued_at.is_some() { return Err(error!(ErrorCode::RewardsAlreadyIssued)); } From 9e8342bedef45dedb2c91f27bc102c19a175bd9d Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 09:19:17 -0700 Subject: [PATCH 03/15] Trigger build --- programs/position-voting-rewards/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/position-voting-rewards/Cargo.toml b/programs/position-voting-rewards/Cargo.toml index 4ffa83e1e..156852811 100644 --- a/programs/position-voting-rewards/Cargo.toml +++ b/programs/position-voting-rewards/Cargo.toml @@ -28,3 +28,4 @@ solana-security-txt = { workspace = true } voter-stake-registry = { path = "../voter-stake-registry", features = ["no-entrypoint", "cpi"] } default-env = { workspace = true } proposal = { path = "../../utils/proposal" } + From 42e1c39a8fce7e69bd67e82d9d11c9c3a9d52713 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 09:41:56 -0700 Subject: [PATCH 04/15] Some fixes --- .../helium-admin-cli/src/initialize-vetoken-tracking.ts | 8 ++++---- .../src/instructions/update_vetoken_tracker_v0.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts b/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts index 26439741f..71284073b 100644 --- a/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts +++ b/packages/helium-admin-cli/src/initialize-vetoken-tracking.ts @@ -81,19 +81,19 @@ export async function run(args: any = process.argv) { percent: delegatorRewardsPercent(12.5), }, { - numVetokens: new BN(35_000_000_000_000000), + numVetokens: new BN("35000000000000000"), percent: delegatorRewardsPercent(25), }, { - numVetokens: new BN(50_000_000_000_000000), + numVetokens: new BN("50000000000000000"), percent: delegatorRewardsPercent(50), }, { - numVetokens: new BN(75_000_000_000_000000), + numVetokens: new BN("75000000000000000"), percent: delegatorRewardsPercent(75), }, { - numVetokens: new BN(100_000_000_000_000000), + numVetokens: new BN("100000000000000000"), percent: delegatorRewardsPercent(100), }, ]; diff --git a/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs b/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs index 5d4a1a50e..cf09c7c89 100644 --- a/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs +++ b/programs/position-voting-rewards/src/instructions/update_vetoken_tracker_v0.rs @@ -12,7 +12,7 @@ pub struct UpdateVeTokenTrackerArgsV0 { pub struct UpdateVeTokenTrackerV0<'info> { #[account(mut)] pub payer: Signer<'info>, - #[account(has_one = registrar)] + #[account(mut, has_one = registrar)] pub vetoken_tracker: Account<'info, VeTokenTrackerV0>, #[account( has_one = realm_authority From 0897f0b15dd57b55a5abfb450e09caf53228f770 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 10:21:14 -0700 Subject: [PATCH 05/15] Fix data read --- .../src/instructions/issue_voting_rewards_v0.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs index 681ec9ce9..f87006f36 100644 --- a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs +++ b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs @@ -1,3 +1,5 @@ +use core::slice::SlicePattern; + use anchor_lang::prelude::*; use anchor_spl::{ associated_token::AssociatedToken, @@ -87,9 +89,9 @@ pub fn handler(ctx: Context, args: IssueVotingRewardsArgsV return Err(error!(ErrorCode::EpochNotOver)); } - let data = ctx.accounts.vsr_epoch_info.try_borrow_data()?; + let data: &mut [u8] = &mut ctx.accounts.vsr_epoch_info.try_borrow_mut_data()?; if !data.is_empty() { - let vsr_epoch_info = VsrEpochInfoV0::try_from_slice(&data[8..])?; + let vsr_epoch_info: VsrEpochInfoV0 = anchor_lang::AnchorDeserialize::deserialize(&mut &*data)?; if vsr_epoch_info.rewards_issued_at.is_some() { return Err(error!(ErrorCode::RewardsAlreadyIssued)); } From e95870587ddf98fae131dc253e4358cce885b899 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 10:32:37 -0700 Subject: [PATCH 06/15] fix --- .../helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs index f87006f36..79a73d88c 100644 --- a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs +++ b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs @@ -1,5 +1,3 @@ -use core::slice::SlicePattern; - use anchor_lang::prelude::*; use anchor_spl::{ associated_token::AssociatedToken, From 532ad4546940cabae7fdc232235c9903f4fc65fb Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 10:54:57 -0700 Subject: [PATCH 07/15] Another deser attempt --- .../src/instructions/issue_voting_rewards_v0.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs index 79a73d88c..8605e2598 100644 --- a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs +++ b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs @@ -87,9 +87,9 @@ pub fn handler(ctx: Context, args: IssueVotingRewardsArgsV return Err(error!(ErrorCode::EpochNotOver)); } - let data: &mut [u8] = &mut ctx.accounts.vsr_epoch_info.try_borrow_mut_data()?; + let data = ctx.accounts.vsr_epoch_info.try_borrow_data()?; if !data.is_empty() { - let vsr_epoch_info: VsrEpochInfoV0 = anchor_lang::AnchorDeserialize::deserialize(&mut &*data)?; + let vsr_epoch_info = VsrEpochInfoV0::deserialize(&mut &data[8..])?; if vsr_epoch_info.rewards_issued_at.is_some() { return Err(error!(ErrorCode::RewardsAlreadyIssued)); } From 9a58a74051788be95834ce358c05d506c0923d1a Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 11:02:51 -0700 Subject: [PATCH 08/15] Trigger devnet deploy --- programs/helium-sub-daos/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/helium-sub-daos/Cargo.toml b/programs/helium-sub-daos/Cargo.toml index 529039156..7fec0cba5 100644 --- a/programs/helium-sub-daos/Cargo.toml +++ b/programs/helium-sub-daos/Cargo.toml @@ -36,3 +36,4 @@ default-env = { workspace = true } [dev-dependencies] rust_decimal = "=1.26.0" + From 8efbea251a1c9af43359ac346c71f4cf50beec9e Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 12:14:42 -0700 Subject: [PATCH 09/15] Fix bug in hook --- .../src/hooks/useClaimAllPositionsRewards.ts | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/voter-stake-registry-hooks/src/hooks/useClaimAllPositionsRewards.ts b/packages/voter-stake-registry-hooks/src/hooks/useClaimAllPositionsRewards.ts index 45bba8862..c1ee3f9ba 100644 --- a/packages/voter-stake-registry-hooks/src/hooks/useClaimAllPositionsRewards.ts +++ b/packages/voter-stake-registry-hooks/src/hooks/useClaimAllPositionsRewards.ts @@ -248,19 +248,19 @@ export const useClaimAllPositionsRewards = () => { // Chunk size is 128 because we want each chunk to correspond to the 128 bits in bitmap for (const chunk of chunks(epochsToClaim, 128)) { - const vsrEpochInfo = vsrEpochInfoKey( - vetokenTracker, - epoch.mul(new BN(EPOCH_LENGTH)) - )[0]; - const rewardsPool = getAssociatedTokenAddressSync( - vetokenTrackerAcc.rewardsMint, - vsrEpochInfo, - true - ); bucketedEpochsByPosition[position.pubkey.toBase58()].push( await Promise.all( - chunk.map((epoch) => - pvrProgram.methods + chunk.map((epoch) => { + const vsrEpochInfo = vsrEpochInfoKey( + vetokenTracker, + epoch.mul(new BN(EPOCH_LENGTH)) + )[0]; + const rewardsPool = getAssociatedTokenAddressSync( + vetokenTrackerAcc.rewardsMint, + vsrEpochInfo, + true + ); + return pvrProgram.methods .claimRewardsV0({ epoch, }) @@ -288,8 +288,8 @@ export const useClaimAllPositionsRewards = () => { associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID, tokenProgram: TOKEN_PROGRAM_ID, }) - .instruction() - ) + .instruction(); + }) ) ); } From 22271a286722ac04627531691f3442d4195ab868 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 13:32:01 -0700 Subject: [PATCH 10/15] Bump pckg --- CHANGELOG.md | 8 + lerna.json | 2 +- .../account-fetch-cache-hooks/CHANGELOG.md | 8 + .../account-fetch-cache-hooks/package.json | 4 +- .../yarn.deploy.lock | 4 +- packages/account-fetch-cache/CHANGELOG.md | 8 + packages/account-fetch-cache/package.json | 2 +- .../CHANGELOG.md | 8 + .../package.json | 4 +- .../yarn.deploy.lock | 4 +- packages/active-device-oracle/CHANGELOG.md | 8 + packages/active-device-oracle/package.json | 2 +- packages/anchor-resolvers/CHANGELOG.md | 8 + packages/anchor-resolvers/package.json | 2 +- packages/circuit-breaker-sdk/CHANGELOG.md | 8 + packages/circuit-breaker-sdk/package.json | 6 +- packages/circuit-breaker-sdk/yarn.deploy.lock | 8 +- packages/crons/CHANGELOG.md | 8 + packages/crons/package.json | 32 +- packages/crons/yarn.deploy.lock | 142 ++++---- packages/currency-utils/CHANGELOG.md | 8 + packages/currency-utils/package.json | 2 +- packages/data-credits-sdk/CHANGELOG.md | 8 + packages/data-credits-sdk/package.json | 10 +- packages/data-credits-sdk/yarn.deploy.lock | 52 +-- packages/distributor-oracle/CHANGELOG.md | 8 + packages/distributor-oracle/package.json | 16 +- packages/distributor-oracle/yarn.deploy.lock | 84 ++--- packages/docsite/CHANGELOG.md | 8 + packages/docsite/package.json | 2 +- packages/entity-invalidator/CHANGELOG.md | 8 + packages/entity-invalidator/package.json | 8 +- packages/entity-invalidator/yarn.deploy.lock | 64 ++-- packages/fanout-metadata-service/CHANGELOG.md | 8 + packages/fanout-metadata-service/package.json | 8 +- .../fanout-metadata-service/yarn.deploy.lock | 24 +- packages/fanout-sdk/CHANGELOG.md | 8 + packages/fanout-sdk/package.json | 6 +- packages/fanout-sdk/yarn.deploy.lock | 8 +- packages/faucet-service/CHANGELOG.md | 8 + packages/faucet-service/package.json | 6 +- packages/faucet-service/yarn.deploy.lock | 16 +- packages/helium-admin-cli/CHANGELOG.md | 8 + packages/helium-admin-cli/package.json | 26 +- packages/helium-admin-cli/yarn.deploy.lock | 146 ++++----- .../helium-entity-manager-sdk/CHANGELOG.md | 8 + .../helium-entity-manager-sdk/package.json | 12 +- .../yarn.deploy.lock | 56 ++-- packages/helium-react-hooks/CHANGELOG.md | 8 + packages/helium-react-hooks/package.json | 6 +- packages/helium-react-hooks/yarn.deploy.lock | 10 +- packages/helium-sub-daos-sdk/CHANGELOG.md | 8 + packages/helium-sub-daos-sdk/package.json | 10 +- packages/helium-sub-daos-sdk/yarn.deploy.lock | 42 +-- packages/helium-vote-service/CHANGELOG.md | 8 + packages/helium-vote-service/package.json | 6 +- packages/helium-vote-service/yarn.deploy.lock | 24 +- packages/hexboosting-sdk/CHANGELOG.md | 8 + packages/hexboosting-sdk/package.json | 8 +- packages/hexboosting-sdk/yarn.deploy.lock | 50 +-- packages/hotspot-utils/CHANGELOG.md | 8 + packages/hotspot-utils/package.json | 10 +- packages/hotspot-utils/yarn.deploy.lock | 66 ++-- packages/idls/CHANGELOG.md | 8 + packages/idls/package.json | 2 +- packages/lazy-distributor-sdk/CHANGELOG.md | 8 + packages/lazy-distributor-sdk/package.json | 6 +- .../lazy-distributor-sdk/yarn.deploy.lock | 14 +- packages/lazy-transactions-sdk/CHANGELOG.md | 8 + packages/lazy-transactions-sdk/package.json | 6 +- .../lazy-transactions-sdk/yarn.deploy.lock | 16 +- packages/metadata-service/CHANGELOG.md | 8 + packages/metadata-service/package.json | 14 +- packages/metadata-service/yarn.deploy.lock | 80 ++--- packages/migration-service/CHANGELOG.md | 8 + packages/migration-service/package.json | 22 +- packages/migration-service/yarn.deploy.lock | 122 +++---- .../mobile-entity-manager-sdk/CHANGELOG.md | 8 + .../mobile-entity-manager-sdk/package.json | 8 +- .../yarn.deploy.lock | 64 ++-- packages/monitor-service/CHANGELOG.md | 8 + packages/monitor-service/package.json | 22 +- packages/monitor-service/yarn.deploy.lock | 104 +++--- packages/no-emit-sdk/CHANGELOG.md | 8 + packages/no-emit-sdk/package.json | 2 +- .../position-voting-rewards-sdk/CHANGELOG.md | 8 + .../position-voting-rewards-sdk/package.json | 8 +- .../yarn.deploy.lock | 18 +- packages/price-oracle-sdk/CHANGELOG.md | 8 + packages/price-oracle-sdk/package.json | 4 +- packages/price-oracle-sdk/yarn.deploy.lock | 4 +- .../CHANGELOG.md | 8 + .../package.json | 2 +- packages/rewards-oracle-sdk/CHANGELOG.md | 8 + packages/rewards-oracle-sdk/package.json | 6 +- packages/rewards-oracle-sdk/yarn.deploy.lock | 8 +- packages/spl-utils/CHANGELOG.md | 8 + packages/spl-utils/package.json | 6 +- packages/spl-utils/yarn.deploy.lock | 8 +- packages/sus/CHANGELOG.md | 8 + packages/sus/package.json | 2 +- packages/tokens-to-rent-service/CHANGELOG.md | 8 + packages/tokens-to-rent-service/package.json | 6 +- .../tokens-to-rent-service/yarn.deploy.lock | 14 +- packages/treasury-management-sdk/CHANGELOG.md | 8 + packages/treasury-management-sdk/package.json | 8 +- .../treasury-management-sdk/yarn.deploy.lock | 16 +- .../voter-stake-registry-hooks/CHANGELOG.md | 8 + .../voter-stake-registry-hooks/package.json | 18 +- .../yarn.deploy.lock | 78 ++--- .../voter-stake-registry-sdk/CHANGELOG.md | 8 + .../voter-stake-registry-sdk/package.json | 8 +- .../voter-stake-registry-sdk/yarn.deploy.lock | 18 +- packages/vsr-metadata-service/CHANGELOG.md | 8 + packages/vsr-metadata-service/package.json | 8 +- .../vsr-metadata-service/yarn.deploy.lock | 26 +- yarn.lock | 306 +++++++++--------- 117 files changed, 1358 insertions(+), 1022 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27ae028b2..f6361ce28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package helium-program-library + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package helium-program-library diff --git a/lerna.json b/lerna.json index adbec8b79..0d84ffeb8 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ "packages/*" ], "useWorkspaces": true, - "version": "0.9.8" + "version": "0.9.9" } diff --git a/packages/account-fetch-cache-hooks/CHANGELOG.md b/packages/account-fetch-cache-hooks/CHANGELOG.md index e5d96cc9c..844ae5369 100644 --- a/packages/account-fetch-cache-hooks/CHANGELOG.md +++ b/packages/account-fetch-cache-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/account-fetch-cache-hooks + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/account-fetch-cache-hooks diff --git a/packages/account-fetch-cache-hooks/package.json b/packages/account-fetch-cache-hooks/package.json index f6723438e..08c40d8c7 100644 --- a/packages/account-fetch-cache-hooks/package.json +++ b/packages/account-fetch-cache-hooks/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "React hooks and context for account-fetch-cache", "repository": { "type": "git", @@ -31,7 +31,7 @@ "prebuild": "npm run clean && npm run package" }, "dependencies": { - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@solana/web3.js": "^1.78.8", "react-async-hook": "^4.0.0" }, diff --git a/packages/account-fetch-cache-hooks/yarn.deploy.lock b/packages/account-fetch-cache-hooks/yarn.deploy.lock index 9c66ada56..e68f4b3f9 100644 --- a/packages/account-fetch-cache-hooks/yarn.deploy.lock +++ b/packages/account-fetch-cache-hooks/yarn.deploy.lock @@ -27,7 +27,7 @@ __metadata: version: 0.0.0-use.local resolution: "@helium/account-fetch-cache-hooks@workspace:." dependencies: - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@solana/web3.js": ^1.78.8 git-format-staged: ^2.1.3 react-async-hook: ^4.0.0 @@ -39,7 +39,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: diff --git a/packages/account-fetch-cache/CHANGELOG.md b/packages/account-fetch-cache/CHANGELOG.md index 89de58277..111a0f7d0 100644 --- a/packages/account-fetch-cache/CHANGELOG.md +++ b/packages/account-fetch-cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/account-fetch-cache + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/account-fetch-cache diff --git a/packages/account-fetch-cache/package.json b/packages/account-fetch-cache/package.json index 1bc6a4a9c..2dcb13d71 100644 --- a/packages/account-fetch-cache/package.json +++ b/packages/account-fetch-cache/package.json @@ -1,6 +1,6 @@ { "name": "@helium/account-fetch-cache", - "version": "0.9.8", + "version": "0.9.9", "description": "Solana account fetch cache to eliminate reduntant fetching, and batch fetches", "publishConfig": { "access": "public", diff --git a/packages/account-postgres-sink-service/CHANGELOG.md b/packages/account-postgres-sink-service/CHANGELOG.md index 90be907e3..d8b9dc70a 100644 --- a/packages/account-postgres-sink-service/CHANGELOG.md +++ b/packages/account-postgres-sink-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/account-postgres-sink-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/account-postgres-sink-service diff --git a/packages/account-postgres-sink-service/package.json b/packages/account-postgres-sink-service/package.json index 79511aaa1..d803cf58a 100644 --- a/packages/account-postgres-sink-service/package.json +++ b/packages/account-postgres-sink-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Sync account data to postgres", "repository": { "type": "git", @@ -37,7 +37,7 @@ "@connectrpc/connect-node": "^1.3.0", "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/web3.js": "^1.78.8", "@substreams/core": "^0.15.1", diff --git a/packages/account-postgres-sink-service/yarn.deploy.lock b/packages/account-postgres-sink-service/yarn.deploy.lock index 114af6450..87138cb8f 100644 --- a/packages/account-postgres-sink-service/yarn.deploy.lock +++ b/packages/account-postgres-sink-service/yarn.deploy.lock @@ -179,7 +179,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -199,7 +199,7 @@ __metadata: "@connectrpc/connect-node": ^1.3.0 "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/web3.js": ^1.78.8 "@substreams/core": ^0.15.1 diff --git a/packages/active-device-oracle/CHANGELOG.md b/packages/active-device-oracle/CHANGELOG.md index 2f303fe84..7090e4774 100644 --- a/packages/active-device-oracle/CHANGELOG.md +++ b/packages/active-device-oracle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/active-device-oracle + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/active-device-oracle diff --git a/packages/active-device-oracle/package.json b/packages/active-device-oracle/package.json index 90701c011..f38561d50 100644 --- a/packages/active-device-oracle/package.json +++ b/packages/active-device-oracle/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Oracle of helium active devices", "repository": { "type": "git", diff --git a/packages/anchor-resolvers/CHANGELOG.md b/packages/anchor-resolvers/CHANGELOG.md index e5cc018ca..74388e006 100644 --- a/packages/anchor-resolvers/CHANGELOG.md +++ b/packages/anchor-resolvers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/anchor-resolvers + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/anchor-resolvers diff --git a/packages/anchor-resolvers/package.json b/packages/anchor-resolvers/package.json index 2eb0a61a7..25fd77246 100644 --- a/packages/anchor-resolvers/package.json +++ b/packages/anchor-resolvers/package.json @@ -1,6 +1,6 @@ { "name": "@helium/anchor-resolvers", - "version": "0.9.8", + "version": "0.9.9", "description": "Wrappers around anchor custom resolvers to make composition easier", "publishConfig": { "access": "public", diff --git a/packages/circuit-breaker-sdk/CHANGELOG.md b/packages/circuit-breaker-sdk/CHANGELOG.md index fa02428e5..e4e10c8bf 100644 --- a/packages/circuit-breaker-sdk/CHANGELOG.md +++ b/packages/circuit-breaker-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/circuit-breaker-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/circuit-breaker-sdk diff --git a/packages/circuit-breaker-sdk/package.json b/packages/circuit-breaker-sdk/package.json index 294db80e9..73ee96552 100644 --- a/packages/circuit-breaker-sdk/package.json +++ b/packages/circuit-breaker-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the circuit breaker smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/circuit-breaker-sdk/yarn.deploy.lock b/packages/circuit-breaker-sdk/yarn.deploy.lock index 9dd0ff736..b03329991 100644 --- a/packages/circuit-breaker-sdk/yarn.deploy.lock +++ b/packages/circuit-breaker-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -86,8 +86,8 @@ __metadata: resolution: "@helium/circuit-breaker-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: diff --git a/packages/crons/CHANGELOG.md b/packages/crons/CHANGELOG.md index abe264146..8acb8b67c 100644 --- a/packages/crons/CHANGELOG.md +++ b/packages/crons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/crons + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/crons diff --git a/packages/crons/package.json b/packages/crons/package.json index 51e518f09..556530ff5 100644 --- a/packages/crons/package.json +++ b/packages/crons/package.json @@ -1,6 +1,6 @@ { "name": "@helium/crons", - "version": "0.9.8", + "version": "0.9.9", "description": "scripts to run on a schedule", "private": true, "publishConfig": { @@ -32,25 +32,25 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", - "@helium/distributor-oracle": "^0.9.8", - "@helium/fanout-sdk": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/lazy-distributor-sdk": "^0.9.8", - "@helium/mobile-entity-manager-sdk": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", + "@helium/distributor-oracle": "^0.9.9", + "@helium/fanout-sdk": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/lazy-distributor-sdk": "^0.9.9", + "@helium/mobile-entity-manager-sdk": "^0.9.9", "@helium/nft-proxy-sdk": "^0.0.12", - "@helium/no-emit-sdk": "^0.9.8", + "@helium/no-emit-sdk": "^0.9.9", "@helium/organization-sdk": "^0.0.12", - "@helium/position-voting-rewards-sdk": "^0.9.8", - "@helium/price-oracle-sdk": "^0.9.8", + "@helium/position-voting-rewards-sdk": "^0.9.9", + "@helium/price-oracle-sdk": "^0.9.9", "@helium/proposal-sdk": "^0.0.12", - "@helium/rewards-oracle-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/rewards-oracle-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@helium/state-controller-sdk": "^0.0.12", - "@helium/treasury-management-sdk": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/treasury-management-sdk": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", "axios": "^1.3.6", diff --git a/packages/crons/yarn.deploy.lock b/packages/crons/yarn.deploy.lock index a2e4c3238..9b14cce31 100644 --- a/packages/crons/yarn.deploy.lock +++ b/packages/crons/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -171,13 +171,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -192,25 +192,25 @@ __metadata: resolution: "@helium/crons@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/fanout-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/mobile-entity-manager-sdk": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/fanout-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/mobile-entity-manager-sdk": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/no-emit-sdk": ^0.9.8 + "@helium/no-emit-sdk": ^0.9.9 "@helium/organization-sdk": ^0.0.12 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 "@helium/proposal-sdk": ^0.0.12 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@helium/state-controller-sdk": ^0.0.12 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.0 @@ -228,20 +228,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.8": +"@helium/distributor-oracle@^0.9.9": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -269,13 +269,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.8": +"@helium/fanout-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -285,17 +285,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -308,15 +308,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -326,7 +326,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -353,13 +353,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8": +"@helium/lazy-distributor-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -369,14 +369,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/mobile-entity-manager-sdk@^0.9.8": +"@helium/mobile-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -419,7 +419,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -447,14 +447,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.8": +"@helium/position-voting-rewards-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -465,12 +465,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.8": +"@helium/price-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -491,13 +491,13 @@ __metadata: languageName: node linkType: hard -"@helium/rewards-oracle-sdk@^0.9.8": +"@helium/rewards-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -507,14 +507,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -540,14 +540,14 @@ __metadata: languageName: node linkType: hard -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -557,15 +557,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/currency-utils/CHANGELOG.md b/packages/currency-utils/CHANGELOG.md index ef2dd2ecd..deefd4fbb 100644 --- a/packages/currency-utils/CHANGELOG.md +++ b/packages/currency-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/currency-utils + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/currency-utils diff --git a/packages/currency-utils/package.json b/packages/currency-utils/package.json index c1b8db305..f27ecd83c 100644 --- a/packages/currency-utils/package.json +++ b/packages/currency-utils/package.json @@ -1,6 +1,6 @@ { "name": "@helium/currency-utils", - "version": "0.9.8", + "version": "0.9.9", "description": "Currency utilities", "homepage": "https://github.com/helium/helium-program-library#readme", "publishConfig": { diff --git a/packages/data-credits-sdk/CHANGELOG.md b/packages/data-credits-sdk/CHANGELOG.md index 386e8fa5c..f53858cb3 100644 --- a/packages/data-credits-sdk/CHANGELOG.md +++ b/packages/data-credits-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/data-credits-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/data-credits-sdk diff --git a/packages/data-credits-sdk/package.json b/packages/data-credits-sdk/package.json index 873dd4884..0218e3918 100644 --- a/packages/data-credits-sdk/package.json +++ b/packages/data-credits-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the data-credits smart contract", "repository": { "type": "git", @@ -32,10 +32,10 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1", "crypto-js": "^4.1.1" diff --git a/packages/data-credits-sdk/yarn.deploy.lock b/packages/data-credits-sdk/yarn.deploy.lock index 36308d17d..c628b2954 100644 --- a/packages/data-credits-sdk/yarn.deploy.lock +++ b/packages/data-credits-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -115,13 +115,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -136,10 +136,10 @@ __metadata: resolution: "@helium/data-credits-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -151,15 +151,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -169,7 +169,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -205,14 +205,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -227,14 +227,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -244,15 +244,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/distributor-oracle/CHANGELOG.md b/packages/distributor-oracle/CHANGELOG.md index 4c6edd0c0..4cee0100f 100644 --- a/packages/distributor-oracle/CHANGELOG.md +++ b/packages/distributor-oracle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/distributor-oracle + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/distributor-oracle diff --git a/packages/distributor-oracle/package.json b/packages/distributor-oracle/package.json index a25b94373..fa5369b97 100644 --- a/packages/distributor-oracle/package.json +++ b/packages/distributor-oracle/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Oracle server for the lazy distributor", "repository": { "type": "git", @@ -36,14 +36,14 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/lazy-distributor-sdk": "^0.9.8", - "@helium/rewards-oracle-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/lazy-distributor-sdk": "^0.9.9", + "@helium/rewards-oracle-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-bubblegum": "^0.7.0", "@solana/spl-token": "^0.3.8", "@types/sequelize": "^4.28.14", diff --git a/packages/distributor-oracle/yarn.deploy.lock b/packages/distributor-oracle/yarn.deploy.lock index ffe2afcbd..56d5c7974 100644 --- a/packages/distributor-oracle/yarn.deploy.lock +++ b/packages/distributor-oracle/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -171,13 +171,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -193,14 +193,14 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -228,17 +228,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -251,15 +251,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -269,7 +269,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -296,13 +296,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8": +"@helium/lazy-distributor-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -334,7 +334,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -350,13 +350,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/rewards-oracle-sdk@^0.9.8": +"@helium/rewards-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -366,14 +366,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -388,14 +388,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -405,15 +405,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/docsite/CHANGELOG.md b/packages/docsite/CHANGELOG.md index 6c743e450..3924ee1dd 100644 --- a/packages/docsite/CHANGELOG.md +++ b/packages/docsite/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package hpl-docs + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package hpl-docs diff --git a/packages/docsite/package.json b/packages/docsite/package.json index 015744701..c72d03db6 100644 --- a/packages/docsite/package.json +++ b/packages/docsite/package.json @@ -1,6 +1,6 @@ { "name": "hpl-docs", - "version": "0.9.8", + "version": "0.9.9", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/entity-invalidator/CHANGELOG.md b/packages/entity-invalidator/CHANGELOG.md index 2bb3c3a33..9ddc4580e 100644 --- a/packages/entity-invalidator/CHANGELOG.md +++ b/packages/entity-invalidator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/entity-invalidator + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/entity-invalidator diff --git a/packages/entity-invalidator/package.json b/packages/entity-invalidator/package.json index 1c28ba899..cad73d7e3 100644 --- a/packages/entity-invalidator/package.json +++ b/packages/entity-invalidator/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Sync account data to postgres", "repository": { "type": "git", @@ -33,9 +33,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@solana/web3.js": "^1.78.8", "aws-sdk": "^2.1344.0", "bn.js": "^5.2.0", diff --git a/packages/entity-invalidator/yarn.deploy.lock b/packages/entity-invalidator/yarn.deploy.lock index 37da3211e..b88fca0ae 100644 --- a/packages/entity-invalidator/yarn.deploy.lock +++ b/packages/entity-invalidator/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -148,9 +148,9 @@ __metadata: resolution: "@helium/entity-invalidator@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.1 "@types/deep-equal": ^1.0.1 @@ -174,17 +174,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -197,15 +197,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -215,7 +215,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -264,7 +264,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -280,14 +280,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -302,14 +302,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -319,15 +319,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/fanout-metadata-service/CHANGELOG.md b/packages/fanout-metadata-service/CHANGELOG.md index 0ec25437b..b45684355 100644 --- a/packages/fanout-metadata-service/CHANGELOG.md +++ b/packages/fanout-metadata-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/fanout-metadata-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/fanout-metadata-service diff --git a/packages/fanout-metadata-service/package.json b/packages/fanout-metadata-service/package.json index 30b77f7a4..463cd2c4f 100644 --- a/packages/fanout-metadata-service/package.json +++ b/packages/fanout-metadata-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Mint metadata of fanout positions", "repository": { "type": "git", @@ -34,10 +34,10 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/fanout-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/fanout-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-token": "^0.3.8", diff --git a/packages/fanout-metadata-service/yarn.deploy.lock b/packages/fanout-metadata-service/yarn.deploy.lock index 779219ffd..d75b8b98b 100644 --- a/packages/fanout-metadata-service/yarn.deploy.lock +++ b/packages/fanout-metadata-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -153,10 +153,10 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/fanout-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/fanout-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -174,13 +174,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.8": +"@helium/fanout-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -190,7 +190,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -204,14 +204,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/fanout-sdk/CHANGELOG.md b/packages/fanout-sdk/CHANGELOG.md index a62aa2888..0436f9efd 100644 --- a/packages/fanout-sdk/CHANGELOG.md +++ b/packages/fanout-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/fanout-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/fanout-sdk diff --git a/packages/fanout-sdk/package.json b/packages/fanout-sdk/package.json index 0aa8bcd55..849544b44 100644 --- a/packages/fanout-sdk/package.json +++ b/packages/fanout-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the fanout smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/fanout-sdk/yarn.deploy.lock b/packages/fanout-sdk/yarn.deploy.lock index 78b972cf9..06fa31c72 100644 --- a/packages/fanout-sdk/yarn.deploy.lock +++ b/packages/fanout-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -86,8 +86,8 @@ __metadata: resolution: "@helium/fanout-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: diff --git a/packages/faucet-service/CHANGELOG.md b/packages/faucet-service/CHANGELOG.md index c79f6f2a1..ee2188ba1 100644 --- a/packages/faucet-service/CHANGELOG.md +++ b/packages/faucet-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/faucet-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/faucet-service diff --git a/packages/faucet-service/package.json b/packages/faucet-service/package.json index db72d6f8a..2e7377e04 100644 --- a/packages/faucet-service/package.json +++ b/packages/faucet-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Faucet for devnet Helium tokens", "repository": { "type": "git", @@ -35,8 +35,8 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/idls": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/idls": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", diff --git a/packages/faucet-service/yarn.deploy.lock b/packages/faucet-service/yarn.deploy.lock index d08e8d4be..73b25408f 100644 --- a/packages/faucet-service/yarn.deploy.lock +++ b/packages/faucet-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -153,8 +153,8 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -174,7 +174,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -188,14 +188,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/helium-admin-cli/CHANGELOG.md b/packages/helium-admin-cli/CHANGELOG.md index fd7aef904..795292d51 100644 --- a/packages/helium-admin-cli/CHANGELOG.md +++ b/packages/helium-admin-cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-admin-cli + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/helium-admin-cli diff --git a/packages/helium-admin-cli/package.json b/packages/helium-admin-cli/package.json index fd142932f..c0e57301d 100644 --- a/packages/helium-admin-cli/package.json +++ b/packages/helium-admin-cli/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "CLI to bootstrap the network", "repository": { "type": "git", @@ -40,21 +40,21 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@helium/address": "^4.10.2", - "@helium/circuit-breaker-sdk": "^0.9.8", + "@helium/circuit-breaker-sdk": "^0.9.9", "@helium/crypto": "^4.10.2", - "@helium/data-credits-sdk": "^0.9.8", - "@helium/distributor-oracle": "^0.9.8", - "@helium/fanout-sdk": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/lazy-distributor-sdk": "^0.9.8", - "@helium/mobile-entity-manager-sdk": "^0.9.8", + "@helium/data-credits-sdk": "^0.9.9", + "@helium/distributor-oracle": "^0.9.9", + "@helium/fanout-sdk": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/lazy-distributor-sdk": "^0.9.9", + "@helium/mobile-entity-manager-sdk": "^0.9.9", "@helium/nft-proxy-sdk": "^0.0.12", "@helium/organization-sdk": "^0.0.13", - "@helium/position-voting-rewards-sdk": "^0.9.8", - "@helium/price-oracle-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", - "@helium/treasury-management-sdk": "^0.9.8", + "@helium/position-voting-rewards-sdk": "^0.9.9", + "@helium/price-oracle-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", + "@helium/treasury-management-sdk": "^0.9.9", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-governance": "^0.3.18", "@solana/spl-token": "^0.3.8", diff --git a/packages/helium-admin-cli/yarn.deploy.lock b/packages/helium-admin-cli/yarn.deploy.lock index 3ec7fa7ca..819c39892 100644 --- a/packages/helium-admin-cli/yarn.deploy.lock +++ b/packages/helium-admin-cli/yarn.deploy.lock @@ -146,7 +146,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -168,7 +168,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -206,13 +206,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -233,15 +233,15 @@ __metadata: languageName: node linkType: hard -"@helium/data-credits-sdk@^0.9.8": +"@helium/data-credits-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -253,20 +253,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.8": +"@helium/distributor-oracle@^0.9.9": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -294,13 +294,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.8": +"@helium/fanout-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -316,21 +316,21 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/circuit-breaker-sdk": ^0.9.9 "@helium/crypto": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/fanout-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/mobile-entity-manager-sdk": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/fanout-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/mobile-entity-manager-sdk": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 "@helium/organization-sdk": ^0.0.13 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-governance": ^0.3.18 "@solana/spl-token": ^0.3.8 @@ -350,17 +350,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -373,15 +373,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -391,7 +391,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -418,13 +418,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8": +"@helium/lazy-distributor-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -434,14 +434,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/mobile-entity-manager-sdk@^0.9.8": +"@helium/mobile-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -484,7 +484,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -512,14 +512,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.8": +"@helium/position-voting-rewards-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -530,12 +530,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.8": +"@helium/price-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -556,13 +556,13 @@ __metadata: languageName: node linkType: hard -"@helium/rewards-oracle-sdk@^0.9.8": +"@helium/rewards-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -572,14 +572,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -594,14 +594,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -611,15 +611,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/helium-entity-manager-sdk/CHANGELOG.md b/packages/helium-entity-manager-sdk/CHANGELOG.md index 4ac99cb1e..abe22eba7 100644 --- a/packages/helium-entity-manager-sdk/CHANGELOG.md +++ b/packages/helium-entity-manager-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-entity-manager-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/helium-entity-manager-sdk diff --git a/packages/helium-entity-manager-sdk/package.json b/packages/helium-entity-manager-sdk/package.json index 34d45002e..1074e97c2 100644 --- a/packages/helium-entity-manager-sdk/package.json +++ b/packages/helium-entity-manager-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the helium-entity-manager smart contract", "repository": { "type": "git", @@ -33,11 +33,11 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@helium/address": "^4.10.2", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/no-emit-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/no-emit-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1", "crypto-js": "^4.1.1", diff --git a/packages/helium-entity-manager-sdk/yarn.deploy.lock b/packages/helium-entity-manager-sdk/yarn.deploy.lock index 91f01af8c..867ba9737 100644 --- a/packages/helium-entity-manager-sdk/yarn.deploy.lock +++ b/packages/helium-entity-manager-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -149,11 +149,11 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -166,15 +166,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -184,7 +184,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -233,7 +233,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -249,14 +249,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -271,14 +271,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -288,15 +288,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/helium-react-hooks/CHANGELOG.md b/packages/helium-react-hooks/CHANGELOG.md index 35a3139fe..3e31f5e47 100644 --- a/packages/helium-react-hooks/CHANGELOG.md +++ b/packages/helium-react-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-react-hooks + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/helium-react-hooks diff --git a/packages/helium-react-hooks/package.json b/packages/helium-react-hooks/package.json index 3eb6ae6d1..8bae4daf6 100644 --- a/packages/helium-react-hooks/package.json +++ b/packages/helium-react-hooks/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "React hooks for helium", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", - "@helium/account-fetch-cache-hooks": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache-hooks": "^0.9.9", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", "bs58": "^4.0.1", diff --git a/packages/helium-react-hooks/yarn.deploy.lock b/packages/helium-react-hooks/yarn.deploy.lock index 7f7a83600..d14993332 100644 --- a/packages/helium-react-hooks/yarn.deploy.lock +++ b/packages/helium-react-hooks/yarn.deploy.lock @@ -58,11 +58,11 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache-hooks@^0.9.8": +"@helium/account-fetch-cache-hooks@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks" dependencies: - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@solana/web3.js": ^1.78.8 git-format-staged: ^2.1.3 react-async-hook: ^4.0.0 @@ -74,7 +74,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -90,8 +90,8 @@ __metadata: resolution: "@helium/helium-react-hooks@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/account-fetch-cache-hooks": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache-hooks": ^0.9.9 "@solana/spl-token": ^0.3.8 "@solana/wallet-adapter-react": ^0.15.32 "@solana/web3.js": ^1.78.8 diff --git a/packages/helium-sub-daos-sdk/CHANGELOG.md b/packages/helium-sub-daos-sdk/CHANGELOG.md index 045a9f287..79558811e 100644 --- a/packages/helium-sub-daos-sdk/CHANGELOG.md +++ b/packages/helium-sub-daos-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-sub-daos-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/helium-sub-daos-sdk diff --git a/packages/helium-sub-daos-sdk/package.json b/packages/helium-sub-daos-sdk/package.json index 4e1cf5fab..87b8f7b57 100644 --- a/packages/helium-sub-daos-sdk/package.json +++ b/packages/helium-sub-daos-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the helium-sub-daos smart contract", "repository": { "type": "git", @@ -32,10 +32,10 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", - "@helium/treasury-management-sdk": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/treasury-management-sdk": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/helium-sub-daos-sdk/yarn.deploy.lock b/packages/helium-sub-daos-sdk/yarn.deploy.lock index da363524c..8db28db86 100644 --- a/packages/helium-sub-daos-sdk/yarn.deploy.lock +++ b/packages/helium-sub-daos-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -115,13 +115,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -136,10 +136,10 @@ __metadata: resolution: "@helium/helium-sub-daos-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -149,7 +149,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -185,14 +185,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -207,14 +207,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -224,15 +224,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/helium-vote-service/CHANGELOG.md b/packages/helium-vote-service/CHANGELOG.md index d8169cb90..7f9a73d51 100644 --- a/packages/helium-vote-service/CHANGELOG.md +++ b/packages/helium-vote-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-vote-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/helium-vote-service diff --git a/packages/helium-vote-service/package.json b/packages/helium-vote-service/package.json index eea0791c9..004f59eca 100644 --- a/packages/helium-vote-service/package.json +++ b/packages/helium-vote-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "API for helium vote", "repository": { "type": "git", @@ -35,8 +35,8 @@ "@fastify/cors": "^8.1.1", "@fastify/static": "^6", "@helium/organization-sdk": "^0.0.12", - "@helium/spl-utils": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/spl-utils": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "@solana/web3.js": "^1.78.8", "aws-sdk": "^2.1650.0", "dotenv": "^16.0.3", diff --git a/packages/helium-vote-service/yarn.deploy.lock b/packages/helium-vote-service/yarn.deploy.lock index 9b478eee4..76fe10479 100644 --- a/packages/helium-vote-service/yarn.deploy.lock +++ b/packages/helium-vote-service/yarn.deploy.lock @@ -145,7 +145,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -167,7 +167,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -212,8 +212,8 @@ __metadata: "@fastify/cors": ^8.1.1 "@fastify/static": ^6 "@helium/organization-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.1 "@types/lodash": ^4.17.6 @@ -232,7 +232,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -301,14 +301,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -323,15 +323,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/hexboosting-sdk/CHANGELOG.md b/packages/hexboosting-sdk/CHANGELOG.md index 611bc52d2..aea4b82be 100644 --- a/packages/hexboosting-sdk/CHANGELOG.md +++ b/packages/hexboosting-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/hexboosting-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/hexboosting-sdk diff --git a/packages/hexboosting-sdk/package.json b/packages/hexboosting-sdk/package.json index b2a8112d2..cd21584ce 100644 --- a/packages/hexboosting-sdk/package.json +++ b/packages/hexboosting-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the data-credits smart contract", "repository": { "type": "git", @@ -32,9 +32,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/hexboosting-sdk/yarn.deploy.lock b/packages/hexboosting-sdk/yarn.deploy.lock index 348798610..99e0b60a0 100644 --- a/packages/hexboosting-sdk/yarn.deploy.lock +++ b/packages/hexboosting-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -115,13 +115,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -131,15 +131,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -154,9 +154,9 @@ __metadata: resolution: "@helium/hexboosting-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -166,7 +166,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -202,14 +202,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -224,14 +224,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -241,15 +241,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/hotspot-utils/CHANGELOG.md b/packages/hotspot-utils/CHANGELOG.md index a9d2ff1e1..e0ec80197 100644 --- a/packages/hotspot-utils/CHANGELOG.md +++ b/packages/hotspot-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/hotspot-utils + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/hotspot-utils diff --git a/packages/hotspot-utils/package.json b/packages/hotspot-utils/package.json index f5f2a3ac2..e78717721 100644 --- a/packages/hotspot-utils/package.json +++ b/packages/hotspot-utils/package.json @@ -1,6 +1,6 @@ { "name": "@helium/hotspot-utils", - "version": "0.9.8", + "version": "0.9.9", "description": "Utils for Hotspot interaction", "homepage": "https://github.com/helium/helium-program-library#readme", "publishConfig": { @@ -29,10 +29,10 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@solana/web3.js": "^1.78.8", "bs58": "^4.0.1" }, diff --git a/packages/hotspot-utils/yarn.deploy.lock b/packages/hotspot-utils/yarn.deploy.lock index 8bb8cd1ef..a499db13d 100644 --- a/packages/hotspot-utils/yarn.deploy.lock +++ b/packages/hotspot-utils/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -143,17 +143,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -166,15 +166,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -189,16 +189,16 @@ __metadata: resolution: "@helium/hotspot-utils@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/web3.js": ^1.78.8 bs58: ^4.0.1 languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -247,7 +247,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -263,14 +263,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -285,14 +285,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -302,15 +302,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/idls/CHANGELOG.md b/packages/idls/CHANGELOG.md index 1abfea15c..fa1806ddc 100644 --- a/packages/idls/CHANGELOG.md +++ b/packages/idls/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/idls + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/idls diff --git a/packages/idls/package.json b/packages/idls/package.json index 589ef2d1d..e52221209 100644 --- a/packages/idls/package.json +++ b/packages/idls/package.json @@ -1,6 +1,6 @@ { "name": "@helium/idls", - "version": "0.9.8", + "version": "0.9.9", "description": "Exported idls", "publishConfig": { "access": "public", diff --git a/packages/lazy-distributor-sdk/CHANGELOG.md b/packages/lazy-distributor-sdk/CHANGELOG.md index 2d5e3cf98..732f72c95 100644 --- a/packages/lazy-distributor-sdk/CHANGELOG.md +++ b/packages/lazy-distributor-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/lazy-distributor-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/lazy-distributor-sdk diff --git a/packages/lazy-distributor-sdk/package.json b/packages/lazy-distributor-sdk/package.json index 91266e81c..6fe4c2617 100644 --- a/packages/lazy-distributor-sdk/package.json +++ b/packages/lazy-distributor-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the lazy-distributor smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/lazy-distributor-sdk/yarn.deploy.lock b/packages/lazy-distributor-sdk/yarn.deploy.lock index 0b53daeab..bc6a0ff1b 100644 --- a/packages/lazy-distributor-sdk/yarn.deploy.lock +++ b/packages/lazy-distributor-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -81,13 +81,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -116,8 +116,8 @@ __metadata: resolution: "@helium/lazy-distributor-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 diff --git a/packages/lazy-transactions-sdk/CHANGELOG.md b/packages/lazy-transactions-sdk/CHANGELOG.md index 366a79eaf..81334d7b0 100644 --- a/packages/lazy-transactions-sdk/CHANGELOG.md +++ b/packages/lazy-transactions-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/lazy-transactions-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/lazy-transactions-sdk diff --git a/packages/lazy-transactions-sdk/package.json b/packages/lazy-transactions-sdk/package.json index 2135ba698..6827e2bf5 100644 --- a/packages/lazy-transactions-sdk/package.json +++ b/packages/lazy-transactions-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the lazy-transactions smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/idls": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/idls": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1", "js-sha3": "^0.8.0", diff --git a/packages/lazy-transactions-sdk/yarn.deploy.lock b/packages/lazy-transactions-sdk/yarn.deploy.lock index 23d7fa200..777f66da1 100644 --- a/packages/lazy-transactions-sdk/yarn.deploy.lock +++ b/packages/lazy-transactions-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -103,7 +103,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -122,8 +122,8 @@ __metadata: resolution: "@helium/lazy-transactions-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -135,14 +135,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/metadata-service/CHANGELOG.md b/packages/metadata-service/CHANGELOG.md index e0ffca91f..94a9b87fa 100644 --- a/packages/metadata-service/CHANGELOG.md +++ b/packages/metadata-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/metadata-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/metadata-service diff --git a/packages/metadata-service/package.json b/packages/metadata-service/package.json index d0954e0c7..258520c8e 100644 --- a/packages/metadata-service/package.json +++ b/packages/metadata-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Mint metadata of hotspots", "repository": { "type": "git", @@ -35,13 +35,13 @@ "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", "@grpc/grpc-js": "^1.10.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/data-credits-sdk": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/data-credits-sdk": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", diff --git a/packages/metadata-service/yarn.deploy.lock b/packages/metadata-service/yarn.deploy.lock index 88282e9c9..8e643e7af 100644 --- a/packages/metadata-service/yarn.deploy.lock +++ b/packages/metadata-service/yarn.deploy.lock @@ -135,7 +135,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -157,7 +157,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -195,13 +195,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -211,15 +211,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/data-credits-sdk@^0.9.8": +"@helium/data-credits-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -231,17 +231,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -254,15 +254,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -272,7 +272,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -306,13 +306,13 @@ __metadata: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 "@grpc/grpc-js": ^1.10.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -361,7 +361,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -377,14 +377,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -399,14 +399,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -416,15 +416,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/migration-service/CHANGELOG.md b/packages/migration-service/CHANGELOG.md index f1eba6165..905b4fb51 100644 --- a/packages/migration-service/CHANGELOG.md +++ b/packages/migration-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/migration-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/migration-service diff --git a/packages/migration-service/package.json b/packages/migration-service/package.json index d8293c919..44024480e 100644 --- a/packages/migration-service/package.json +++ b/packages/migration-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Migration of state from helium", "repository": { "type": "git", @@ -35,18 +35,18 @@ "@clockwork-xyz/sdk": "^0.3.0", "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/circuit-breaker-sdk": "^0.9.8", + "@helium/circuit-breaker-sdk": "^0.9.9", "@helium/crypto": "^4.10.2", - "@helium/data-credits-sdk": "^0.9.8", - "@helium/distributor-oracle": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/lazy-distributor-sdk": "^0.9.8", - "@helium/lazy-transactions-sdk": "^0.9.8", - "@helium/treasury-management-sdk": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/data-credits-sdk": "^0.9.9", + "@helium/distributor-oracle": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/lazy-distributor-sdk": "^0.9.9", + "@helium/lazy-transactions-sdk": "^0.9.9", + "@helium/treasury-management-sdk": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@project-serum/borsh": "^0.2.5", "@solana/buffer-layout": "^4.0.0", diff --git a/packages/migration-service/yarn.deploy.lock b/packages/migration-service/yarn.deploy.lock index 2957d6677..0d409ab08 100644 --- a/packages/migration-service/yarn.deploy.lock +++ b/packages/migration-service/yarn.deploy.lock @@ -156,7 +156,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -178,7 +178,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -216,13 +216,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -243,15 +243,15 @@ __metadata: languageName: node linkType: hard -"@helium/data-credits-sdk@^0.9.8": +"@helium/data-credits-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -263,20 +263,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.8": +"@helium/distributor-oracle@^0.9.9": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -304,17 +304,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -327,15 +327,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -345,7 +345,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -372,13 +372,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8": +"@helium/lazy-distributor-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -388,13 +388,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/lazy-transactions-sdk@^0.9.8": +"@helium/lazy-transactions-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-transactions-sdk@workspace:packages/lazy-transactions-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -413,18 +413,18 @@ __metadata: "@clockwork-xyz/sdk": ^0.3.0 "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/circuit-breaker-sdk": ^0.9.9 "@helium/crypto": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/lazy-transactions-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/lazy-transactions-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@project-serum/borsh": ^0.2.5 "@solana/buffer-layout": ^4.0.0 @@ -476,7 +476,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -492,13 +492,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/rewards-oracle-sdk@^0.9.8": +"@helium/rewards-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -508,14 +508,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -530,14 +530,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -547,15 +547,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/mobile-entity-manager-sdk/CHANGELOG.md b/packages/mobile-entity-manager-sdk/CHANGELOG.md index f20d271b0..b47075f5c 100644 --- a/packages/mobile-entity-manager-sdk/CHANGELOG.md +++ b/packages/mobile-entity-manager-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/mobile-entity-manager-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/mobile-entity-manager-sdk diff --git a/packages/mobile-entity-manager-sdk/package.json b/packages/mobile-entity-manager-sdk/package.json index c6c689305..376f50972 100644 --- a/packages/mobile-entity-manager-sdk/package.json +++ b/packages/mobile-entity-manager-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the mobile-entity-manager smart contract", "repository": { "type": "git", @@ -32,9 +32,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/mobile-entity-manager-sdk/yarn.deploy.lock b/packages/mobile-entity-manager-sdk/yarn.deploy.lock index 6baf507bf..8acaf1e87 100644 --- a/packages/mobile-entity-manager-sdk/yarn.deploy.lock +++ b/packages/mobile-entity-manager-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -143,17 +143,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -166,15 +166,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -184,7 +184,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -216,9 +216,9 @@ __metadata: resolution: "@helium/mobile-entity-manager-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -251,7 +251,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -267,14 +267,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -289,14 +289,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -306,15 +306,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/monitor-service/CHANGELOG.md b/packages/monitor-service/CHANGELOG.md index ed3a711a3..ffdd8d56d 100644 --- a/packages/monitor-service/CHANGELOG.md +++ b/packages/monitor-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/monitor-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/monitor-service diff --git a/packages/monitor-service/package.json b/packages/monitor-service/package.json index 3aa770648..087d00d33 100644 --- a/packages/monitor-service/package.json +++ b/packages/monitor-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Prometheus monitoring of important accounts on Solana", "repository": { "type": "git", @@ -33,16 +33,16 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", - "@helium/data-credits-sdk": "^0.9.8", - "@helium/helium-entity-manager-sdk": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/lazy-distributor-sdk": "^0.9.8", - "@helium/lazy-transactions-sdk": "^0.9.8", - "@helium/price-oracle-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/data-credits-sdk": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/lazy-distributor-sdk": "^0.9.9", + "@helium/lazy-transactions-sdk": "^0.9.9", + "@helium/price-oracle-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-bubblegum": "^0.7.0", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-account-compression": "^0.1.7", diff --git a/packages/monitor-service/yarn.deploy.lock b/packages/monitor-service/yarn.deploy.lock index e37e1487e..623c28b7b 100644 --- a/packages/monitor-service/yarn.deploy.lock +++ b/packages/monitor-service/yarn.deploy.lock @@ -101,7 +101,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -123,7 +123,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -161,13 +161,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -177,15 +177,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/data-credits-sdk@^0.9.8": +"@helium/data-credits-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -197,17 +197,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8": +"@helium/helium-entity-manager-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -220,15 +220,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -238,7 +238,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -265,13 +265,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8": +"@helium/lazy-distributor-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -281,13 +281,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/lazy-transactions-sdk@^0.9.8": +"@helium/lazy-transactions-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/lazy-transactions-sdk@workspace:packages/lazy-transactions-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -314,16 +314,16 @@ __metadata: resolution: "@helium/monitor-service@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/lazy-transactions-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/lazy-transactions-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 @@ -362,7 +362,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8": +"@helium/no-emit-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -378,12 +378,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.8": +"@helium/price-oracle-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -393,14 +393,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -415,14 +415,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -432,15 +432,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/no-emit-sdk/CHANGELOG.md b/packages/no-emit-sdk/CHANGELOG.md index fde9b2e2b..b45bb34ea 100644 --- a/packages/no-emit-sdk/CHANGELOG.md +++ b/packages/no-emit-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/no-emit-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/no-emit-sdk diff --git a/packages/no-emit-sdk/package.json b/packages/no-emit-sdk/package.json index d69fff9dc..f52809fff 100644 --- a/packages/no-emit-sdk/package.json +++ b/packages/no-emit-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the rewards burn smart contract", "repository": { "type": "git", diff --git a/packages/position-voting-rewards-sdk/CHANGELOG.md b/packages/position-voting-rewards-sdk/CHANGELOG.md index a1526d9d2..caa9bbd78 100644 --- a/packages/position-voting-rewards-sdk/CHANGELOG.md +++ b/packages/position-voting-rewards-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/position-voting-rewards-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/position-voting-rewards-sdk diff --git a/packages/position-voting-rewards-sdk/package.json b/packages/position-voting-rewards-sdk/package.json index e8c0d089e..61df832ee 100644 --- a/packages/position-voting-rewards-sdk/package.json +++ b/packages/position-voting-rewards-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the position-voting-rewards smart contract", "repository": { "type": "git", @@ -32,9 +32,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/idls": "^0.9.8", - "@helium/spl-utils": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/idls": "^0.9.9", + "@helium/spl-utils": "^0.9.9", "@solana/spl-token": "^0.3.8", "bn.js": "^5.2.0", "bs58": "^4.0.1" diff --git a/packages/position-voting-rewards-sdk/yarn.deploy.lock b/packages/position-voting-rewards-sdk/yarn.deploy.lock index 1a47a6178..114fbf586 100644 --- a/packages/position-voting-rewards-sdk/yarn.deploy.lock +++ b/packages/position-voting-rewards-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -103,7 +103,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -122,9 +122,9 @@ __metadata: resolution: "@helium/position-voting-rewards-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -135,14 +135,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/price-oracle-sdk/CHANGELOG.md b/packages/price-oracle-sdk/CHANGELOG.md index bb68ab870..806fc7ee3 100644 --- a/packages/price-oracle-sdk/CHANGELOG.md +++ b/packages/price-oracle-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/price-oracle-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/price-oracle-sdk diff --git a/packages/price-oracle-sdk/package.json b/packages/price-oracle-sdk/package.json index 1364a5a31..1bebf419a 100644 --- a/packages/price-oracle-sdk/package.json +++ b/packages/price-oracle-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the price oracle smart contract", "repository": { "type": "git", @@ -32,7 +32,7 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/idls": "^0.9.8", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/price-oracle-sdk/yarn.deploy.lock b/packages/price-oracle-sdk/yarn.deploy.lock index b57c08eb8..a06503ce8 100644 --- a/packages/price-oracle-sdk/yarn.deploy.lock +++ b/packages/price-oracle-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -86,7 +86,7 @@ __metadata: resolution: "@helium/price-oracle-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 diff --git a/packages/rewards-oracle-faucet-service/CHANGELOG.md b/packages/rewards-oracle-faucet-service/CHANGELOG.md index 29cd7edb4..ee5b829e8 100644 --- a/packages/rewards-oracle-faucet-service/CHANGELOG.md +++ b/packages/rewards-oracle-faucet-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/rewards-oracle-faucet-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/rewards-oracle-faucet-service diff --git a/packages/rewards-oracle-faucet-service/package.json b/packages/rewards-oracle-faucet-service/package.json index d92564e8f..e0b1e4975 100644 --- a/packages/rewards-oracle-faucet-service/package.json +++ b/packages/rewards-oracle-faucet-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Receives requests from Helius webhooks", "repository": { "type": "git", diff --git a/packages/rewards-oracle-sdk/CHANGELOG.md b/packages/rewards-oracle-sdk/CHANGELOG.md index 978e3eadb..6eb295a1f 100644 --- a/packages/rewards-oracle-sdk/CHANGELOG.md +++ b/packages/rewards-oracle-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/rewards-oracle-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/rewards-oracle-sdk diff --git a/packages/rewards-oracle-sdk/package.json b/packages/rewards-oracle-sdk/package.json index 661877b19..86342470a 100644 --- a/packages/rewards-oracle-sdk/package.json +++ b/packages/rewards-oracle-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the rewards oracle smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/rewards-oracle-sdk/yarn.deploy.lock b/packages/rewards-oracle-sdk/yarn.deploy.lock index 485223653..7db318e40 100644 --- a/packages/rewards-oracle-sdk/yarn.deploy.lock +++ b/packages/rewards-oracle-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -81,7 +81,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -100,8 +100,8 @@ __metadata: resolution: "@helium/rewards-oracle-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 diff --git a/packages/spl-utils/CHANGELOG.md b/packages/spl-utils/CHANGELOG.md index 0478a99cb..4430ad010 100644 --- a/packages/spl-utils/CHANGELOG.md +++ b/packages/spl-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/spl-utils + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/spl-utils diff --git a/packages/spl-utils/package.json b/packages/spl-utils/package.json index d23a0c637..2b194671e 100644 --- a/packages/spl-utils/package.json +++ b/packages/spl-utils/package.json @@ -1,6 +1,6 @@ { "name": "@helium/spl-utils", - "version": "0.9.8", + "version": "0.9.9", "description": "Utils shared across spl suite", "publishConfig": { "access": "public", @@ -32,9 +32,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/anchor-resolvers": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-token": "^0.3.8", diff --git a/packages/spl-utils/yarn.deploy.lock b/packages/spl-utils/yarn.deploy.lock index 1f846abe2..15c0a669e 100644 --- a/packages/spl-utils/yarn.deploy.lock +++ b/packages/spl-utils/yarn.deploy.lock @@ -58,7 +58,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -80,7 +80,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -99,9 +99,9 @@ __metadata: resolution: "@helium/spl-utils@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/sus/CHANGELOG.md b/packages/sus/CHANGELOG.md index d581e172e..3a5c9aa3b 100644 --- a/packages/sus/CHANGELOG.md +++ b/packages/sus/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/sus + + + + + ## [0.9.8](https://github.com/helium/helium-program-library/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/sus diff --git a/packages/sus/package.json b/packages/sus/package.json index cc2bcbc90..3048ee3c7 100644 --- a/packages/sus/package.json +++ b/packages/sus/package.json @@ -1,6 +1,6 @@ { "name": "@helium/sus", - "version": "0.9.8", + "version": "0.9.9", "description": "Transaction simulation sus checker", "publishConfig": { "access": "public", diff --git a/packages/tokens-to-rent-service/CHANGELOG.md b/packages/tokens-to-rent-service/CHANGELOG.md index 350ec84c0..da1b81280 100644 --- a/packages/tokens-to-rent-service/CHANGELOG.md +++ b/packages/tokens-to-rent-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/tokens-to-rent-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/tokens-to-rent-service diff --git a/packages/tokens-to-rent-service/package.json b/packages/tokens-to-rent-service/package.json index 276f2edd9..dafc1c46f 100644 --- a/packages/tokens-to-rent-service/package.json +++ b/packages/tokens-to-rent-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Service that gives flashloans of sol to allow jupiter swap of small amounts of hnt/mobile/iot to sol for fees", "repository": { "type": "git", @@ -34,9 +34,9 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/spl-utils": "^0.9.8", + "@helium/spl-utils": "^0.9.9", "@jup-ag/api": "^6.0.6", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", diff --git a/packages/tokens-to-rent-service/yarn.deploy.lock b/packages/tokens-to-rent-service/yarn.deploy.lock index 54252756c..fdbb3f164 100644 --- a/packages/tokens-to-rent-service/yarn.deploy.lock +++ b/packages/tokens-to-rent-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -147,14 +147,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -175,9 +175,9 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@jup-ag/api": ^6.0.6 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 diff --git a/packages/treasury-management-sdk/CHANGELOG.md b/packages/treasury-management-sdk/CHANGELOG.md index 1eb60d4f5..e0c3a26b3 100644 --- a/packages/treasury-management-sdk/CHANGELOG.md +++ b/packages/treasury-management-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/treasury-management-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/treasury-management-sdk diff --git a/packages/treasury-management-sdk/package.json b/packages/treasury-management-sdk/package.json index 0968553ba..a524100bb 100644 --- a/packages/treasury-management-sdk/package.json +++ b/packages/treasury-management-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the treasury-management smart contract", "repository": { "type": "git", @@ -32,9 +32,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/idls": "^0.9.9", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/treasury-management-sdk/yarn.deploy.lock b/packages/treasury-management-sdk/yarn.deploy.lock index 8eea3afec..64b3436c1 100644 --- a/packages/treasury-management-sdk/yarn.deploy.lock +++ b/packages/treasury-management-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -81,13 +81,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -116,9 +116,9 @@ __metadata: resolution: "@helium/treasury-management-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 diff --git a/packages/voter-stake-registry-hooks/CHANGELOG.md b/packages/voter-stake-registry-hooks/CHANGELOG.md index 183f926de..2e5abcf75 100644 --- a/packages/voter-stake-registry-hooks/CHANGELOG.md +++ b/packages/voter-stake-registry-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/voter-stake-registry-hooks + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/voter-stake-registry-hooks diff --git a/packages/voter-stake-registry-hooks/package.json b/packages/voter-stake-registry-hooks/package.json index 1155274fe..70e8bc276 100644 --- a/packages/voter-stake-registry-hooks/package.json +++ b/packages/voter-stake-registry-hooks/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "React hooks for helium voter stake registry", "repository": { "type": "git", @@ -32,16 +32,16 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.8", - "@helium/account-fetch-cache-hooks": "^0.9.8", - "@helium/circuit-breaker-sdk": "^0.9.8", - "@helium/helium-react-hooks": "^0.9.8", - "@helium/helium-sub-daos-sdk": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache-hooks": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/helium-react-hooks": "^0.9.9", + "@helium/helium-sub-daos-sdk": "^0.9.9", "@helium/modular-governance-hooks": "^0.0.12", "@helium/modular-governance-idls": "^0.0.12", - "@helium/position-voting-rewards-sdk": "^0.9.8", - "@helium/spl-utils": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/position-voting-rewards-sdk": "^0.9.9", + "@helium/spl-utils": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "@solana/wallet-adapter-base": "^0.9.22", "@solana/wallet-adapter-react": "^0.15.32", "@solana/web3.js": "^1.78.8", diff --git a/packages/voter-stake-registry-hooks/yarn.deploy.lock b/packages/voter-stake-registry-hooks/yarn.deploy.lock index 4af0d4807..be0f248d6 100644 --- a/packages/voter-stake-registry-hooks/yarn.deploy.lock +++ b/packages/voter-stake-registry-hooks/yarn.deploy.lock @@ -67,11 +67,11 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache-hooks@^0.9.8": +"@helium/account-fetch-cache-hooks@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks" dependencies: - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@solana/web3.js": ^1.78.8 git-format-staged: ^2.1.3 react-async-hook: ^4.0.0 @@ -97,7 +97,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -128,7 +128,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -166,13 +166,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8": +"@helium/circuit-breaker-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -182,13 +182,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-react-hooks@^0.9.8": +"@helium/helium-react-hooks@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-react-hooks@workspace:packages/helium-react-hooks" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/account-fetch-cache-hooks": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache-hooks": ^0.9.9 "@solana/spl-token": ^0.3.8 "@solana/wallet-adapter-react": ^0.15.32 "@solana/web3.js": ^1.78.8 @@ -225,15 +225,15 @@ __metadata: languageName: node linkType: hard -"@helium/helium-sub-daos-sdk@^0.9.8": +"@helium/helium-sub-daos-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -243,7 +243,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -319,14 +319,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.8": +"@helium/position-voting-rewards-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -348,14 +348,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -370,14 +370,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.8": +"@helium/treasury-management-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -392,16 +392,16 @@ __metadata: resolution: "@helium/voter-stake-registry-hooks@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/account-fetch-cache-hooks": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-react-hooks": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache-hooks": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-react-hooks": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 "@helium/modular-governance-hooks": ^0.0.12 "@helium/modular-governance-idls": ^0.0.12 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/wallet-adapter-base": ^0.9.22 "@solana/wallet-adapter-react": ^0.15.32 "@solana/web3.js": ^1.78.8 @@ -418,15 +418,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/voter-stake-registry-sdk/CHANGELOG.md b/packages/voter-stake-registry-sdk/CHANGELOG.md index 72ce64c11..36984d84e 100644 --- a/packages/voter-stake-registry-sdk/CHANGELOG.md +++ b/packages/voter-stake-registry-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/voter-stake-registry-sdk + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/voter-stake-registry-sdk diff --git a/packages/voter-stake-registry-sdk/package.json b/packages/voter-stake-registry-sdk/package.json index e9489c60d..44edca24d 100644 --- a/packages/voter-stake-registry-sdk/package.json +++ b/packages/voter-stake-registry-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Interface to the voter-stake-registry smart contract", "repository": { "type": "git", @@ -32,10 +32,10 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.8", - "@helium/idls": "^0.9.8", + "@helium/anchor-resolvers": "^0.9.9", + "@helium/idls": "^0.9.9", "@helium/nft-proxy-sdk": "^0.0.12", - "@helium/spl-utils": "^0.9.8", + "@helium/spl-utils": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-token": "^0.3.8", "bn.js": "^5.2.0", diff --git a/packages/voter-stake-registry-sdk/yarn.deploy.lock b/packages/voter-stake-registry-sdk/yarn.deploy.lock index fd1ee6193..611fa3291 100644 --- a/packages/voter-stake-registry-sdk/yarn.deploy.lock +++ b/packages/voter-stake-registry-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -115,7 +115,7 @@ __metadata: languageName: node linkType: hard -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -151,14 +151,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -178,10 +178,10 @@ __metadata: resolution: "@helium/voter-stake-registry-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/vsr-metadata-service/CHANGELOG.md b/packages/vsr-metadata-service/CHANGELOG.md index ee28cb4c6..36cb70f1f 100644 --- a/packages/vsr-metadata-service/CHANGELOG.md +++ b/packages/vsr-metadata-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.9) (2024-10-28) + +**Note:** Version bump only for package @helium/vsr-metadata-service + + + + + ## [0.9.8](https://github.com/helium/helium-program-libary/compare/v0.9.7...v0.9.8) (2024-10-23) **Note:** Version bump only for package @helium/vsr-metadata-service diff --git a/packages/vsr-metadata-service/package.json b/packages/vsr-metadata-service/package.json index ef868103e..6716ce91b 100644 --- a/packages/vsr-metadata-service/package.json +++ b/packages/vsr-metadata-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.8", + "version": "0.9.9", "description": "Mint metadata of vsr positions", "repository": { "type": "git", @@ -34,10 +34,10 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.8", + "@helium/account-fetch-cache": "^0.9.9", "@helium/address": "^4.10.2", - "@helium/spl-utils": "^0.9.8", - "@helium/voter-stake-registry-sdk": "^0.9.8", + "@helium/spl-utils": "^0.9.9", + "@helium/voter-stake-registry-sdk": "^0.9.9", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-token": "^0.3.8", diff --git a/packages/vsr-metadata-service/yarn.deploy.lock b/packages/vsr-metadata-service/yarn.deploy.lock index bc5c9e2ab..3fb036371 100644 --- a/packages/vsr-metadata-service/yarn.deploy.lock +++ b/packages/vsr-metadata-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8": +"@helium/account-fetch-cache@^0.9.9": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8": +"@helium/anchor-resolvers@^0.9.9": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -159,7 +159,7 @@ __metadata: languageName: node linkType: hard -"@helium/idls@^0.9.8": +"@helium/idls@^0.9.9": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -195,14 +195,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.8": +"@helium/spl-utils@^0.9.9": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -217,15 +217,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8": +"@helium/voter-stake-registry-sdk@^0.9.9": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 @@ -243,10 +243,10 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/yarn.lock b/yarn.lock index 7b95bd673..61f68d213 100644 --- a/yarn.lock +++ b/yarn.lock @@ -479,11 +479,11 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache-hooks@^0.9.8, @helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks": +"@helium/account-fetch-cache-hooks@^0.9.9, @helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks" dependencies: - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@solana/web3.js": ^1.78.8 git-format-staged: ^2.1.3 react-async-hook: ^4.0.0 @@ -509,7 +509,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.8, @helium/account-fetch-cache@workspace:packages/account-fetch-cache": +"@helium/account-fetch-cache@^0.9.9, @helium/account-fetch-cache@workspace:packages/account-fetch-cache": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -538,7 +538,7 @@ __metadata: "@connectrpc/connect-node": ^1.3.0 "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/web3.js": ^1.78.8 "@substreams/core": ^0.15.1 @@ -609,7 +609,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.8, @helium/anchor-resolvers@workspace:packages/anchor-resolvers": +"@helium/anchor-resolvers@^0.9.9, @helium/anchor-resolvers@workspace:packages/anchor-resolvers": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -647,13 +647,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.8, @helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk": +"@helium/circuit-breaker-sdk@^0.9.9, @helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -668,25 +668,25 @@ __metadata: resolution: "@helium/crons@workspace:packages/crons" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/fanout-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/mobile-entity-manager-sdk": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/fanout-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/mobile-entity-manager-sdk": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/no-emit-sdk": ^0.9.8 + "@helium/no-emit-sdk": ^0.9.9 "@helium/organization-sdk": ^0.0.12 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 "@helium/proposal-sdk": ^0.0.12 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@helium/state-controller-sdk": ^0.0.12 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.0 @@ -735,15 +735,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/data-credits-sdk@^0.9.8, @helium/data-credits-sdk@workspace:packages/data-credits-sdk": +"@helium/data-credits-sdk@^0.9.9, @helium/data-credits-sdk@workspace:packages/data-credits-sdk": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -755,20 +755,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.8, @helium/distributor-oracle@workspace:packages/distributor-oracle": +"@helium/distributor-oracle@^0.9.9, @helium/distributor-oracle@workspace:packages/distributor-oracle": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/rewards-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -801,9 +801,9 @@ __metadata: resolution: "@helium/entity-invalidator@workspace:packages/entity-invalidator" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.1 "@types/deep-equal": ^1.0.1 @@ -833,10 +833,10 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/fanout-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/fanout-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -854,13 +854,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.8, @helium/fanout-sdk@workspace:packages/fanout-sdk": +"@helium/fanout-sdk@^0.9.9, @helium/fanout-sdk@workspace:packages/fanout-sdk": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -876,8 +876,8 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -903,21 +903,21 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/circuit-breaker-sdk": ^0.9.9 "@helium/crypto": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/fanout-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/mobile-entity-manager-sdk": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/fanout-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/mobile-entity-manager-sdk": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 "@helium/organization-sdk": ^0.0.13 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-governance": ^0.3.18 "@solana/spl-token": ^0.3.8 @@ -937,17 +937,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.8, @helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk": +"@helium/helium-entity-manager-sdk@^0.9.9, @helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/no-emit-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -960,13 +960,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-react-hooks@^0.9.8, @helium/helium-react-hooks@workspace:packages/helium-react-hooks": +"@helium/helium-react-hooks@^0.9.9, @helium/helium-react-hooks@workspace:packages/helium-react-hooks": version: 0.0.0-use.local resolution: "@helium/helium-react-hooks@workspace:packages/helium-react-hooks" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/account-fetch-cache-hooks": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache-hooks": ^0.9.9 "@solana/spl-token": ^0.3.8 "@solana/wallet-adapter-react": ^0.15.32 "@solana/web3.js": ^1.78.8 @@ -1003,15 +1003,15 @@ __metadata: languageName: node linkType: hard -"@helium/helium-sub-daos-sdk@^0.9.8, @helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk": +"@helium/helium-sub-daos-sdk@^0.9.9, @helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1028,8 +1028,8 @@ __metadata: "@fastify/cors": ^8.1.1 "@fastify/static": ^6 "@helium/organization-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.1 "@types/lodash": ^4.17.6 @@ -1053,9 +1053,9 @@ __metadata: resolution: "@helium/hexboosting-sdk@workspace:packages/hexboosting-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1070,16 +1070,16 @@ __metadata: resolution: "@helium/hotspot-utils@workspace:packages/hotspot-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/web3.js": ^1.78.8 bs58: ^4.0.1 languageName: unknown linkType: soft -"@helium/idls@^0.9.8, @helium/idls@workspace:packages/idls": +"@helium/idls@^0.9.9, @helium/idls@workspace:packages/idls": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -1106,13 +1106,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.8, @helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk": +"@helium/lazy-distributor-sdk@^0.9.9, @helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1122,13 +1122,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/lazy-transactions-sdk@^0.9.8, @helium/lazy-transactions-sdk@workspace:packages/lazy-transactions-sdk": +"@helium/lazy-transactions-sdk@^0.9.9, @helium/lazy-transactions-sdk@workspace:packages/lazy-transactions-sdk": version: 0.0.0-use.local resolution: "@helium/lazy-transactions-sdk@workspace:packages/lazy-transactions-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1147,13 +1147,13 @@ __metadata: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 "@grpc/grpc-js": ^1.10.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -1187,18 +1187,18 @@ __metadata: "@clockwork-xyz/sdk": ^0.3.0 "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/circuit-breaker-sdk": ^0.9.8 + "@helium/circuit-breaker-sdk": ^0.9.9 "@helium/crypto": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/distributor-oracle": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/lazy-transactions-sdk": ^0.9.8 - "@helium/treasury-management-sdk": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/distributor-oracle": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/lazy-transactions-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@project-serum/borsh": ^0.2.5 "@solana/buffer-layout": ^4.0.0 @@ -1228,14 +1228,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/mobile-entity-manager-sdk@^0.9.8, @helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk": +"@helium/mobile-entity-manager-sdk@^0.9.9, @helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk": version: 0.0.0-use.local resolution: "@helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -1299,16 +1299,16 @@ __metadata: resolution: "@helium/monitor-service@workspace:packages/monitor-service" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/data-credits-sdk": ^0.9.8 - "@helium/helium-entity-manager-sdk": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/lazy-distributor-sdk": ^0.9.8 - "@helium/lazy-transactions-sdk": ^0.9.8 - "@helium/price-oracle-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/data-credits-sdk": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/lazy-distributor-sdk": ^0.9.9 + "@helium/lazy-transactions-sdk": ^0.9.9 + "@helium/price-oracle-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 @@ -1347,7 +1347,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.8, @helium/no-emit-sdk@workspace:packages/no-emit-sdk": +"@helium/no-emit-sdk@^0.9.9, @helium/no-emit-sdk@workspace:packages/no-emit-sdk": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -1387,14 +1387,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.8, @helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk": +"@helium/position-voting-rewards-sdk@^0.9.9, @helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 - "@helium/spl-utils": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 + "@helium/spl-utils": ^0.9.9 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -1405,12 +1405,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.8, @helium/price-oracle-sdk@workspace:packages/price-oracle-sdk": +"@helium/price-oracle-sdk@^0.9.9, @helium/price-oracle-sdk@workspace:packages/price-oracle-sdk": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.8 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1471,13 +1471,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/rewards-oracle-sdk@^0.9.8, @helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk": +"@helium/rewards-oracle-sdk@^0.9.9, @helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1487,14 +1487,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.8, @helium/spl-utils@workspace:packages/spl-utils": +"@helium/spl-utils@^0.9.9, @helium/spl-utils@workspace:packages/spl-utils": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -1543,9 +1543,9 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@jup-ag/api": ^6.0.6 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -1575,14 +1575,14 @@ __metadata: languageName: node linkType: hard -"@helium/treasury-management-sdk@^0.9.8, @helium/treasury-management-sdk@workspace:packages/treasury-management-sdk": +"@helium/treasury-management-sdk@^0.9.9, @helium/treasury-management-sdk@workspace:packages/treasury-management-sdk": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/idls": ^0.9.9 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -1597,16 +1597,16 @@ __metadata: resolution: "@helium/voter-stake-registry-hooks@workspace:packages/voter-stake-registry-hooks" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.8 - "@helium/account-fetch-cache-hooks": ^0.9.8 - "@helium/circuit-breaker-sdk": ^0.9.8 - "@helium/helium-react-hooks": ^0.9.8 - "@helium/helium-sub-daos-sdk": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache-hooks": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/helium-react-hooks": ^0.9.9 + "@helium/helium-sub-daos-sdk": ^0.9.9 "@helium/modular-governance-hooks": ^0.0.12 "@helium/modular-governance-idls": ^0.0.12 - "@helium/position-voting-rewards-sdk": ^0.9.8 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/position-voting-rewards-sdk": ^0.9.9 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@solana/wallet-adapter-base": ^0.9.22 "@solana/wallet-adapter-react": ^0.15.32 "@solana/web3.js": ^1.78.8 @@ -1623,15 +1623,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.8, @helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk": +"@helium/voter-stake-registry-sdk@^0.9.9, @helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.8 - "@helium/idls": ^0.9.8 + "@helium/anchor-resolvers": ^0.9.9 + "@helium/idls": ^0.9.9 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.8 + "@helium/spl-utils": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 @@ -1649,10 +1649,10 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.8 + "@helium/account-fetch-cache": ^0.9.9 "@helium/address": ^4.10.2 - "@helium/spl-utils": ^0.9.8 - "@helium/voter-stake-registry-sdk": ^0.9.8 + "@helium/spl-utils": ^0.9.9 + "@helium/voter-stake-registry-sdk": ^0.9.9 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 From 369779a798035d14ff8c30d0ee4a2f877bb0999d Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 13:33:28 -0700 Subject: [PATCH 11/15] Bump pckg --- CHANGELOG.md | 8 + lerna.json | 2 +- .../account-fetch-cache-hooks/CHANGELOG.md | 8 + .../account-fetch-cache-hooks/package.json | 4 +- .../yarn.deploy.lock | 4 +- packages/account-fetch-cache/CHANGELOG.md | 8 + packages/account-fetch-cache/package.json | 2 +- .../CHANGELOG.md | 8 + .../package.json | 4 +- .../yarn.deploy.lock | 4 +- packages/active-device-oracle/CHANGELOG.md | 8 + packages/active-device-oracle/package.json | 2 +- packages/anchor-resolvers/CHANGELOG.md | 8 + packages/anchor-resolvers/package.json | 2 +- packages/circuit-breaker-sdk/CHANGELOG.md | 8 + packages/circuit-breaker-sdk/package.json | 6 +- packages/circuit-breaker-sdk/yarn.deploy.lock | 8 +- packages/crons/CHANGELOG.md | 8 + packages/crons/package.json | 32 +- packages/crons/yarn.deploy.lock | 142 ++++---- packages/currency-utils/CHANGELOG.md | 8 + packages/currency-utils/package.json | 2 +- packages/data-credits-sdk/CHANGELOG.md | 8 + packages/data-credits-sdk/package.json | 10 +- packages/data-credits-sdk/yarn.deploy.lock | 52 +-- packages/distributor-oracle/CHANGELOG.md | 8 + packages/distributor-oracle/package.json | 16 +- packages/distributor-oracle/yarn.deploy.lock | 84 ++--- packages/docsite/CHANGELOG.md | 8 + packages/docsite/package.json | 2 +- packages/entity-invalidator/CHANGELOG.md | 8 + packages/entity-invalidator/package.json | 8 +- packages/entity-invalidator/yarn.deploy.lock | 64 ++-- packages/fanout-metadata-service/CHANGELOG.md | 8 + packages/fanout-metadata-service/package.json | 8 +- .../fanout-metadata-service/yarn.deploy.lock | 24 +- packages/fanout-sdk/CHANGELOG.md | 8 + packages/fanout-sdk/package.json | 6 +- packages/fanout-sdk/yarn.deploy.lock | 8 +- packages/faucet-service/CHANGELOG.md | 8 + packages/faucet-service/package.json | 6 +- packages/faucet-service/yarn.deploy.lock | 16 +- packages/helium-admin-cli/CHANGELOG.md | 8 + packages/helium-admin-cli/package.json | 26 +- packages/helium-admin-cli/yarn.deploy.lock | 146 ++++----- .../helium-entity-manager-sdk/CHANGELOG.md | 8 + .../helium-entity-manager-sdk/package.json | 12 +- .../yarn.deploy.lock | 56 ++-- packages/helium-react-hooks/CHANGELOG.md | 8 + packages/helium-react-hooks/package.json | 6 +- .../src/hooks/useAnchorAccount.ts | 2 +- packages/helium-react-hooks/yarn.deploy.lock | 10 +- packages/helium-sub-daos-sdk/CHANGELOG.md | 8 + packages/helium-sub-daos-sdk/package.json | 10 +- packages/helium-sub-daos-sdk/yarn.deploy.lock | 42 +-- packages/helium-vote-service/CHANGELOG.md | 8 + packages/helium-vote-service/package.json | 6 +- packages/helium-vote-service/yarn.deploy.lock | 24 +- packages/hexboosting-sdk/CHANGELOG.md | 8 + packages/hexboosting-sdk/package.json | 8 +- packages/hexboosting-sdk/yarn.deploy.lock | 50 +-- packages/hotspot-utils/CHANGELOG.md | 8 + packages/hotspot-utils/package.json | 10 +- packages/hotspot-utils/yarn.deploy.lock | 66 ++-- packages/idls/CHANGELOG.md | 8 + packages/idls/package.json | 2 +- packages/lazy-distributor-sdk/CHANGELOG.md | 8 + packages/lazy-distributor-sdk/package.json | 6 +- .../lazy-distributor-sdk/yarn.deploy.lock | 14 +- packages/lazy-transactions-sdk/CHANGELOG.md | 8 + packages/lazy-transactions-sdk/package.json | 6 +- .../lazy-transactions-sdk/yarn.deploy.lock | 16 +- packages/metadata-service/CHANGELOG.md | 8 + packages/metadata-service/package.json | 14 +- packages/metadata-service/yarn.deploy.lock | 80 ++--- packages/migration-service/CHANGELOG.md | 8 + packages/migration-service/package.json | 22 +- packages/migration-service/yarn.deploy.lock | 122 +++---- .../mobile-entity-manager-sdk/CHANGELOG.md | 8 + .../mobile-entity-manager-sdk/package.json | 8 +- .../yarn.deploy.lock | 64 ++-- packages/monitor-service/CHANGELOG.md | 8 + packages/monitor-service/package.json | 22 +- packages/monitor-service/yarn.deploy.lock | 104 +++--- packages/no-emit-sdk/CHANGELOG.md | 8 + packages/no-emit-sdk/package.json | 2 +- .../position-voting-rewards-sdk/CHANGELOG.md | 8 + .../position-voting-rewards-sdk/package.json | 8 +- .../yarn.deploy.lock | 18 +- packages/price-oracle-sdk/CHANGELOG.md | 8 + packages/price-oracle-sdk/package.json | 4 +- packages/price-oracle-sdk/yarn.deploy.lock | 4 +- .../CHANGELOG.md | 8 + .../package.json | 2 +- packages/rewards-oracle-sdk/CHANGELOG.md | 8 + packages/rewards-oracle-sdk/package.json | 6 +- packages/rewards-oracle-sdk/yarn.deploy.lock | 8 +- packages/spl-utils/CHANGELOG.md | 8 + packages/spl-utils/package.json | 6 +- packages/spl-utils/yarn.deploy.lock | 8 +- packages/sus/CHANGELOG.md | 8 + packages/sus/package.json | 2 +- packages/tokens-to-rent-service/CHANGELOG.md | 8 + packages/tokens-to-rent-service/package.json | 6 +- .../tokens-to-rent-service/yarn.deploy.lock | 14 +- packages/treasury-management-sdk/CHANGELOG.md | 8 + packages/treasury-management-sdk/package.json | 8 +- .../treasury-management-sdk/yarn.deploy.lock | 16 +- .../voter-stake-registry-hooks/CHANGELOG.md | 8 + .../voter-stake-registry-hooks/package.json | 18 +- .../yarn.deploy.lock | 78 ++--- .../voter-stake-registry-sdk/CHANGELOG.md | 8 + .../voter-stake-registry-sdk/package.json | 8 +- .../voter-stake-registry-sdk/yarn.deploy.lock | 18 +- packages/vsr-metadata-service/CHANGELOG.md | 8 + packages/vsr-metadata-service/package.json | 8 +- .../vsr-metadata-service/yarn.deploy.lock | 26 +- yarn.lock | 306 +++++++++--------- 118 files changed, 1359 insertions(+), 1023 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a12fc0a49..30647ca79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package helium-program-library + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) diff --git a/lerna.json b/lerna.json index 0d84ffeb8..8aeae28b1 100644 --- a/lerna.json +++ b/lerna.json @@ -4,5 +4,5 @@ "packages/*" ], "useWorkspaces": true, - "version": "0.9.9" + "version": "0.9.10" } diff --git a/packages/account-fetch-cache-hooks/CHANGELOG.md b/packages/account-fetch-cache-hooks/CHANGELOG.md index 1b8043953..42a87ea13 100644 --- a/packages/account-fetch-cache-hooks/CHANGELOG.md +++ b/packages/account-fetch-cache-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/account-fetch-cache-hooks + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/account-fetch-cache-hooks diff --git a/packages/account-fetch-cache-hooks/package.json b/packages/account-fetch-cache-hooks/package.json index 08c40d8c7..7541da30b 100644 --- a/packages/account-fetch-cache-hooks/package.json +++ b/packages/account-fetch-cache-hooks/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "React hooks and context for account-fetch-cache", "repository": { "type": "git", @@ -31,7 +31,7 @@ "prebuild": "npm run clean && npm run package" }, "dependencies": { - "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", "@solana/web3.js": "^1.78.8", "react-async-hook": "^4.0.0" }, diff --git a/packages/account-fetch-cache-hooks/yarn.deploy.lock b/packages/account-fetch-cache-hooks/yarn.deploy.lock index e68f4b3f9..e6d0d90a3 100644 --- a/packages/account-fetch-cache-hooks/yarn.deploy.lock +++ b/packages/account-fetch-cache-hooks/yarn.deploy.lock @@ -27,7 +27,7 @@ __metadata: version: 0.0.0-use.local resolution: "@helium/account-fetch-cache-hooks@workspace:." dependencies: - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@solana/web3.js": ^1.78.8 git-format-staged: ^2.1.3 react-async-hook: ^4.0.0 @@ -39,7 +39,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: diff --git a/packages/account-fetch-cache/CHANGELOG.md b/packages/account-fetch-cache/CHANGELOG.md index 3521cac5b..be931b9ca 100644 --- a/packages/account-fetch-cache/CHANGELOG.md +++ b/packages/account-fetch-cache/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/account-fetch-cache + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/account-fetch-cache diff --git a/packages/account-fetch-cache/package.json b/packages/account-fetch-cache/package.json index 2dcb13d71..64a197257 100644 --- a/packages/account-fetch-cache/package.json +++ b/packages/account-fetch-cache/package.json @@ -1,6 +1,6 @@ { "name": "@helium/account-fetch-cache", - "version": "0.9.9", + "version": "0.9.10", "description": "Solana account fetch cache to eliminate reduntant fetching, and batch fetches", "publishConfig": { "access": "public", diff --git a/packages/account-postgres-sink-service/CHANGELOG.md b/packages/account-postgres-sink-service/CHANGELOG.md index 1e7dedbb5..9358a0af6 100644 --- a/packages/account-postgres-sink-service/CHANGELOG.md +++ b/packages/account-postgres-sink-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/account-postgres-sink-service + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/account-postgres-sink-service diff --git a/packages/account-postgres-sink-service/package.json b/packages/account-postgres-sink-service/package.json index d803cf58a..1192d6ca1 100644 --- a/packages/account-postgres-sink-service/package.json +++ b/packages/account-postgres-sink-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Sync account data to postgres", "repository": { "type": "git", @@ -37,7 +37,7 @@ "@connectrpc/connect-node": "^1.3.0", "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/web3.js": "^1.78.8", "@substreams/core": "^0.15.1", diff --git a/packages/account-postgres-sink-service/yarn.deploy.lock b/packages/account-postgres-sink-service/yarn.deploy.lock index 87138cb8f..53fe78ddb 100644 --- a/packages/account-postgres-sink-service/yarn.deploy.lock +++ b/packages/account-postgres-sink-service/yarn.deploy.lock @@ -179,7 +179,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -199,7 +199,7 @@ __metadata: "@connectrpc/connect-node": ^1.3.0 "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/web3.js": ^1.78.8 "@substreams/core": ^0.15.1 diff --git a/packages/active-device-oracle/CHANGELOG.md b/packages/active-device-oracle/CHANGELOG.md index 3c2dc785e..cc66e0bcc 100644 --- a/packages/active-device-oracle/CHANGELOG.md +++ b/packages/active-device-oracle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/active-device-oracle + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/active-device-oracle diff --git a/packages/active-device-oracle/package.json b/packages/active-device-oracle/package.json index f38561d50..a03937581 100644 --- a/packages/active-device-oracle/package.json +++ b/packages/active-device-oracle/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Oracle of helium active devices", "repository": { "type": "git", diff --git a/packages/anchor-resolvers/CHANGELOG.md b/packages/anchor-resolvers/CHANGELOG.md index d40ba8145..46b1faf82 100644 --- a/packages/anchor-resolvers/CHANGELOG.md +++ b/packages/anchor-resolvers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/anchor-resolvers + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/anchor-resolvers diff --git a/packages/anchor-resolvers/package.json b/packages/anchor-resolvers/package.json index 25fd77246..2bc31876f 100644 --- a/packages/anchor-resolvers/package.json +++ b/packages/anchor-resolvers/package.json @@ -1,6 +1,6 @@ { "name": "@helium/anchor-resolvers", - "version": "0.9.9", + "version": "0.9.10", "description": "Wrappers around anchor custom resolvers to make composition easier", "publishConfig": { "access": "public", diff --git a/packages/circuit-breaker-sdk/CHANGELOG.md b/packages/circuit-breaker-sdk/CHANGELOG.md index 9de5129d5..06c75cc34 100644 --- a/packages/circuit-breaker-sdk/CHANGELOG.md +++ b/packages/circuit-breaker-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/circuit-breaker-sdk + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/circuit-breaker-sdk diff --git a/packages/circuit-breaker-sdk/package.json b/packages/circuit-breaker-sdk/package.json index 73ee96552..bc24f5f78 100644 --- a/packages/circuit-breaker-sdk/package.json +++ b/packages/circuit-breaker-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Interface to the circuit breaker smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.9", - "@helium/idls": "^0.9.9", + "@helium/anchor-resolvers": "^0.9.10", + "@helium/idls": "^0.9.10", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/circuit-breaker-sdk/yarn.deploy.lock b/packages/circuit-breaker-sdk/yarn.deploy.lock index b03329991..785801053 100644 --- a/packages/circuit-breaker-sdk/yarn.deploy.lock +++ b/packages/circuit-breaker-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -86,8 +86,8 @@ __metadata: resolution: "@helium/circuit-breaker-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: diff --git a/packages/crons/CHANGELOG.md b/packages/crons/CHANGELOG.md index 32182d48a..3929b3a26 100644 --- a/packages/crons/CHANGELOG.md +++ b/packages/crons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/crons + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/crons diff --git a/packages/crons/package.json b/packages/crons/package.json index 556530ff5..4ea1e7469 100644 --- a/packages/crons/package.json +++ b/packages/crons/package.json @@ -1,6 +1,6 @@ { "name": "@helium/crons", - "version": "0.9.9", + "version": "0.9.10", "description": "scripts to run on a schedule", "private": true, "publishConfig": { @@ -32,25 +32,25 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.9", - "@helium/distributor-oracle": "^0.9.9", - "@helium/fanout-sdk": "^0.9.9", - "@helium/helium-entity-manager-sdk": "^0.9.9", - "@helium/helium-sub-daos-sdk": "^0.9.9", - "@helium/idls": "^0.9.9", - "@helium/lazy-distributor-sdk": "^0.9.9", - "@helium/mobile-entity-manager-sdk": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", + "@helium/distributor-oracle": "^0.9.10", + "@helium/fanout-sdk": "^0.9.10", + "@helium/helium-entity-manager-sdk": "^0.9.10", + "@helium/helium-sub-daos-sdk": "^0.9.10", + "@helium/idls": "^0.9.10", + "@helium/lazy-distributor-sdk": "^0.9.10", + "@helium/mobile-entity-manager-sdk": "^0.9.10", "@helium/nft-proxy-sdk": "^0.0.12", - "@helium/no-emit-sdk": "^0.9.9", + "@helium/no-emit-sdk": "^0.9.10", "@helium/organization-sdk": "^0.0.12", - "@helium/position-voting-rewards-sdk": "^0.9.9", - "@helium/price-oracle-sdk": "^0.9.9", + "@helium/position-voting-rewards-sdk": "^0.9.10", + "@helium/price-oracle-sdk": "^0.9.10", "@helium/proposal-sdk": "^0.0.12", - "@helium/rewards-oracle-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/rewards-oracle-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "@helium/state-controller-sdk": "^0.0.12", - "@helium/treasury-management-sdk": "^0.9.9", - "@helium/voter-stake-registry-sdk": "^0.9.9", + "@helium/treasury-management-sdk": "^0.9.10", + "@helium/voter-stake-registry-sdk": "^0.9.10", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", "axios": "^1.3.6", diff --git a/packages/crons/yarn.deploy.lock b/packages/crons/yarn.deploy.lock index 9b14cce31..b1915e57e 100644 --- a/packages/crons/yarn.deploy.lock +++ b/packages/crons/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -171,13 +171,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -192,25 +192,25 @@ __metadata: resolution: "@helium/crons@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 - "@helium/distributor-oracle": ^0.9.9 - "@helium/fanout-sdk": ^0.9.9 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/lazy-distributor-sdk": ^0.9.9 - "@helium/mobile-entity-manager-sdk": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 + "@helium/distributor-oracle": ^0.9.10 + "@helium/fanout-sdk": ^0.9.10 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/lazy-distributor-sdk": ^0.9.10 + "@helium/mobile-entity-manager-sdk": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/no-emit-sdk": ^0.9.9 + "@helium/no-emit-sdk": ^0.9.10 "@helium/organization-sdk": ^0.0.12 - "@helium/position-voting-rewards-sdk": ^0.9.9 - "@helium/price-oracle-sdk": ^0.9.9 + "@helium/position-voting-rewards-sdk": ^0.9.10 + "@helium/price-oracle-sdk": ^0.9.10 "@helium/proposal-sdk": ^0.0.12 - "@helium/rewards-oracle-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/rewards-oracle-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@helium/state-controller-sdk": ^0.0.12 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.0 @@ -228,20 +228,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.9": +"@helium/distributor-oracle@^0.9.10": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/lazy-distributor-sdk": ^0.9.9 - "@helium/rewards-oracle-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/lazy-distributor-sdk": ^0.9.10 + "@helium/rewards-oracle-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -269,13 +269,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.9": +"@helium/fanout-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -285,17 +285,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.9": +"@helium/helium-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/no-emit-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/no-emit-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -308,15 +308,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -326,7 +326,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -353,13 +353,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.9": +"@helium/lazy-distributor-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -369,14 +369,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/mobile-entity-manager-sdk@^0.9.9": +"@helium/mobile-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -419,7 +419,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.9": +"@helium/no-emit-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -447,14 +447,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.9": +"@helium/position-voting-rewards-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -465,12 +465,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.9": +"@helium/price-oracle-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.9 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -491,13 +491,13 @@ __metadata: languageName: node linkType: hard -"@helium/rewards-oracle-sdk@^0.9.9": +"@helium/rewards-oracle-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -507,14 +507,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -540,14 +540,14 @@ __metadata: languageName: node linkType: hard -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -557,15 +557,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/currency-utils/CHANGELOG.md b/packages/currency-utils/CHANGELOG.md index d2291eb32..12b6d2e93 100644 --- a/packages/currency-utils/CHANGELOG.md +++ b/packages/currency-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/currency-utils + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/currency-utils diff --git a/packages/currency-utils/package.json b/packages/currency-utils/package.json index f27ecd83c..04c76a5ca 100644 --- a/packages/currency-utils/package.json +++ b/packages/currency-utils/package.json @@ -1,6 +1,6 @@ { "name": "@helium/currency-utils", - "version": "0.9.9", + "version": "0.9.10", "description": "Currency utilities", "homepage": "https://github.com/helium/helium-program-library#readme", "publishConfig": { diff --git a/packages/data-credits-sdk/CHANGELOG.md b/packages/data-credits-sdk/CHANGELOG.md index d67d6f603..d8781a6dc 100644 --- a/packages/data-credits-sdk/CHANGELOG.md +++ b/packages/data-credits-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/data-credits-sdk + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/data-credits-sdk diff --git a/packages/data-credits-sdk/package.json b/packages/data-credits-sdk/package.json index 0218e3918..be7e36508 100644 --- a/packages/data-credits-sdk/package.json +++ b/packages/data-credits-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Interface to the data-credits smart contract", "repository": { "type": "git", @@ -32,10 +32,10 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.9", - "@helium/circuit-breaker-sdk": "^0.9.9", - "@helium/helium-sub-daos-sdk": "^0.9.9", - "@helium/idls": "^0.9.9", + "@helium/anchor-resolvers": "^0.9.10", + "@helium/circuit-breaker-sdk": "^0.9.10", + "@helium/helium-sub-daos-sdk": "^0.9.10", + "@helium/idls": "^0.9.10", "bn.js": "^5.2.0", "bs58": "^4.0.1", "crypto-js": "^4.1.1" diff --git a/packages/data-credits-sdk/yarn.deploy.lock b/packages/data-credits-sdk/yarn.deploy.lock index c628b2954..2c6ee94a5 100644 --- a/packages/data-credits-sdk/yarn.deploy.lock +++ b/packages/data-credits-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -115,13 +115,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -136,10 +136,10 @@ __metadata: resolution: "@helium/data-credits-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -151,15 +151,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -169,7 +169,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -205,14 +205,14 @@ __metadata: languageName: node linkType: hard -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -227,14 +227,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -244,15 +244,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/distributor-oracle/CHANGELOG.md b/packages/distributor-oracle/CHANGELOG.md index d58f730c6..d0d4ccaf8 100644 --- a/packages/distributor-oracle/CHANGELOG.md +++ b/packages/distributor-oracle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/distributor-oracle + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/distributor-oracle diff --git a/packages/distributor-oracle/package.json b/packages/distributor-oracle/package.json index fa5369b97..f25a0d5a6 100644 --- a/packages/distributor-oracle/package.json +++ b/packages/distributor-oracle/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Oracle server for the lazy distributor", "repository": { "type": "git", @@ -36,14 +36,14 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", "@helium/address": "^4.10.2", - "@helium/helium-entity-manager-sdk": "^0.9.9", - "@helium/helium-sub-daos-sdk": "^0.9.9", - "@helium/idls": "^0.9.9", - "@helium/lazy-distributor-sdk": "^0.9.9", - "@helium/rewards-oracle-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/helium-entity-manager-sdk": "^0.9.10", + "@helium/helium-sub-daos-sdk": "^0.9.10", + "@helium/idls": "^0.9.10", + "@helium/lazy-distributor-sdk": "^0.9.10", + "@helium/rewards-oracle-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "@metaplex-foundation/mpl-bubblegum": "^0.7.0", "@solana/spl-token": "^0.3.8", "@types/sequelize": "^4.28.14", diff --git a/packages/distributor-oracle/yarn.deploy.lock b/packages/distributor-oracle/yarn.deploy.lock index 56d5c7974..67778155f 100644 --- a/packages/distributor-oracle/yarn.deploy.lock +++ b/packages/distributor-oracle/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -171,13 +171,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -193,14 +193,14 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/lazy-distributor-sdk": ^0.9.9 - "@helium/rewards-oracle-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/lazy-distributor-sdk": ^0.9.10 + "@helium/rewards-oracle-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -228,17 +228,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.9": +"@helium/helium-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/no-emit-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/no-emit-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -251,15 +251,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -269,7 +269,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -296,13 +296,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.9": +"@helium/lazy-distributor-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -334,7 +334,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.9": +"@helium/no-emit-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -350,13 +350,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/rewards-oracle-sdk@^0.9.9": +"@helium/rewards-oracle-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -366,14 +366,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -388,14 +388,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -405,15 +405,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/docsite/CHANGELOG.md b/packages/docsite/CHANGELOG.md index d878680ec..13f6e3295 100644 --- a/packages/docsite/CHANGELOG.md +++ b/packages/docsite/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-library/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package hpl-docs + + + + + ## [0.9.9](https://github.com/helium/helium-program-library/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package hpl-docs diff --git a/packages/docsite/package.json b/packages/docsite/package.json index c72d03db6..1ed27348a 100644 --- a/packages/docsite/package.json +++ b/packages/docsite/package.json @@ -1,6 +1,6 @@ { "name": "hpl-docs", - "version": "0.9.9", + "version": "0.9.10", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/entity-invalidator/CHANGELOG.md b/packages/entity-invalidator/CHANGELOG.md index 34bc5444c..5d92753ab 100644 --- a/packages/entity-invalidator/CHANGELOG.md +++ b/packages/entity-invalidator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/entity-invalidator + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/entity-invalidator diff --git a/packages/entity-invalidator/package.json b/packages/entity-invalidator/package.json index cad73d7e3..98ff59b40 100644 --- a/packages/entity-invalidator/package.json +++ b/packages/entity-invalidator/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Sync account data to postgres", "repository": { "type": "git", @@ -33,9 +33,9 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.9", - "@helium/helium-entity-manager-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", + "@helium/helium-entity-manager-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "@solana/web3.js": "^1.78.8", "aws-sdk": "^2.1344.0", "bn.js": "^5.2.0", diff --git a/packages/entity-invalidator/yarn.deploy.lock b/packages/entity-invalidator/yarn.deploy.lock index b88fca0ae..4d5ff2e1e 100644 --- a/packages/entity-invalidator/yarn.deploy.lock +++ b/packages/entity-invalidator/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -148,9 +148,9 @@ __metadata: resolution: "@helium/entity-invalidator@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@solana/web3.js": ^1.78.8 "@types/bn.js": ^5.1.1 "@types/deep-equal": ^1.0.1 @@ -174,17 +174,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.9": +"@helium/helium-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/no-emit-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/no-emit-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -197,15 +197,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -215,7 +215,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -264,7 +264,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.9": +"@helium/no-emit-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -280,14 +280,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -302,14 +302,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -319,15 +319,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/fanout-metadata-service/CHANGELOG.md b/packages/fanout-metadata-service/CHANGELOG.md index 278fdaf2a..a1ebb0d71 100644 --- a/packages/fanout-metadata-service/CHANGELOG.md +++ b/packages/fanout-metadata-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/fanout-metadata-service + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/fanout-metadata-service diff --git a/packages/fanout-metadata-service/package.json b/packages/fanout-metadata-service/package.json index 463cd2c4f..d6864e039 100644 --- a/packages/fanout-metadata-service/package.json +++ b/packages/fanout-metadata-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Mint metadata of fanout positions", "repository": { "type": "git", @@ -34,10 +34,10 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/account-fetch-cache": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", "@helium/address": "^4.10.2", - "@helium/fanout-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/fanout-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-token": "^0.3.8", diff --git a/packages/fanout-metadata-service/yarn.deploy.lock b/packages/fanout-metadata-service/yarn.deploy.lock index d75b8b98b..7f79d68c5 100644 --- a/packages/fanout-metadata-service/yarn.deploy.lock +++ b/packages/fanout-metadata-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -153,10 +153,10 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/fanout-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/fanout-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -174,13 +174,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.9": +"@helium/fanout-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -190,7 +190,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -204,14 +204,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/fanout-sdk/CHANGELOG.md b/packages/fanout-sdk/CHANGELOG.md index 2e967c3b6..f179ba5e7 100644 --- a/packages/fanout-sdk/CHANGELOG.md +++ b/packages/fanout-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/fanout-sdk + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/fanout-sdk diff --git a/packages/fanout-sdk/package.json b/packages/fanout-sdk/package.json index 849544b44..7e9e0532b 100644 --- a/packages/fanout-sdk/package.json +++ b/packages/fanout-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Interface to the fanout smart contract", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/anchor-resolvers": "^0.9.9", - "@helium/idls": "^0.9.9", + "@helium/anchor-resolvers": "^0.9.10", + "@helium/idls": "^0.9.10", "bn.js": "^5.2.0", "bs58": "^4.0.1" }, diff --git a/packages/fanout-sdk/yarn.deploy.lock b/packages/fanout-sdk/yarn.deploy.lock index 06fa31c72..ab71405a5 100644 --- a/packages/fanout-sdk/yarn.deploy.lock +++ b/packages/fanout-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -86,8 +86,8 @@ __metadata: resolution: "@helium/fanout-sdk@workspace:." dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -97,7 +97,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: diff --git a/packages/faucet-service/CHANGELOG.md b/packages/faucet-service/CHANGELOG.md index 6132201bc..8ad9fa667 100644 --- a/packages/faucet-service/CHANGELOG.md +++ b/packages/faucet-service/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/faucet-service + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/faucet-service diff --git a/packages/faucet-service/package.json b/packages/faucet-service/package.json index 2e7377e04..0318e3f09 100644 --- a/packages/faucet-service/package.json +++ b/packages/faucet-service/package.json @@ -6,7 +6,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Faucet for devnet Helium tokens", "repository": { "type": "git", @@ -35,8 +35,8 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@fastify/cors": "^8.1.1", - "@helium/idls": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/idls": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "@metaplex-foundation/mpl-token-metadata": "^2.10.0", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", diff --git a/packages/faucet-service/yarn.deploy.lock b/packages/faucet-service/yarn.deploy.lock index 73b25408f..c0a230b2d 100644 --- a/packages/faucet-service/yarn.deploy.lock +++ b/packages/faucet-service/yarn.deploy.lock @@ -111,7 +111,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -133,7 +133,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -153,8 +153,8 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/idls": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/idls": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 "@solana/web3.js": ^1.78.8 @@ -174,7 +174,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -188,14 +188,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 diff --git a/packages/helium-admin-cli/CHANGELOG.md b/packages/helium-admin-cli/CHANGELOG.md index 3b2ed18cf..3858bca70 100644 --- a/packages/helium-admin-cli/CHANGELOG.md +++ b/packages/helium-admin-cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-admin-cli + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) diff --git a/packages/helium-admin-cli/package.json b/packages/helium-admin-cli/package.json index c0e57301d..72f550cf4 100644 --- a/packages/helium-admin-cli/package.json +++ b/packages/helium-admin-cli/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "CLI to bootstrap the network", "repository": { "type": "git", @@ -40,21 +40,21 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@helium/address": "^4.10.2", - "@helium/circuit-breaker-sdk": "^0.9.9", + "@helium/circuit-breaker-sdk": "^0.9.10", "@helium/crypto": "^4.10.2", - "@helium/data-credits-sdk": "^0.9.9", - "@helium/distributor-oracle": "^0.9.9", - "@helium/fanout-sdk": "^0.9.9", - "@helium/helium-entity-manager-sdk": "^0.9.9", - "@helium/helium-sub-daos-sdk": "^0.9.9", - "@helium/lazy-distributor-sdk": "^0.9.9", - "@helium/mobile-entity-manager-sdk": "^0.9.9", + "@helium/data-credits-sdk": "^0.9.10", + "@helium/distributor-oracle": "^0.9.10", + "@helium/fanout-sdk": "^0.9.10", + "@helium/helium-entity-manager-sdk": "^0.9.10", + "@helium/helium-sub-daos-sdk": "^0.9.10", + "@helium/lazy-distributor-sdk": "^0.9.10", + "@helium/mobile-entity-manager-sdk": "^0.9.10", "@helium/nft-proxy-sdk": "^0.0.12", "@helium/organization-sdk": "^0.0.13", - "@helium/position-voting-rewards-sdk": "^0.9.9", - "@helium/price-oracle-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", - "@helium/treasury-management-sdk": "^0.9.9", + "@helium/position-voting-rewards-sdk": "^0.9.10", + "@helium/price-oracle-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", + "@helium/treasury-management-sdk": "^0.9.10", "@solana/spl-account-compression": "^0.1.7", "@solana/spl-governance": "^0.3.18", "@solana/spl-token": "^0.3.8", diff --git a/packages/helium-admin-cli/yarn.deploy.lock b/packages/helium-admin-cli/yarn.deploy.lock index 819c39892..456c35bdb 100644 --- a/packages/helium-admin-cli/yarn.deploy.lock +++ b/packages/helium-admin-cli/yarn.deploy.lock @@ -146,7 +146,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -168,7 +168,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -206,13 +206,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -233,15 +233,15 @@ __metadata: languageName: node linkType: hard -"@helium/data-credits-sdk@^0.9.9": +"@helium/data-credits-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -253,20 +253,20 @@ __metadata: languageName: unknown linkType: soft -"@helium/distributor-oracle@^0.9.9": +"@helium/distributor-oracle@^0.9.10": version: 0.0.0-use.local resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle" dependencies: "@coral-xyz/anchor": ^0.28.0 "@fastify/cors": ^8.1.1 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/lazy-distributor-sdk": ^0.9.9 - "@helium/rewards-oracle-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/lazy-distributor-sdk": ^0.9.10 + "@helium/rewards-oracle-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-bubblegum": ^0.7.0 "@solana/spl-token": ^0.3.8 "@types/bs58": ^4.0.1 @@ -294,13 +294,13 @@ __metadata: languageName: unknown linkType: soft -"@helium/fanout-sdk@^0.9.9": +"@helium/fanout-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -316,21 +316,21 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/circuit-breaker-sdk": ^0.9.10 "@helium/crypto": ^4.10.2 - "@helium/data-credits-sdk": ^0.9.9 - "@helium/distributor-oracle": ^0.9.9 - "@helium/fanout-sdk": ^0.9.9 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/lazy-distributor-sdk": ^0.9.9 - "@helium/mobile-entity-manager-sdk": ^0.9.9 + "@helium/data-credits-sdk": ^0.9.10 + "@helium/distributor-oracle": ^0.9.10 + "@helium/fanout-sdk": ^0.9.10 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/lazy-distributor-sdk": ^0.9.10 + "@helium/mobile-entity-manager-sdk": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 "@helium/organization-sdk": ^0.0.13 - "@helium/position-voting-rewards-sdk": ^0.9.9 - "@helium/price-oracle-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 + "@helium/position-voting-rewards-sdk": ^0.9.10 + "@helium/price-oracle-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-governance": ^0.3.18 "@solana/spl-token": ^0.3.8 @@ -350,17 +350,17 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-entity-manager-sdk@^0.9.9": +"@helium/helium-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/no-emit-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/no-emit-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -373,15 +373,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -391,7 +391,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -418,13 +418,13 @@ __metadata: languageName: node linkType: hard -"@helium/lazy-distributor-sdk@^0.9.9": +"@helium/lazy-distributor-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/lazy-distributor-sdk@workspace:packages/lazy-distributor-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -434,14 +434,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/mobile-entity-manager-sdk@^0.9.9": +"@helium/mobile-entity-manager-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/mobile-entity-manager-sdk@workspace:packages/mobile-entity-manager-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-entity-manager-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-entity-manager-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -484,7 +484,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.9": +"@helium/no-emit-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -512,14 +512,14 @@ __metadata: languageName: node linkType: hard -"@helium/position-voting-rewards-sdk@^0.9.9": +"@helium/position-voting-rewards-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/position-voting-rewards-sdk@workspace:packages/position-voting-rewards-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -530,12 +530,12 @@ __metadata: languageName: unknown linkType: soft -"@helium/price-oracle-sdk@^0.9.9": +"@helium/price-oracle-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/price-oracle-sdk@workspace:packages/price-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/idls": ^0.9.9 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -556,13 +556,13 @@ __metadata: languageName: node linkType: hard -"@helium/rewards-oracle-sdk@^0.9.9": +"@helium/rewards-oracle-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/rewards-oracle-sdk@workspace:packages/rewards-oracle-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -572,14 +572,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -594,14 +594,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -611,15 +611,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/helium-entity-manager-sdk/CHANGELOG.md b/packages/helium-entity-manager-sdk/CHANGELOG.md index d3589fec5..9eaeb2611 100644 --- a/packages/helium-entity-manager-sdk/CHANGELOG.md +++ b/packages/helium-entity-manager-sdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-entity-manager-sdk + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/helium-entity-manager-sdk diff --git a/packages/helium-entity-manager-sdk/package.json b/packages/helium-entity-manager-sdk/package.json index 1074e97c2..832780302 100644 --- a/packages/helium-entity-manager-sdk/package.json +++ b/packages/helium-entity-manager-sdk/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "Interface to the helium-entity-manager smart contract", "repository": { "type": "git", @@ -33,11 +33,11 @@ "dependencies": { "@coral-xyz/anchor": "^0.28.0", "@helium/address": "^4.10.2", - "@helium/anchor-resolvers": "^0.9.9", - "@helium/helium-sub-daos-sdk": "^0.9.9", - "@helium/idls": "^0.9.9", - "@helium/no-emit-sdk": "^0.9.9", - "@helium/spl-utils": "^0.9.9", + "@helium/anchor-resolvers": "^0.9.10", + "@helium/helium-sub-daos-sdk": "^0.9.10", + "@helium/idls": "^0.9.10", + "@helium/no-emit-sdk": "^0.9.10", + "@helium/spl-utils": "^0.9.10", "bn.js": "^5.2.0", "bs58": "^4.0.1", "crypto-js": "^4.1.1", diff --git a/packages/helium-entity-manager-sdk/yarn.deploy.lock b/packages/helium-entity-manager-sdk/yarn.deploy.lock index 867ba9737..32d224157 100644 --- a/packages/helium-entity-manager-sdk/yarn.deploy.lock +++ b/packages/helium-entity-manager-sdk/yarn.deploy.lock @@ -67,7 +67,7 @@ __metadata: languageName: node linkType: hard -"@helium/account-fetch-cache@^0.9.9": +"@helium/account-fetch-cache@^0.9.10": version: 0.0.0-use.local resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache" dependencies: @@ -89,7 +89,7 @@ __metadata: languageName: node linkType: hard -"@helium/anchor-resolvers@^0.9.9": +"@helium/anchor-resolvers@^0.9.10": version: 0.0.0-use.local resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers" dependencies: @@ -127,13 +127,13 @@ __metadata: languageName: node linkType: hard -"@helium/circuit-breaker-sdk@^0.9.9": +"@helium/circuit-breaker-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -149,11 +149,11 @@ __metadata: dependencies: "@coral-xyz/anchor": ^0.28.0 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/helium-sub-daos-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 - "@helium/no-emit-sdk": ^0.9.9 - "@helium/spl-utils": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/helium-sub-daos-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 + "@helium/no-emit-sdk": ^0.9.10 + "@helium/spl-utils": ^0.9.10 "@types/crypto-js": ^4.1.1 bn.js: ^5.2.0 bs58: ^4.0.1 @@ -166,15 +166,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/helium-sub-daos-sdk@^0.9.9": +"@helium/helium-sub-daos-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/helium-sub-daos-sdk@workspace:packages/helium-sub-daos-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/treasury-management-sdk": ^0.9.9 - "@helium/voter-stake-registry-sdk": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/treasury-management-sdk": ^0.9.10 + "@helium/voter-stake-registry-sdk": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -184,7 +184,7 @@ __metadata: languageName: unknown linkType: soft -"@helium/idls@^0.9.9": +"@helium/idls@^0.9.10": version: 0.0.0-use.local resolution: "@helium/idls@workspace:packages/idls" dependencies: @@ -233,7 +233,7 @@ __metadata: languageName: node linkType: hard -"@helium/no-emit-sdk@^0.9.9": +"@helium/no-emit-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/no-emit-sdk@workspace:packages/no-emit-sdk" dependencies: @@ -249,14 +249,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/spl-utils@^0.9.9": +"@helium/spl-utils@^0.9.10": version: 0.0.0-use.local resolution: "@helium/spl-utils@workspace:packages/spl-utils" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/account-fetch-cache": ^0.9.9 + "@helium/account-fetch-cache": ^0.9.10 "@helium/address": ^4.10.2 - "@helium/anchor-resolvers": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-account-compression": ^0.1.7 "@solana/spl-token": ^0.3.8 @@ -271,14 +271,14 @@ __metadata: languageName: unknown linkType: soft -"@helium/treasury-management-sdk@^0.9.9": +"@helium/treasury-management-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/treasury-management-sdk@workspace:packages/treasury-management-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/circuit-breaker-sdk": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/circuit-breaker-sdk": ^0.9.10 + "@helium/idls": ^0.9.10 bn.js: ^5.2.0 bs58: ^4.0.1 git-format-staged: ^2.1.3 @@ -288,15 +288,15 @@ __metadata: languageName: unknown linkType: soft -"@helium/voter-stake-registry-sdk@^0.9.9": +"@helium/voter-stake-registry-sdk@^0.9.10": version: 0.0.0-use.local resolution: "@helium/voter-stake-registry-sdk@workspace:packages/voter-stake-registry-sdk" dependencies: "@coral-xyz/anchor": ^0.28.0 - "@helium/anchor-resolvers": ^0.9.9 - "@helium/idls": ^0.9.9 + "@helium/anchor-resolvers": ^0.9.10 + "@helium/idls": ^0.9.10 "@helium/nft-proxy-sdk": ^0.0.12 - "@helium/spl-utils": ^0.9.9 + "@helium/spl-utils": ^0.9.10 "@metaplex-foundation/mpl-token-metadata": ^2.10.0 "@solana/spl-token": ^0.3.8 bn.js: ^5.2.0 diff --git a/packages/helium-react-hooks/CHANGELOG.md b/packages/helium-react-hooks/CHANGELOG.md index 922c06ca6..dea5d96af 100644 --- a/packages/helium-react-hooks/CHANGELOG.md +++ b/packages/helium-react-hooks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.10](https://github.com/helium/helium-program-libary/compare/v0.9.8...v0.9.10) (2024-10-28) + +**Note:** Version bump only for package @helium/helium-react-hooks + + + + + ## [0.9.9](https://github.com/helium/helium-program-libary/compare/v0.9.2...v0.9.9) (2024-10-28) **Note:** Version bump only for package @helium/helium-react-hooks diff --git a/packages/helium-react-hooks/package.json b/packages/helium-react-hooks/package.json index 8bae4daf6..f78e52363 100644 --- a/packages/helium-react-hooks/package.json +++ b/packages/helium-react-hooks/package.json @@ -5,7 +5,7 @@ "registry": "https://registry.npmjs.org/" }, "license": "Apache-2.0", - "version": "0.9.9", + "version": "0.9.10", "description": "React hooks for helium", "repository": { "type": "git", @@ -32,8 +32,8 @@ }, "dependencies": { "@coral-xyz/anchor": "^0.28.0", - "@helium/account-fetch-cache": "^0.9.9", - "@helium/account-fetch-cache-hooks": "^0.9.9", + "@helium/account-fetch-cache": "^0.9.10", + "@helium/account-fetch-cache-hooks": "^0.9.10", "@solana/spl-token": "^0.3.8", "@solana/web3.js": "^1.78.8", "bs58": "^4.0.1", diff --git a/packages/helium-react-hooks/src/hooks/useAnchorAccount.ts b/packages/helium-react-hooks/src/hooks/useAnchorAccount.ts index 675510ee0..cc89316da 100644 --- a/packages/helium-react-hooks/src/hooks/useAnchorAccount.ts +++ b/packages/helium-react-hooks/src/hooks/useAnchorAccount.ts @@ -20,7 +20,7 @@ export function useAnchorAccount Date: Mon, 28 Oct 2024 14:04:51 -0700 Subject: [PATCH 12/15] Temp remove check to fix devnet --- packages/crons/src/end-epoch.ts | 2 ++ .../src/instructions/reward_for_epoch_v0.rs | 1 + programs/position-voting-rewards/src/state.rs | 22 +++++++++---------- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/packages/crons/src/end-epoch.ts b/packages/crons/src/end-epoch.ts index 57a63fdb4..3e41d78df 100644 --- a/packages/crons/src/end-epoch.ts +++ b/packages/crons/src/end-epoch.ts @@ -197,6 +197,8 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { ); const vsrEpochInfo = await pvrProgram.account.vsrEpochInfoV0.fetchNullable(vsrEpoch); + const vetokenTracker = await pvrProgram.account.veTokenTrackerV0.fetch(subDao.account.vetokenTracker); + console.log("ve", vetokenTracker.vetokenLastCalculatedTs.toNumber(), targetTs.toNumber()); if (!vsrEpochInfo || !vsrEpochInfo.rewardsIssuedAt) { try { await sendInstructionsWithPriorityFee( diff --git a/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs b/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs index 2dc9d9b8b..1842c71c4 100644 --- a/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs +++ b/programs/position-voting-rewards/src/instructions/reward_for_epoch_v0.rs @@ -21,6 +21,7 @@ pub struct RewardForEpochV0<'info> { #[account(mut)] pub rent_payer: Signer<'info>, #[account( + mut, has_one = rewards_authority, has_one = rewards_mint, has_one = registrar, diff --git a/programs/position-voting-rewards/src/state.rs b/programs/position-voting-rewards/src/state.rs index f8861f7c9..4bff3ff65 100644 --- a/programs/position-voting-rewards/src/state.rs +++ b/programs/position-voting-rewards/src/state.rs @@ -215,17 +215,17 @@ impl VeTokenTrackerV0 { ); // If last calculated was more than an epoch ago - let epoch_start = curr_epoch_info.start_ts(); - if epoch_start - .checked_sub(self.vetoken_last_calculated_ts) - .unwrap() - > EPOCH_LENGTH - && !TESTING - // Allow this check to be bypassed when testing so we can run - // checks against this method without having to update _every_ epoch - { - return Err(error!(ErrorCode::MustCalculateVehntLinearly)); - } + // let epoch_start = curr_epoch_info.start_ts(); + // if epoch_start + // .checked_sub(self.vetoken_last_calculated_ts) + // .unwrap() + // > EPOCH_LENGTH + // && !TESTING + // // Allow this check to be bypassed when testing so we can run + // // checks against this method without having to update _every_ epoch + // { + // return Err(error!(ErrorCode::MustCalculateVehntLinearly)); + // } // Step 1. Update veHNT up to the point that this epoch starts if epoch_start > self.vetoken_last_calculated_ts { From 3b7f37d9932f6208c41b65509ae4ba061a35d962 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 14:08:07 -0700 Subject: [PATCH 13/15] f --- programs/position-voting-rewards/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/position-voting-rewards/src/state.rs b/programs/position-voting-rewards/src/state.rs index 4bff3ff65..898e245a4 100644 --- a/programs/position-voting-rewards/src/state.rs +++ b/programs/position-voting-rewards/src/state.rs @@ -215,7 +215,7 @@ impl VeTokenTrackerV0 { ); // If last calculated was more than an epoch ago - // let epoch_start = curr_epoch_info.start_ts(); + let epoch_start = curr_epoch_info.start_ts(); // if epoch_start // .checked_sub(self.vetoken_last_calculated_ts) // .unwrap() From 9c6d6dfd5a016535efa5b112f1c1e343c8612e80 Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 14:23:07 -0700 Subject: [PATCH 14/15] Fix missing mut --- .../helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs index 8605e2598..d6c964d27 100644 --- a/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs +++ b/programs/helium-sub-daos/src/instructions/issue_voting_rewards_v0.rs @@ -35,6 +35,7 @@ pub struct IssueVotingRewardsV0<'info> { #[account(mut)] pub rent_payer: Signer<'info>, #[account( + mut, has_one = rewards_mint, has_one = registrar, )] From e5d35e70f21ef341ff067e69aae58f7c1862e84e Mon Sep 17 00:00:00 2001 From: Noah Prince Date: Mon, 28 Oct 2024 14:41:27 -0700 Subject: [PATCH 15/15] re enable check --- packages/crons/src/end-epoch.ts | 2 -- programs/position-voting-rewards/src/state.rs | 20 +++++++++---------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/packages/crons/src/end-epoch.ts b/packages/crons/src/end-epoch.ts index 3e41d78df..57a63fdb4 100644 --- a/packages/crons/src/end-epoch.ts +++ b/packages/crons/src/end-epoch.ts @@ -197,8 +197,6 @@ async function getSolanaUnixTimestamp(connection: Connection): Promise { ); const vsrEpochInfo = await pvrProgram.account.vsrEpochInfoV0.fetchNullable(vsrEpoch); - const vetokenTracker = await pvrProgram.account.veTokenTrackerV0.fetch(subDao.account.vetokenTracker); - console.log("ve", vetokenTracker.vetokenLastCalculatedTs.toNumber(), targetTs.toNumber()); if (!vsrEpochInfo || !vsrEpochInfo.rewardsIssuedAt) { try { await sendInstructionsWithPriorityFee( diff --git a/programs/position-voting-rewards/src/state.rs b/programs/position-voting-rewards/src/state.rs index 898e245a4..f8861f7c9 100644 --- a/programs/position-voting-rewards/src/state.rs +++ b/programs/position-voting-rewards/src/state.rs @@ -216,16 +216,16 @@ impl VeTokenTrackerV0 { // If last calculated was more than an epoch ago let epoch_start = curr_epoch_info.start_ts(); - // if epoch_start - // .checked_sub(self.vetoken_last_calculated_ts) - // .unwrap() - // > EPOCH_LENGTH - // && !TESTING - // // Allow this check to be bypassed when testing so we can run - // // checks against this method without having to update _every_ epoch - // { - // return Err(error!(ErrorCode::MustCalculateVehntLinearly)); - // } + if epoch_start + .checked_sub(self.vetoken_last_calculated_ts) + .unwrap() + > EPOCH_LENGTH + && !TESTING + // Allow this check to be bypassed when testing so we can run + // checks against this method without having to update _every_ epoch + { + return Err(error!(ErrorCode::MustCalculateVehntLinearly)); + } // Step 1. Update veHNT up to the point that this epoch starts if epoch_start > self.vetoken_last_calculated_ts {