sharedObjectRef method

Map<String, dynamic> sharedObjectRef(
  1. SuiObject 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(SuiObject args) {
	return object(Inputs.sharedObjectRef(args));
}