Paul Fidika
Paul Fidika
### Description Coin can now be unfrozen. I preferred the term 'unfreeze' to 'thaw' (like on Solana) because I thought it was simpler, but either function name works for me....
I noticed that in the stake.move module, there is a way to move StakePool.pending_inactive -> StakePool.active; the function is called `reactivate_stake`. However, there is no function that can move StakePool.pending_active...
Whenever I run `sui test move` I get the following error: ```` ITE: An unknown error was reported. Location: │ VMError (if there is one): VMError { │ major_status: UNEXPECTED_VERIFIER_ERROR,...
Currently, NFT standards are trying to restrict the ability to transfer ownership of objects; not all creators will want their objects to be transferrable, or they will want their own...
In aptos/move/boxes, some functions marked as entry functions are returning values. However, I do not think that's possible; to my understanding, entry functions cannot return values. An external javascript process...
The idea is that a function can check to see if an object it has a reference to is a single-writer object, or a shared object, and can build conditional...
I created a pseudo-random number generator that converts UIDs into bytes. I had to add a modulo function to math along with a u64 module that converts bytes into u64...
I wanted to float the idea of using two native Sui coins, similar to how xDai (now Gnosis-chain) works: - Sui-resource coin: represents a fractional ownership of Sui’s total capacity....
In an entry transaction, be able to attach arbitrary data to the ctx (Transaction Context) as a sequence of bytes. This data can be read by on-chain modules using the...
When you do something like: `sui client call --package 0xc58218250eec94ee3241ac999dd564a6e267f107 --module schema --function define --args "[ \"name\", \"description\", \"image\", \"power_level\" ]" --gas-budget 1000` the arguments always end up getting encoded...