Skip to content

Commit

Permalink
feat: remove unused url in brc20 request, ref #4833
Browse files Browse the repository at this point in the history
  • Loading branch information
ordinariusprof authored and alter-eggo committed Jan 23, 2024
1 parent 0dacac6 commit 95b722c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/query/bitcoin/ordinalsbot-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class OrdinalsbotClient {
async order({ receiveAddress, file, fee, size, name }: InscriptionOrderArgs) {
return axios.post<InscriptionOrderSuccessResponse>(urlJoin(this.baseUrl, 'order'), {
receiveAddress,
files: [{ dataURL: file, size, name, type: 'plain/text', url: '' }],
files: [{ dataURL: file, size, name, type: 'plain/text' }],
fee,
lowPostage: true,
});
Expand Down

0 comments on commit 95b722c

Please sign in to comment.