Skip to content

Commit 8af3c7f

Browse files
Merge pull request goatstone#58 from JoseHerminioCollas/main
remove test code, update fee value
2 parents eccf166 + 72d6942 commit 8af3c7f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// public/env.js
22
window.env = {
33
network: "sepolia",
4-
platformFee: "0.002",
4+
platformFee: "0.0012",
55
};

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export type WindowEnv = { platformFee: string; network: string };
88

99
let config: any;
1010
// TODO test only, remove the next line for production
11-
const windowEnv: WindowEnv = { network: "sepolia", platformFee: "0.002" };
12-
window.env = windowEnv;
11+
// const windowEnv: WindowEnv = { network: "sepolia", platformFee: "0.002" };
12+
// window.env = windowEnv;
1313
// set default values
1414
let platformFee = "0.001";
1515
let network = "sepolia";

0 commit comments

Comments
 (0)