Skip to content

Commit e29137b

Browse files
authored
Merge pull request #71 from KeystoneHQ/fix/export-function
fix: export the function on the sdk level
2 parents 75f9a2b + f6a875c commit e29137b

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export {
1111
QRHardwareCall,
1212
QRHardwareCallType,
1313
QRHardwareCallVersion,
14+
parseURBytes,
1415
} from './wallet/hardwareCall'
1516
export default KeystoneSDK
1617

src/sdk.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
parseHDKey,
1919
generateDeriveContextHashCall,
2020
generateKeyDerivationCall,
21+
parseURBytes,
2122
parseAccount,
2223
parseTonAccount
2324
} from './wallet'
@@ -231,6 +232,7 @@ export class KeystoneSDK {
231232
parseAccount = parseAccount
232233
generateDeriveContextHashCall = generateDeriveContextHashCall
233234
generateKeyDerivationCall = generateKeyDerivationCall
235+
parseURBytes = parseURBytes
234236

235237
/**
236238
* @deprecated since version 0.2.1.
@@ -257,4 +259,5 @@ export class KeystoneSDK {
257259
*/
258260
static generateKeyDerivationCall = generateKeyDerivationCall
259261
static generateDeriveContextHashCall = generateDeriveContextHashCall
262+
static parseURBytes = parseURBytes
260263
}

0 commit comments

Comments
 (0)