Module 0x2::package
Functions for operating on Move packages from within Move:
-
Creating proof-of-publish objects from one-time witnesses
-
Administering package upgrades through upgrade policies.
use 0x1::ascii;
use 0x1::type_name;
use 0x2::object;
use 0x2::transfer;
use 0x2::tx_context;
use 0x2::types;
Resource Publisher
This type can only be created in the transaction that generates a module, by consuming its one-time witness, so it can be used to identify the address that published the package a type originated from.
struct Publisher has store, key
Fields
id: object::UID
package: ascii::String
module_name: ascii::String
Resource UpgradeCap
Capability controlling the ability to upgrade a package.
struct UpgradeCap has store, key
Fields
id: object::UID
package: object::ID
(Mutable) ID of the package that can be upgraded.
version: u64
(Mutable) The number of upgrades that have been applied successively to the original package. Initially 0.
policy: u8
What kind of upgrades are allowed.
Struct UpgradeTicket
Permission to perform a particular upgrade (for a fixed version of the package, bytecode to upgrade with and transitive dependencies to depend against).
An UpgradeCap
can only issue one ticket at a time, to prevent races
between concurrent updates or a change in its upgrade policy after
issuing a ticket, so the ticket is a "Hot Potato" to preserve forward
progress.
structUpgradeTicket
Fields
cap: object::ID
(Immutable) ID of the
UpgradeCap
this originated from.package: object::ID
(Immutable) ID of the package that can be upgraded.
policy: u8
(Immutable) The policy regarding what kind of upgrade this ticket permits.
digest: vector<u8>
(Immutable) SHA256 digest of the bytecode and transitive dependencies that will be used in the upgrade.