Reading Resource Data with borrow_global
borrow_global allows you to read an existing resource struct from a specific address without needing a signer, but the function must declare that it accesses the resource using acquires ResourceName.
borrow_global
: read an existing resource struct
borrow_global
: read an existing resource structWe just need to call borrow_global
with the right resource type and address. The address can be passed into the function as an argument or referred to specifically with @ such as @0xcafe
. A signer is not required here. If the resource is not found at the address, the function will error when the code is run on the blockchain. The function that calls borrow_global
also needs to declare that it does so by adding “acquires ResourceName
” at the end.
Let’s write a new function named get_Gendna_digits that returns the Gendna_digits field of the DinosaurGendna resource stored at 0xcafe:
Last updated