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