File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import { Kiln } from "../src/kiln" ;
22const 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
66const 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 ] ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Kiln } from "../src/kiln";
22
33const 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
77const 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 ] ,
Original file line number Diff line number Diff line change 11import { Kiln } from "../src/kiln" ;
22const 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
66const 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 ] ,
You can’t perform that action at this time.
0 commit comments