Ashok Menon

Results 158 comments of Ashok Menon

Another observation from a report on Discord is that it seems to work fine if the Rust SDK is built from source, rather than pulled from crates.io, so this may...

The fix has hit `devnet` branch and I have just confirmed that it's possible to build and run examples using the Rust SDK -- thanks again for your patience everyone!

The error suggests that you are trying to call a function called `devnet_nft::transfer`, but unfortunately that doesn't exist. I looked at our source code and I couldn't find where that...

@yoursleepin, can you share some more detailed reproduction instructions? e.g. - Are you sending the transactions to devnet, or locally? - What's the version of your Sui Client, and the...

@LB6264, I am seeing the `getEvents` function in `Provider` as part of our version 0.15.0 release (it was added at this version): https://github.com/MystenLabs/sui/blob/releases/sui-v0.15.0-release/sdk/typescript/src/providers/provider.ts#L238 Can you double check that you have...

Ah, thanks for explaining -- let me merge this issue into that one, and send this over to our SDK team. Thanks for reporting!

@liyang783 -- the reason for the error seems to be a SIGKILL, which usually means you or something on your system killed the process and that's why it failed. If...

Hi @guotie, Sui doesn't currently support accessing timestamps from within Sui Move. It's possible to access the current epoch with the following function: ``` public fun sui::tx_context::epoch(ctx: &TxContext): u64 ```...

I did notice the existing `AuthorityMetric` integration, but the reason I opted for this approach was that there isn't an easy to access place where the cache gets updated and...

I'm not sure whether this also affects the Rust SDK, but if it does, we should improve that too.