Skip to content

Commit

Permalink
Merge branch 'main' into improve_essential_contract
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Feb 26, 2024
2 parents f390253 + 5eddffe commit ccabdb4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@
});
</script>

{$selectedNFTs?.length} <br />
validBalance {validBalance} <br />
$enteredAmount gt 0 {$enteredAmount > 0} <br />
has amount {nftHasAmount} <br />
(nftHasAmount ? $enteredAmount gt 0 : true) {nftHasAmount ? $enteredAmount > 0 : true} <br />
{hasSelectedNFT && (nftHasAmount ? $enteredAmount > 0 : true)}
<!-- {JSON.stringify($selectedNFTs, (key, value) => (typeof value === 'bigint' ? Number(value) : value))} -->
<div class="f-col w-full gap-4">
<section class="space-y-2">
<div class="flex justify-between items-center w-full">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE `processed_blocks` ADD INDEX `processed_blocks_chain_id_event_name_block_height_index` (`chain_id`, `event_name`, `block_height`);

-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP INDEX processed_blocks_chain_id_event_name_block_height_index on processed_blocks;
-- +goose StatementEnd

0 comments on commit ccabdb4

Please sign in to comment.