Skip to content
Open

HIP-150 #1245

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 23 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 13 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ anyhow = { version = "1", features = ["backtrace"] }
async-stream = "0.3"
async-trait = "*"
base64 = ">=0.21"
# Must stay semver-compatible with the `bigdecimal` that `trino-rust-client`
# depends on: `IcebergDecimal` inspects the `BigDecimal` inside a
# `trino_rust_client::types::Decimal`, so a major-version split would be two
# incompatible types. Cargo unifies them today; a mismatch is a compile error,
# not a silent one.
bigdecimal = "0.4"
bincode = "1"
blake3 = "*"
bs58 = { version = "0.5.1", features = ["check"] }
Expand Down Expand Up @@ -168,6 +174,10 @@ anchor-lang = { git = "https://github.com/madninja/anchor.git", branch = "madnin
# beacon = { path = "../proto/beacon" }

[patch.'https://github.com/helium/proto']
# helium-proto = { git = "https://www.github.com/helium/proto.git", branch = "gateway-info-v4" }
# beacon = { git = "https://www.github.com/helium/proto.git", branch = "gateway-info-v4" }
# msg-signature = { git = "https://www.github.com/helium/proto.git", branch = "gateway-info-v4" }
# HIP-150: the data transfer multiplier ticket messages live on proto's
# mj/hip-150 (helium/proto#483) and are not on master yet.
# REVERT BEFORE MERGING mj/hip-150 TO main — a feature-branch patch must not
# reach main. Tracked on the pre-deploy checklist.
helium-proto = { git = "https://www.github.com/helium/proto.git", branch = "mj/hip-150" }
beacon = { git = "https://www.github.com/helium/proto.git", branch = "mj/hip-150" }
msg-signature = { git = "https://www.github.com/helium/proto.git", branch = "mj/hip-150" }
2 changes: 2 additions & 0 deletions file_store_oracles/src/file_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,7 @@ make_string_mapped_enum! {
EntityOwnershipChangeReport => "entity_ownership_change_report",
EntityRewardDestinationChangeReport => "entity_reward_destination_change_report",
EnabledCarriersInfoReport => "enabled_carriers_report",
DataTransferMultiplierTicketIngestReport => "data_transfer_multiplier_ticket_ingest_report",
VerifiedDataTransferMultiplierTicketReport => "verified_data_transfer_multiplier_ticket_report",
}
}
Loading
Loading