We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 890cc09 commit ef5b716Copy full SHA for ef5b716
packages/utils/gno.ts
@@ -120,7 +120,6 @@ export const extractGnoNumber = (str: string) => {
120
return parseFloat(str.slice("(".length).split(" ")[0]);
121
};
122
export const extractGnoAddress = (str: string) => {
123
- console.log("extracting address", str);
124
const jsonStr = str.slice("(".length, -" std.Address)".length);
125
if (!jsonStr) {
126
return "";
@@ -130,7 +129,6 @@ export const extractGnoAddress = (str: string) => {
130
129
return JSON.parse(jsonStr) as string;
131
132
export const extractGnoString = (str: string) => {
133
- console.log("extracting string from", str);
134
const jsonStr = str.slice("(".length, -" string)".length);
135
136
0 commit comments