@b3dotfun/sdk 0.0.7-alpha.18 → 0.0.7-alpha.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ const constants_1 = require("../../../shared/constants");
5
5
  const react_1 = require("react");
6
6
  const useB3EnsName = () => {
7
7
  const registerEns = async (name, address, hash) => {
8
- const message = `Register ${name}`;
8
+ const message = `Register "${name}"`;
9
9
  const response = await fetch(constants_1.ENS_GATEWAY_URL + "set", {
10
10
  method: "POST",
11
11
  headers: {
@@ -2,7 +2,7 @@ import { ENS_GATEWAY_URL } from "../../../shared/constants/index.js";
2
2
  import { useMemo } from "react";
3
3
  export const useB3EnsName = () => {
4
4
  const registerEns = async (name, address, hash) => {
5
- const message = `Register ${name}`;
5
+ const message = `Register "${name}"`;
6
6
  const response = await fetch(ENS_GATEWAY_URL + "set", {
7
7
  method: "POST",
8
8
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b3dotfun/sdk",
3
- "version": "0.0.7-alpha.18",
3
+ "version": "0.0.7-alpha.19",
4
4
  "source": "src/index.ts",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "react-native": "./dist/cjs/index.native.js",
@@ -3,7 +3,7 @@ import { useMemo } from "react";
3
3
 
4
4
  export const useB3EnsName = () => {
5
5
  const registerEns = async (name: `${string}.b3.fun`, address: string, hash: string): Promise<Response> => {
6
- const message = `Register ${name}`;
6
+ const message = `Register "${name}"`;
7
7
  const response = await fetch(ENS_GATEWAY_URL + "set", {
8
8
  method: "POST",
9
9
  headers: {