mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 11:06:25 +00:00
e8c462d7ba
Former-commit-id: effadc6d5f4127a839afd625197a0138ffd06cd6
21 lines
375 B
JavaScript
21 lines
375 B
JavaScript
function wallet() {
|
|
var url = 'http://127.0.0.1:3450';
|
|
|
|
return {webViewUrl: url};
|
|
}
|
|
|
|
status.command({
|
|
name: "wallet",
|
|
description: "wallet",
|
|
color: "#ffa500",
|
|
fullscreen: true,
|
|
suggestionsTrigger: 'on-send',
|
|
params: [{
|
|
name: "webpage",
|
|
suggestions: wallet,
|
|
type: status.types.TEXT
|
|
}]
|
|
});
|
|
|
|
status.autorun("wallet");
|