sui_sdk_types/transaction/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
use super::Address;
use super::CheckpointTimestamp;
use super::ConsensusCommitDigest;
use super::EpochId;
use super::GenesisObject;
use super::Identifier;
use super::Jwk;
use super::JwkId;
use super::ObjectId;
use super::ObjectReference;
use super::ProtocolVersion;
use super::TransactionDigest;
use super::TypeTag;
use super::UserSignature;
use super::Version;
#[cfg(feature = "serde")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "serde")))]
mod serialization;
#[cfg(feature = "serde")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "serde")))]
pub(crate) use serialization::SignedTransactionWithIntentMessage;
/// A transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// transaction = %x00 transaction-v1
///
/// transaction-v1 = transaction-kind address gas-payment transaction-expiration
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct Transaction {
pub kind: TransactionKind,
pub sender: Address,
pub gas_payment: GasPayment,
pub expiration: TransactionExpiration,
}
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct SignedTransaction {
pub transaction: Transaction,
pub signatures: Vec<UserSignature>,
}
/// A TTL for a transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// transaction-expiration = %x00 ; none
/// =/ %x01 u64 ; epoch
/// ```
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum TransactionExpiration {
/// The transaction has no expiration
#[default]
None,
/// Validators wont sign a transaction unless the expiration Epoch
/// is greater than or equal to the current epoch
Epoch(EpochId),
}
/// Payment information for executing a transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// gas-payment = (vector object-ref) ; gas coin objects
/// address ; owner
/// u64 ; price
/// u64 ; budget
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct GasPayment {
pub objects: Vec<ObjectReference>,
/// Owner of the gas objects, either the transaction sender or a sponsor
pub owner: Address,
/// Gas unit price to use when charging for computation
///
/// Must be greater-than-or-equal-to the network's current RGP (reference gas price)
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub price: u64,
/// Total budget willing to spend for the execution of a transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub budget: u64,
}
/// Randomness update
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// randomness-state-update = u64 u64 bytes u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct RandomnessStateUpdate {
/// Epoch of the randomness state update transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
/// Randomness round of the update
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub randomness_round: u64,
/// Updated random bytes
#[cfg_attr(
feature = "serde",
serde(with = "crate::_serde::ReadableBase64Encoded")
)]
pub random_bytes: Vec<u8>,
/// The initial version of the randomness object that it was shared at.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub randomness_obj_initial_shared_version: u64,
}
/// Transaction type
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// transaction-kind = %x00 ptb
/// =/ %x01 change-epoch
/// =/ %x02 genesis-transaction
/// =/ %x03 consensus-commit-prologue
/// =/ %x04 authenticator-state-update
/// =/ %x05 (vector end-of-epoch-transaction-kind)
/// =/ %x06 randomness-state-update
/// =/ %x07 consensus-commit-prologue-v2
/// =/ %x08 consensus-commit-prologue-v3
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum TransactionKind {
/// A user transaction comprised of a list of native commands and move calls
ProgrammableTransaction(ProgrammableTransaction),
/// System transaction used to end an epoch.
///
/// The ChangeEpoch variant is now deprecated (but the ChangeEpoch struct is still used by
/// EndOfEpochTransaction below).
ChangeEpoch(ChangeEpoch),
/// Transaction used to initialize the chain state.
///
/// Only valid if in the genesis checkpoint (0) and if this is the very first transaction ever
/// executed on the chain.
Genesis(GenesisTransaction),
/// V1 consensus commit update
ConsensusCommitPrologue(ConsensusCommitPrologue),
/// Update set of valid JWKs used for zklogin
AuthenticatorStateUpdate(AuthenticatorStateUpdate),
/// Set of operations to run at the end of the epoch to close out the current epoch and start
/// the next one.
EndOfEpoch(Vec<EndOfEpochTransactionKind>),
/// Randomness update
RandomnessStateUpdate(RandomnessStateUpdate),
/// V2 consensus commit update
ConsensusCommitPrologueV2(ConsensusCommitPrologueV2),
/// V3 consensus commit update
ConsensusCommitPrologueV3(ConsensusCommitPrologueV3),
}
/// Operation run at the end of an epoch
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// end-of-epoch-transaction-kind = eoe-change-epoch
/// =/ eoe-authenticator-state-create
/// =/ eoe-authenticator-state-expire
/// =/ eoe-randomness-state-create
/// =/ eoe-deny-list-state-create
/// =/ eoe-bridge-state-create
/// =/ eoe-bridge-committee-init
///
/// eoe-change-epoch = %x00 change-epoch
/// eoe-authenticator-state-create = %x01
/// eoe-authenticator-state-expire = %x02 authenticator-state-expire
/// eoe-randomness-state-create = %x03
/// eoe-deny-list-state-create = %x04
/// eoe-bridge-state-create = %x05 digest
/// eoe-bridge-committee-init = %x06 u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum EndOfEpochTransactionKind {
/// End the epoch and start the next one
ChangeEpoch(ChangeEpoch),
/// Create and initialize the authenticator object used for zklogin
AuthenticatorStateCreate,
/// Expire JWKs used for zklogin
AuthenticatorStateExpire(AuthenticatorStateExpire),
/// Create and initialize the randomness object
RandomnessStateCreate,
/// Create and initialize the deny list object
DenyListStateCreate,
/// Create and initialize the bridge object
BridgeStateCreate { chain_id: super::CheckpointDigest },
/// Initialize the bridge committee
BridgeCommitteeInit { bridge_object_version: u64 },
}
/// Expire old JWKs
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// authenticator-state-expire = u64 u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct AuthenticatorStateExpire {
/// expire JWKs that have a lower epoch than this
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub min_epoch: u64,
/// The initial version of the authenticator object that it was shared at.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub authenticator_object_initial_shared_version: u64,
}
/// Update the set of valid JWKs
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// authenticator-state-update = u64 ; epoch
/// u64 ; round
/// (vector active-jwk)
/// u64 ; initial version of the authenticator object
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct AuthenticatorStateUpdate {
/// Epoch of the authenticator state update transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
/// Consensus round of the authenticator state update
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub round: u64,
/// newly active jwks
pub new_active_jwks: Vec<ActiveJwk>,
/// The initial version of the authenticator object that it was shared at.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub authenticator_obj_initial_shared_version: u64,
}
/// A new Jwk
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// active-jwk = jwk-id jwk u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ActiveJwk {
/// Identifier used to uniquely identify a Jwk
pub jwk_id: JwkId,
/// The Jwk
pub jwk: Jwk,
/// Most recent epoch in which the jwk was validated
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
}
/// V1 of the consensus commit prologue system transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// consensus-commit-prologue = u64 u64 u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ConsensusCommitPrologue {
/// Epoch of the commit prologue transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
/// Consensus round of the commit
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub round: u64,
/// Unix timestamp from consensus
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub commit_timestamp_ms: CheckpointTimestamp,
}
/// V2 of the consensus commit prologue system transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// consensus-commit-prologue-v2 = u64 u64 u64 digest
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ConsensusCommitPrologueV2 {
/// Epoch of the commit prologue transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
/// Consensus round of the commit
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub round: u64,
/// Unix timestamp from consensus
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub commit_timestamp_ms: CheckpointTimestamp,
/// Digest of consensus output
pub consensus_commit_digest: ConsensusCommitDigest,
}
/// Version assignments performed by consensus
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// consensus-determined-version-assignments = cancelled-transactions
///
/// cancelled-transactions = %x00 (vector cancelled-transaction)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum ConsensusDeterminedVersionAssignments {
/// Cancelled transaction version assignment.
CancelledTransactions {
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
cancelled_transactions: Vec<CancelledTransaction>,
},
}
/// A transaction that was cancelled
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// cancelled-transaction = digest (vector version-assignment)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct CancelledTransaction {
pub digest: TransactionDigest,
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub version_assignments: Vec<VersionAssignment>,
}
/// Object version assignment from consensus
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// version-assignment = object-id u64
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct VersionAssignment {
pub object_id: ObjectId,
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub version: Version,
}
/// V3 of the consensus commit prologue system transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// consensus-commit-prologue-v3 = u64 u64 (option u64) u64 digest
/// consensus-determined-version-assignments
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ConsensusCommitPrologueV3 {
/// Epoch of the commit prologue transaction
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: u64,
/// Consensus round of the commit
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub round: u64,
/// The sub DAG index of the consensus commit. This field will be populated if there
/// are multiple consensus commits per round.
#[cfg_attr(
feature = "serde",
serde(with = "crate::_serde::OptionReadableDisplay")
)]
pub sub_dag_index: Option<u64>,
/// Unix timestamp from consensus
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub commit_timestamp_ms: CheckpointTimestamp,
/// Digest of consensus output
pub consensus_commit_digest: ConsensusCommitDigest,
/// Stores consensus handler determined shared object version assignments.
pub consensus_determined_version_assignments: ConsensusDeterminedVersionAssignments,
}
/// System transaction used to change the epoch
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// change-epoch = u64 ; next epoch
/// u64 ; protocol version
/// u64 ; storage charge
/// u64 ; computation charge
/// u64 ; storage rebate
/// u64 ; non-refundable storage fee
/// u64 ; epoch start timestamp
/// (vector system-package)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ChangeEpoch {
/// The next (to become) epoch ID.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch: EpochId,
/// The protocol version in effect in the new epoch.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub protocol_version: ProtocolVersion,
/// The total amount of gas charged for storage during the epoch.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub storage_charge: u64,
/// The total amount of gas charged for computation during the epoch.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub computation_charge: u64,
/// The amount of storage rebate refunded to the txn senders.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub storage_rebate: u64,
/// The non-refundable storage fee.
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub non_refundable_storage_fee: u64,
/// Unix timestamp when epoch started
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub epoch_start_timestamp_ms: u64,
/// System packages (specifically framework and move stdlib) that are written before the new
/// epoch starts. This tracks framework upgrades on chain. When executing the ChangeEpoch txn,
/// the validator must write out the modules below. Modules are provided with the version they
/// will be upgraded to, their modules in serialized form (which include their package ID), and
/// a list of their transitive dependencies.
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub system_packages: Vec<SystemPackage>,
}
/// System package
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// system-package = u64 ; version
/// (vector bytes) ; modules
/// (vector object-id) ; dependencies
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct SystemPackage {
#[cfg_attr(feature = "serde", serde(with = "crate::_serde::ReadableDisplay"))]
pub version: Version,
#[cfg_attr(
feature = "serde",
serde(
with = "::serde_with::As::<Vec<::serde_with::IfIsHumanReadable<crate::_serde::Base64Encoded, ::serde_with::Bytes>>>"
)
)]
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub modules: Vec<Vec<u8>>,
pub dependencies: Vec<ObjectId>,
}
/// The genesis transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// genesis-transaction = (vector genesis-object)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct GenesisTransaction {
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub objects: Vec<GenesisObject>,
}
/// A user transaction
///
/// Contains a series of native commands and move calls where the results of one command can be
/// used in future commands.
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// ptb = (vector input) (vector command)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct ProgrammableTransaction {
/// Input objects or primitive values
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=10).lift()))]
pub inputs: Vec<Input>,
/// The commands to be executed sequentially. A failure in any command will
/// result in the failure of the entire transaction.
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=10).lift()))]
pub commands: Vec<Command>,
}
/// An input to a user transaction
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// input = input-pure / input-immutable-or-owned / input-shared / input-receiving
///
/// input-pure = %x00 bytes
/// input-immutable-or-owned = %x01 object-ref
/// input-shared = %x02 object-id u64 bool
/// input-receiving = %x04 object-ref
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum Input {
/// A move value serialized as BCS.
///
/// For normal operations this is required to be a move primitive type and not contain structs
/// or objects.
Pure { value: Vec<u8> },
/// A move object that is either immutable or address owned
ImmutableOrOwned(ObjectReference),
/// A move object whose owner is "Shared"
Shared {
object_id: ObjectId,
initial_shared_version: u64,
/// Controls whether the caller asks for a mutable reference to the shared object.
mutable: bool,
},
/// A move object that is attempted to be received in this transaction.
// TODO add discussion around what receiving is
Receiving(ObjectReference),
}
/// A single command in a programmable transaction.
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// command = command-move-call
/// =/ command-transfer-objects
/// =/ command-split-coins
/// =/ command-merge-coins
/// =/ command-publish
/// =/ command-make-move-vector
/// =/ command-upgrade
///
/// command-move-call = %x00 move-call
/// command-transfer-objects = %x01 transfer-objects
/// command-split-coins = %x02 split-coins
/// command-merge-coins = %x03 merge-coins
/// command-publish = %x04 publish
/// command-make-move-vector = %x05 make-move-vector
/// command-upgrade = %x06 upgrade
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum Command {
/// A call to either an entry or a public Move function
MoveCall(MoveCall),
/// `(Vec<forall T:key+store. T>, address)`
/// It sends n-objects to the specified address. These objects must have store
/// (public transfer) and either the previous owner must be an address or the object must
/// be newly created.
TransferObjects(TransferObjects),
/// `(&mut Coin<T>, Vec<u64>)` -> `Vec<Coin<T>>`
/// It splits off some amounts into a new coins with those amounts
SplitCoins(SplitCoins),
/// `(&mut Coin<T>, Vec<Coin<T>>)`
/// It merges n-coins into the first coin
MergeCoins(MergeCoins),
/// Publishes a Move package. It takes the package bytes and a list of the package's transitive
/// dependencies to link against on-chain.
Publish(Publish),
/// `forall T: Vec<T> -> vector<T>`
/// Given n-values of the same type, it constructs a vector. For non objects or an empty vector,
/// the type tag must be specified.
MakeMoveVector(MakeMoveVector),
/// Upgrades a Move package
/// Takes (in order):
/// 1. A vector of serialized modules for the package.
/// 2. A vector of object ids for the transitive dependencies of the new package.
/// 3. The object ID of the package being upgraded.
/// 4. An argument holding the `UpgradeTicket` that must have been produced from an earlier command in the same
/// programmable transaction.
Upgrade(Upgrade),
}
/// Command to transfer ownership of a set of objects to an address
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// transfer-objects = (vector argument) argument
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct TransferObjects {
/// Set of objects to transfer
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub objects: Vec<Argument>,
/// The address to transfer ownership to
pub address: Argument,
}
/// Command to split a single coin object into multiple coins
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// split-coins = argument (vector argument)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct SplitCoins {
/// The coin to split
pub coin: Argument,
/// The amounts to split off
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub amounts: Vec<Argument>,
}
/// Command to merge multiple coins of the same type into a single coin
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// merge-coins = argument (vector argument)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct MergeCoins {
/// Coin to merge coins into
pub coin: Argument,
/// Set of coins to merge into `coin`
///
/// All listed coins must be of the same type and be the same type as `coin`
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub coins_to_merge: Vec<Argument>,
}
/// Command to publish a new move package
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// publish = (vector bytes) ; the serialized move modules
/// (vector object-id) ; the set of package dependencies
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct Publish {
/// The serialized move modules
#[cfg_attr(
feature = "serde",
serde(
with = "::serde_with::As::<Vec<::serde_with::IfIsHumanReadable<crate::_serde::Base64Encoded, ::serde_with::Bytes>>>"
)
)]
pub modules: Vec<Vec<u8>>,
/// Set of packages that the to-be published package depends on
pub dependencies: Vec<ObjectId>,
}
/// Command to build a move vector out of a set of individual elements
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// make-move-vector = (option type-tag) (vector argument)
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct MakeMoveVector {
/// Type of the individual elements
///
/// This is required to be set when the type can't be inferred, for example when the set of
/// provided arguments are all pure input values.
#[cfg_attr(feature = "serde", serde(rename = "type"))]
pub type_: Option<TypeTag>,
/// The set individual elements to build the vector with
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub elements: Vec<Argument>,
}
/// Command to upgrade an already published package
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// upgrade = (vector bytes) ; move modules
/// (vector object-id) ; dependencies
/// object-id ; package-id of the package
/// argument ; upgrade ticket
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct Upgrade {
/// The serialized move modules
#[cfg_attr(
feature = "serde",
serde(
with = "::serde_with::As::<Vec<::serde_with::IfIsHumanReadable<crate::_serde::Base64Encoded, ::serde_with::Bytes>>>"
)
)]
pub modules: Vec<Vec<u8>>,
/// Set of packages that the to-be published package depends on
pub dependencies: Vec<ObjectId>,
/// Package id of the package to upgrade
pub package: ObjectId,
/// Ticket authorizing the upgrade
pub ticket: Argument,
}
/// An argument to a programmable transaction command
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// argument = argument-gas
/// =/ argument-input
/// =/ argument-result
/// =/ argument-nested-result
///
/// argument-gas = %x00
/// argument-input = %x01 u16
/// argument-result = %x02 u16
/// argument-nested-result = %x03 u16 u16
/// ```
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub enum Argument {
/// The gas coin. The gas coin can only be used by-ref, except for with
/// `TransferObjects`, which can use it by-value.
Gas,
/// One of the input objects or primitive values (from
/// `ProgrammableTransaction` inputs)
Input(u16),
/// The result of another command (from `ProgrammableTransaction` commands)
Result(u16),
/// Like a `Result` but it accesses a nested result. Currently, the only usage
/// of this is to access a value from a Move call with multiple return values.
// (command index, subresult index)
NestedResult(u16, u16),
}
impl Argument {
/// Turn a Result into a NestedResult. If the argument is not a Result, returns None.
pub fn nested(&self, ix: u16) -> Option<Argument> {
match self {
Argument::Result(i) => Some(Argument::NestedResult(*i, ix)),
_ => None,
}
}
}
/// Command to call a move function
///
/// Functions that can be called by a `MoveCall` command are those that have a function signature
/// that is either `entry` or `public` (which don't have a reference return type).
///
/// # BCS
///
/// The BCS serialized form for this type is defined by the following ABNF:
///
/// ```text
/// move-call = object-id ; package id
/// identifier ; module name
/// identifier ; function name
/// (vector type-tag) ; type arguments, if any
/// (vector argument) ; input arguments
/// ```
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
feature = "serde",
derive(serde_derive::Serialize, serde_derive::Deserialize)
)]
#[cfg_attr(feature = "proptest", derive(test_strategy::Arbitrary))]
pub struct MoveCall {
/// The package containing the module and function.
pub package: ObjectId,
/// The specific module in the package containing the function.
pub module: Identifier,
/// The function to be called.
pub function: Identifier,
/// The type arguments to the function.
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub type_arguments: Vec<TypeTag>,
/// The arguments to the function.
#[cfg_attr(feature = "proptest", any(proptest::collection::size_range(0..=2).lift()))]
pub arguments: Vec<Argument>,
}