Skip to content

Commit

Permalink
fix: change dedaub api
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAWM committed Dec 19, 2023
1 parent 2cc3bd7 commit 27225be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const DecompileInDedaubBtn: FC<Props> = ({ mainAddress, chain }) => {
`https://library.dedaub.com/${item.pathname}/address/${mainAddress}/decompiled`
)
} else {
const url = 'https://api.dedaub.com/api/on_demand/'
const url = 'https://library.dedaub.com/api/on_demand'
const bytecode = document.getElementById('dividcode')
if (bytecode == null) {
window.open('https://library.dedaub.com/decompile')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const DecompileInDedaubBtn: FC<Props> = ({ mainAddress, chain }) => {
`https://library.dedaub.com/${item.pathname}/address/${mainAddress}/decompiled`
)
} else {
const url = 'https://api.dedaub.com/api/on_demand/'
const url = 'https://library.dedaub.com/api/on_demand'
const bytecode = document.getElementById('dividcode')
if (bytecode == null) {
window.open('https://library.dedaub.com/decompile')
Expand Down

0 comments on commit 27225be

Please sign in to comment.