Skip to content

Commit deac5c2

Browse files
nooxxloicttn
authored andcommitted
rename
1 parent 5d14f75 commit deac5c2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/atom.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Kiln } from "../src/kiln";
22
const fs = require('fs');
33

4-
const apiSecretPath = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
4+
const apiSecret = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
55

66
const f = async () => {
77
const k = new Kiln({
@@ -12,7 +12,7 @@ const f = async () => {
1212
name: 'vault1',
1313
provider: 'fireblocks',
1414
fireblocksApiKey: '53aee35e-04b7-9314-8f28-135a66c8af2c',
15-
fireblocksSecretKey: apiSecretPath,
15+
fireblocksSecretKey: apiSecret,
1616
vaultAccountId: '7'
1717
}
1818
],

examples/eth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Kiln } from "../src/kiln";
22

33
const fs = require('fs');
44

5-
const apiSecretPath = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
5+
const apiSecret = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
66

77
const f = async () => {
88
const k = new Kiln({
@@ -14,7 +14,7 @@ const f = async () => {
1414
name: 'vault1',
1515
provider: 'fireblocks',
1616
fireblocksApiKey: '53aee35e-04b7-9314-8f28-135a66c8af2c',
17-
fireblocksSecretKey: apiSecretPath,
17+
fireblocksSecretKey: apiSecret,
1818
vaultAccountId: '7'
1919
}
2020
],

examples/sol.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Kiln } from "../src/kiln";
22
const fs = require('fs');
33

4-
const apiSecretPath = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
4+
const apiSecret = fs.readFileSync(__dirname + '/fireblocks_secret.key', 'utf8');
55

66
const f = async () => {
77
const k = new Kiln({
@@ -12,7 +12,7 @@ const f = async () => {
1212
name: 'vault1',
1313
provider: 'fireblocks',
1414
fireblocksApiKey: '53aee35e-04b7-9314-8f28-135a66c8af2c',
15-
fireblocksSecretKey: apiSecretPath,
15+
fireblocksSecretKey: apiSecret,
1616
vaultAccountId: '7'
1717
}
1818
],

0 commit comments

Comments
 (0)