-
Notifications
You must be signed in to change notification settings - Fork 11.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add object type to object info response #1556
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mind updating
sui/sdk/typescript/src/types/objects.ts
Lines 12 to 15 in 62d08e8
export type ObjectExistsInfo = { | |
objectRef: ObjectRef, | |
object: any, | |
}; |
Given that this goes to the wire, should we use enum instead of a string? |
46c097c
to
4522f0c
Compare
@666lcz I don't really know typescript, can you check if the changes looks ok? |
@666lcz does this PR looks ok to you? |
Added object type to object info response for
sui_getObjectTypedInfo
endpoint.