Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ade9736
Update Move.lock and audit_trail.move for version consistency and dep…
itsyaasir Mar 11, 2026
cd62491
feat: record tags
itsyaasir Mar 11, 2026
d761da1
Refactor record tag management in audit trail
itsyaasir Mar 16, 2026
859ecba
chore: clean up audit tags
itsyaasir Mar 16, 2026
7c20e14
Merge branch 'feat/audit-trails-dev' into feat/record-tags
itsyaasir Mar 17, 2026
8dbe1d4
fix record tag sdk wiring and clippy issues
itsyaasir Mar 18, 2026
186e1c3
chore: fix fmt issues
itsyaasir Mar 18, 2026
d083df8
chore: allow unused tag deletion
itsyaasir Mar 18, 2026
2c7e564
chore: fix records tags, refactor and cleanup code
itsyaasir Mar 18, 2026
43c497e
Merge branch 'feat/audit-trails-dev' into feat/record-tags
itsyaasir Mar 18, 2026
261a68a
chore: type import fixes
itsyaasir Mar 18, 2026
97174f1
chore: add initial record refactor
itsyaasir Mar 19, 2026
fafd749
Several renamings in `record_tags.move` (#223)
chrisgitiota Mar 19, 2026
e3c7a75
Merge branch 'feat/audit-trails-dev' into feat/record-tags
chrisgitiota Mar 19, 2026
0437f1a
First part of needed changes to use the latest record_tags.move version
chrisgitiota Mar 19, 2026
7e9f4bf
Move sources are compilable now - some of the tests are failing though
chrisgitiota Mar 20, 2026
8b8db89
Fixed issue "is_in_use() is inverted" and removed several warnings
chrisgitiota Mar 23, 2026
49817ae
Renamed fun args `record_tags` to `role_tags` for `create_role` and `…
chrisgitiota Mar 23, 2026
ce40f72
Merge pull request #228 from iotaledger/feat/record-tags-using-latest…
itsyaasir Mar 24, 2026
b81d8a3
Update audit-trail-move/sources/audit_trail.move
itsyaasir Mar 24, 2026
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
10 changes: 5 additions & 5 deletions audit-trail-move/Move.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[move]
version = 3
manifest_digest = "BBDC635C3E5B1F977F4F12056411AADB62CD398CFCA75919B69BE3414CFC8393"
manifest_digest = "E922E01581B08538BED02DDE9B7C6990033C8BA3626329255269DCBDFD34AD21"
deps_digest = "397E6A9F7A624706DBDFEE056CE88391A15876868FD18A88504DA74EB458D697"
dependencies = [
{ id = "Iota", name = "Iota" },
Expand Down Expand Up @@ -44,7 +44,7 @@ dependencies = [

[[move.package]]
id = "TfComponents"
source = { git = "https://github.com/iotaledger/product-core.git", rev = "feat/tf-compoenents-dev", subdir = "components_move" }
source = { local = "../../product-core/components_move" }

dependencies = [
{ id = "Iota", name = "Iota" },
Expand All @@ -61,7 +61,7 @@ flavor = "iota"
[env]

[env.localnet]
chain-id = "426effa0"
original-published-id = "0x4644007b931d759798353f3a1f631f690658f04e3111d8438d211033d35fdd34"
latest-published-id = "0x4644007b931d759798353f3a1f631f690658f04e3111d8438d211033d35fdd34"
chain-id = "26d62e2d"
original-published-id = "0x0883d101ae2e858f1f391ecd44a0ebbfce10d1fb08ba3746c142acff062e42c5"
latest-published-id = "0x0883d101ae2e858f1f391ecd44a0ebbfce10d1fb08ba3746c142acff062e42c5"
published-version = "1"
3 changes: 2 additions & 1 deletion audit-trail-move/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name = "audit_trail"
edition = "2024.beta"

[dependencies]
TfComponents = { git = "https://github.com/iotaledger/product-core.git", subdir = "components_move", rev = "feat/tf-compoenents-dev" }
# TODO: Use git tag
TfComponents = { local = "../../product-core/components_move" }

[addresses]
audit_trail = "0x0"
2 changes: 1 addition & 1 deletion audit-trail-move/scripts/publish_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
script_dir=$(cd "$(dirname $0)" && pwd)
package_dir=$script_dir/..

RESPONSE=$(iota client publish --silence-warnings --json --gas-budget 500000000 $package_dir)
RESPONSE=$(iota client publish --silence-warnings --json --gas-budget 500000000 $package_dir)
{ # try
PACKAGE_ID=$(echo $RESPONSE | jq --raw-output '.objectChanges[] | select(.type | contains("published")) | .packageId')
} || { # catch
Expand Down
Loading
Loading