Skip to content

Commit

Permalink
Merge pull request #45 from fileverse/BugFix-Fix-SignedMint-URL
Browse files Browse the repository at this point in the history
BugFix-Fix-SignedMint-URL
  • Loading branch information
nadeem-fileverse committed Apr 2, 2024
2 parents 47d4a8e + f69bd74 commit b1d1ab0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/lazy-grapes-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fileverse/heartbit-core": minor
---

Bug Fix - Fixes Relayer URL for signed mints
2 changes: 1 addition & 1 deletion packages/heartbit-core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class HeartBitCore {
}

async mintHeartBit(opts: MintHeartBitArgs) {
const response = await fetch(this.#relayerUrl, {
const response = await fetch(`${this.#relayerUrl}/signed-mint`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Expand Down

0 comments on commit b1d1ab0

Please sign in to comment.