Skip to content

Commit

Permalink
- add DNA docker-compose
Browse files Browse the repository at this point in the history
- increase max fee temporarily
  • Loading branch information
starknetdev committed May 31, 2024
1 parent 0851737 commit c4d19c2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions indexer/dna/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.6'

services:
dna:
image: quay.io/apibara/starknet:1.5.0
restart: always
ports:
- "7171:7171"
command:
- start
- --rpc
- http://host.docker.internal:5050
2 changes: 1 addition & 1 deletion ui/src/app/lib/burner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ export const useBurner = ({
addressSalt: publicKey,
},
{
maxFee: feeEstimateResult.suggestedMaxFee * BigInt(2),
maxFee: feeEstimateResult.suggestedMaxFee * BigInt(4),
}
);

Expand Down

0 comments on commit c4d19c2

Please sign in to comment.