sharedObjectRef method

Map<String, dynamic> sharedObjectRef(
  1. SharedObjectRef args
)

Add a new shared object input to the transaction using the fully-resolved shared object reference. If you only have an object ID, use builder.object(id) instead.

Implementation

Map<String, dynamic> sharedObjectRef(SharedObjectRef args) {
  return object(Inputs.sharedObjectRef(args));
}