Skip to main content

Type Alias: IotaCallArg

type IotaCallArg = 
| {
type: "object";
digest: string;
objectId: string;
objectType: "immOrOwnedObject";
version: string;
}
| {
type: "object";
initialSharedVersion: string;
mutable: boolean;
objectId: string;
objectType: "sharedObject";
}
| {
type: "object";
digest: string;
objectId: string;
objectType: "receiving";
version: string;
}
| {
type: "pure";
value: unknown;
valueType?: string | null;
};