Paul Fidika
Paul Fidika
I was having this issue all day, but I'm using the pre-compiled library now and it's working fine. Windows 11 CPU: x64 Error: `error[E0599]: no method named disable_lifo_slot found for...
How do I do that? Sorry; I'm new here. So the issue is that my code is formatted correctly?
> do you have plans to return to this? otherwise I can pass it off to someone else to wrap up. sorry for not getting back to this sooner. I...
Okay now it's fixed!
> It would be ideal to also have native APIs to check whether a parent object owns a child object, and other helper methods as well. e.g.`contains_child_by_id(parent: &P, id: &ID):...
The root problem is this: aptos_framework::aptos_account ``` public entry fun create_account(auth_key: address) { let signer = account::create_account(auth_key); coin::register(&signer); } ``` This seems way too permissive; do we really want ANYONE...
Is the intention for this to do transaction simulation? Like: let output_coin = swap_coin(input_coin); return sui::balance::value(&output_coin.balance) this would call some swap_coin function with an input_coin, and then return to us...
> @PaulFidika we have https://docs.sui.io/sui-jsonrpc#sui_dryRunTransaction for txn simulation already. another endpoint that I am adding is dryRunMoveCall, #4967 Oh okay, so dryRunTransaction is for transaction simulation, and these 'view function'...
Holy crap this is cool; I had no idea this existed.
I like this; how about a special key-rotation method that just sends the auth-key to ZERO_AUTH_KEY, like const ZERO_AUTH_KEY: vector = x"0000000000000000000000000000000000000000000000000000000000000000"; `public entry fun rotate_authentication_key_to_zero(account: &signer)`. Obviously wallets should...