Skip to content

Commit e06b1af

Browse files
authored
Upgrade SDK to 1.20.0 (#170)
1 parent 1bb4fd3 commit e06b1af

File tree

3 files changed

+40
-40
lines changed

3 files changed

+40
-40
lines changed

package-lock.json

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"license": "MPL-2.0",
2424
"dependencies": {
25-
"@ironfish/sdk": "1.19.0",
25+
"@ironfish/sdk": "1.20.0",
2626
"electron-serve": "^1.1.0"
2727
},
2828
"devDependencies": {

renderer/components/AccountKeyExport/AccountKeyExport.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ import { ViewOnlyChip } from "../ViewOnlyChip/ViewOnlyChip";
2424
type FormatTypes = `${AccountFormat}`;
2525

2626
const viewOnlyFormatOptions: Map<string, FormatTypes> = new Map([
27-
["Bech32", "Bech32"],
27+
["Base64Json", "Base64Json"],
2828
["JSON", "JSON"],
2929
]);
3030

3131
const formatOptions: Map<string, FormatTypes> = new Map([
32-
["Bech32", "Bech32"],
32+
["Base64Json", "Base64Json"],
3333
["JSON", "JSON"],
3434
["Mnemonic", "Mnemonic"],
3535
["Spending Key", "SpendingKey"],
3636
]);
3737

38-
const defaultFormat: FormatTypes = "Bech32";
38+
const defaultFormat: FormatTypes = "Base64Json";
3939

4040
const messages = defineMessages({
4141
exportAccount: {

0 commit comments

Comments
 (0)