Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
82762c9
feat: Use Version struct over type def (#521)
DaughterOfMars Jan 23, 2026
dd20774
feat(types): enhance Address with system package constants and method…
DaughterOfMars Jan 28, 2026
a674abb
feat(types): enhance ObjectId with system constants and methods (#540)
DaughterOfMars Feb 2, 2026
58c71b2
feat(iota-sdk-types): derive AddAssign and SubAssign for GasCostSumma…
Thoralf-M Feb 2, 2026
f334c99
feat(types): enhance Digest with additional methods and constants (#551)
DaughterOfMars Feb 3, 2026
900622a
feat: ObjectReference changes for monorepo (#522)
thibault-martinez Feb 3, 2026
9440a6f
chore!: remove `BalanceChange` type (#563)
Alex6323 Feb 12, 2026
6a58d63
feat(types): enhance Identifier, TypeTag and StructTag (#556)
DaughterOfMars Feb 13, 2026
890292f
feat(iota-sdk-types): derive Hash for Event and TransactionEvents (#555)
Thoralf-M Feb 16, 2026
5dad3a8
fix(types): Remove space from StructTag canonical string (#966)
DaughterOfMars Feb 17, 2026
787c887
feat: more ObjectRef changes (#557)
thibault-martinez Feb 17, 2026
3553800
feat: `RandomnessStateUpdate` improvements (#594)
DaughterOfMars Feb 18, 2026
7153d2f
feat: `Owner` improvements (#581)
DaughterOfMars Feb 19, 2026
8f210b8
feat: improvements to Argument (#967)
thibault-martinez Feb 19, 2026
e6072ed
fix(types): Feature gate the `RandomnessRound::signature_message` fn …
DaughterOfMars Feb 20, 2026
b6a2e1c
feat: ExecutionStatus changes for monorepo (#558)
thibault-martinez Feb 24, 2026
ae7d9dc
feat: Update `AuthenticatorStateUpdateV1` for core (#977)
DaughterOfMars Feb 26, 2026
16a1ea9
feat: MovePackage changes (#973)
thibault-martinez Feb 26, 2026
cd95ef7
feat(iota-sdk-types): add Input consts and methods (#595)
Thoralf-M Mar 2, 2026
2ba65c8
feat(iota-sdk-types): EndOfEpochTransactionKind changes (#980)
Thoralf-M Mar 4, 2026
73041a5
feat: `TransactionExpiration` improvements (#998)
DaughterOfMars Mar 5, 2026
e8a5fad
feat: `GasPayment` improvements (#995)
thibault-martinez Mar 5, 2026
824f1f1
Remove AUTHENTICATOR_STATE_MUTABLE constant from Input (#1010)
Copilot Mar 6, 2026
8785a31
feat(types): Skip validation of identifiers in `MoveCall` for BCS (#1…
DaughterOfMars Mar 9, 2026
469a42b
feat: update `ConsensusCommitPrologueV1` (#983)
Alex6323 Mar 17, 2026
64927ea
feat(iota-sdk-types): add MoveObjectType (#1037)
Thoralf-M Mar 24, 2026
3139ca1
fix(types): Rename `BinaryEndOfEpochTransactionKindRef` for serde (#1…
DaughterOfMars Mar 24, 2026
07b11c2
feat: Command improvements (#968)
thibault-martinez Mar 26, 2026
b61af29
fix: feature gate error and warnings (#1044)
Alex6323 Mar 27, 2026
9dfa55e
feat: MoveStruct improvements (#1034)
thibault-martinez Mar 27, 2026
b7febdd
feat(iota-sdk-types): ProgrammableTransaction changes (#996)
Thoralf-M Mar 27, 2026
abae8a7
feat: `ObjectData` improvements (#1045)
thibault-martinez Mar 29, 2026
e72aae8
feat: `GenesisObject` improvements (#1047)
thibault-martinez Mar 30, 2026
e00d5b2
feat: `GenesisTransaction` improvements (#1048)
thibault-martinez Mar 30, 2026
20ee310
feat: update `TransactionKind` for monorepo replacement (#1049)
Alex6323 Apr 1, 2026
5ac8b46
chore: utils module containing write_sep (#1053)
thibault-martinez Apr 3, 2026
e90a7a1
feat: `CheckpointCommitment` changes
thibault-martinez Apr 7, 2026
3c469c9
UnchangedSharedKind fix
thibault-martinez Apr 7, 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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ derive_more = "2.0"
eyre = "0.6"
futures = "0.3.29"
hex = "0.4.3"
insta = "1.42"
itertools = "0.13.0"
paste = "1.0.15"
primitive-types = { version = "0.14", features = ["impl-serde"] }
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ kotlin: ## Build Kotlin bindings
@$(build_binding) \
cargo run --bin uniffi-bindgen -- generate --library "target/release/libiota_sdk_ffi$${LIB_EXT}" --language kotlin --out-dir bindings/kotlin/lib --no-format -c bindings/kotlin/uniffi.toml || exit $$?; \
cp target/release/libiota_sdk_ffi$${LIB_EXT} bindings/kotlin/lib/
@python3 bindings/kotlin/split_uniffi_interface.py --batch-size 500 || exit $$?
@python3 bindings/kotlin/split_uniffi_interface.py --batch-size 1000 || exit $$?
@mv bindings/kotlin/lib/iota_sdk/iota_sdk_ffi.kt bindings/kotlin/lib/iota_sdk/iota_sdk.kt

.PHONY: python
Expand Down
3,810 changes: 3,503 additions & 307 deletions bindings/go/iota_sdk/iota_sdk.go

Large diffs are not rendered by default.

2,155 changes: 2,071 additions & 84 deletions bindings/go/iota_sdk/iota_sdk.h

Large diffs are not rendered by default.

Loading
Loading