Daniel

Results 32 comments of Daniel

Hey @damirka, thanks for reviewing this. The proposal is to add new functions that use generics for the coin type, allowing users to list NFTs for sale in coins other...

I'm iterating over paths on various accounts, in order for the script not to break I'm forced to manually ignore the paths set by contracts that are outdated. I get...

@bluesign the idea is to remove the signing function from the wallet. In real life your wallet keeps your credit card but it does not do transactions in your behalf....

Each dapp could create Flow accounts for their users in a non-custodial way, the user has the key. Also there are no emails, passwords, and 2FA codes involved, so login/signup...

Apparently the wallet address is already sent when requesting the signature of a TX but not sent when requesting the signature of an arbitrary messages.

How are we supposed to update an existing indexer if you guys add code to old migration files? Equally important: ❌ DO NOT revert commits that remove columns or tables....

Why is `CREATE TABLE pruner_cp_watermark` in the 2023 migration. https://github.com/MystenLabs/sui/blob/e8ca7ad1ec873307e55b5f65faeed48b107e48d9/crates/sui-indexer/migrations/pg/2023-08-19-044044_checkpoints/up.sql#L30 We already ran that when we installed the indexer. We can't re-run it. You guys need to create a 2024...

Same issue here: https://github.com/MystenLabs/sui/blame/2035c58785d6abfb14a8ddc9916ab7501b833a0c/crates/sui-indexer/migrations/2023-08-19-044020_events/up.sql#L19 How should we update our indexer now? Do you guys expect us to `cherry-pick` all commits and re-write the sql queries to use `ALTER TABLE` ?...

> @cybercent by running migrations, I meant psql onto your DB server and run > > ``` > CREATE TABLE pruner_cp_watermark ( > checkpoint_sequence_number BIGINT NOT NULL, > min_tx_sequence_number BIGINT...