@openocean.finance/wallet 1.10.54 → 1.10.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@ import { EnumChains, EnumWalletName, EnumWalletType } from "../types";
|
|
|
2
2
|
import BaseWallet from "./BaseWallet";
|
|
3
3
|
declare class SolflareWallet extends BaseWallet {
|
|
4
4
|
name: EnumWalletName;
|
|
5
|
-
icon:
|
|
5
|
+
icon: string;
|
|
6
6
|
supportChains: EnumChains[];
|
|
7
7
|
type: EnumWalletType;
|
|
8
8
|
sdk: any;
|
|
@@ -54,14 +54,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
54
54
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
55
55
|
};
|
|
56
56
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
-
/**
|
|
58
|
-
* @name Solflare
|
|
59
|
-
* @author openocean
|
|
60
|
-
* @date 2021/4/21
|
|
61
|
-
* @desc
|
|
62
|
-
*/
|
|
63
|
-
// @ts-ignore
|
|
64
|
-
var solflare_svg_1 = __importDefault(require("../assets/solflare.svg"));
|
|
65
57
|
var helper_1 = require("../helper");
|
|
66
58
|
var types_1 = require("../types");
|
|
67
59
|
var BaseWallet_1 = __importDefault(require("./BaseWallet"));
|
|
@@ -70,7 +62,7 @@ var SolflareWallet = /** @class */ (function (_super) {
|
|
|
70
62
|
function SolflareWallet() {
|
|
71
63
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
72
64
|
_this.name = types_1.EnumWalletName.SolflareWallet;
|
|
73
|
-
_this.icon =
|
|
65
|
+
_this.icon = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAANlBMVEVHcEz/70b/70b97UX/8Eb/70b/9kjy40NwaSKJgSje0D3//EkAAQVTThs0MhOelS26rjTRxDoXAGKpAAAABnRSTlMAXMX7/9vpYlFwAAAA7UlEQVR4AX3T0a6EIAxFUZXOAeyB4v//7B2pF4OZuB9dNpJQl2/rFuRR2Nal95GffV6s6yp3wKTrst0UU97d/aVtGWfRzLPTkfvTsIy5kio9K9VH/hHGpru5F8iMlUmB7l+bUc+BJtDIBJkx1sSz1JhVHsiqR+Hlggkbi0Jjq+45zshyQHfm5vOujtJHEk2hYucsHD2r44PayDQh1OjeoJU2Y2PT2OcPLfM31ZgVgB6kxT44EOYXotBEq1nlRmR61aKR5uYIYwxWeXVArvplhwjBdZwShgVfkyvdc1MZbdOCPVZsfVvN96V+/R3+ABzvE9E0gjcZAAAAAElFTkSuQmCC';
|
|
74
66
|
_this.supportChains = [types_1.EnumChains.Solana];
|
|
75
67
|
_this.type = types_1.EnumWalletType.Extension;
|
|
76
68
|
_this.sdk = null;
|