Dependencies
Deps
public struct Dep has copy, drop, store {
// name of the package
name: String,
// id of the package
addr: address,
// version of the package
version: u64,
}public struct Deps has copy, drop, store {
inner: vector<Dep>,
// can community extensions be added
unverified_allowed: bool,
}Extensions
VersionWitness
Last updated