Appends the given value to the existing value associated with the given key of the specified address.
value
key
address
Can only be called at smart contract generation time by the parent smart contract to the child's address.
string
StaticArray<u8>
Args
Can be either string, Args, or StaticArray<u8>.
The child smart contract address.
The key whose data the value will be appended to.
The data that will be appended to the existing data associated with the key.
Generated using TypeDoc
Appends the given
value
to the existing value associated with the givenkey
of the specifiedaddress
.Remarks
Can only be called at smart contract generation time by the parent smart contract to the child's address.
Throws
key
does not exist in the datastore.address
does not existkey
andvalue
type are neitherstring
,StaticArray<u8>
, orArgs
.