Skip to content

Commit 493ecf9

Browse files
committed
export base url and ext id
1 parent 8dc21d1 commit 493ecf9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "lute-connect",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
4+
"description": "Enables dApps to communicate with Lute, an Algorand wallet",
45
"main": "./dist/main.cjs.js",
56
"module": "./dist/main.esm.js",
67
"types": "./dist/main.d.ts",

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ export class SignDataError extends Error {
112112
const left = 100 + window.screenX;
113113
const top = 100 + window.screenY;
114114
const PARAMS = `width=500,height=750,left=${left},top=${top}`;
115-
const BASE_URL = "https://lute.app";
116-
const EXT_ID = "kiaoohollfkjhikdifohdckeidckokjh";
115+
export const BASE_URL = "https://lute.app";
116+
export const EXT_ID = "kiaoohollfkjhikdifohdckeidckokjh";
117117

118118
export default class LuteConnect {
119119
siteName: string;

0 commit comments

Comments
 (0)