Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ type RequestedPermissionResult = Permission;
=== "RPC"
```js
window.xpll.request({
method: "request_permissions";
method: "request_permissions"
});
```

Expand All @@ -102,7 +102,7 @@ type IsWalletLockedResult = boolean;
=== "RPC"
```js
window.xpll.request({
method: "is_wallet_locked";
method: "is_wallet_locked"
});
```

Expand Down Expand Up @@ -135,7 +135,7 @@ type GetPermissionsResult = Permission[];
=== "RPC"
```js
window.xpll.request({
method: "get_permissions";
method: "get_permissions"
});
```

Expand Down Expand Up @@ -164,7 +164,7 @@ type GetAccountsResult = string[];
=== "RPC"
```js
window.xpll.request({
method: "get_accounts",
method: "get_accounts"
});
```

Expand Down Expand Up @@ -192,7 +192,7 @@ type GetActiveAccountResult = string | undefined;
=== "RPC"
```js
window.xpll.request({
method: "get_active_account";
method: "get_active_account"
});
```

Expand Down Expand Up @@ -220,7 +220,7 @@ type GetActiveAccountBalanceResult = string;
=== "RPC"
```js
window.xpll.request({
method: "get_active_account_balance";
method: "get_active_account_balance"
});
```

Expand Down Expand Up @@ -278,7 +278,7 @@ type GetActiveAccountLatestTransactionsResult = TransactionSummary[];
params: {
limit: 1,
order: "desc",
},
}
});
```

Expand All @@ -304,7 +304,7 @@ type GetCurrentNetworkResult = string | undefined;
=== "RPC"
```js
window.xpll.request({
method: "get_current_network";
method: "get_current_network"
});
```

Expand Down