Skip to main content

Locus Wallet API

Integrating the website with the wallet

if (!window.locus) {
alert('Locus wallet is not installed.');
return;
}

const addr = await window.locus.request('connect', {}).catch(err => {
console.error(err);
});

console.error(addr);

Register event listener

window.locus.on('accountChanged', data) => {
console.log(`accountChanged! ${data.addr}`);
}

List of Functions


connect

Connect the wallet to the designated site.

Input

[None]

Output

KeyTypeDescription
-stringConnected wallet address

getAccount

Retrieve the account connected to the target site.

Input

[None]

Output

KeyTypeDescription
-stringAccount Address

getBalance

Retrieve the amount of coins held by the account.

Input

KeyTypeDescription
addrstringAccount Address

Output

KeyTypeDescription
-stringAmount of coins held

getNodeUrl

Retrieve the RPC URL of the selected network.

Input

[None]

Output

Key타TypeDescription
-stringRPC url

sign

Sign a string with the normal private key.

Input

KeyTypeDescription
inputstringtarget to Sign

Output

KeyTypeDescription
-stringSignature result

addNetwork

Register a new network in the wallet.

Input

KeyTypeDescription
namestringName
rpcUrlstringRPC call url
currencySymbolstringDefault currency
explorerUrlstring(Optional) Explorer URL

Output

KeyTypeDescription
-booleanSuccess Status

transferCoin

Send coins to another account.

Input

KeyTypeDescription
tostringRecipient account address
amountstringQuantity of coins to send

Output

KeyTypeDescription
Hashbase64
Txstring
SuccessboolSuccess Status

transferToken

Send tokens to another account.

Input

KeyTypeDescription
contractAddrstringContract address
tostringRecipient account address
amountstringQuantity of tokens to send
decimalint32Token decimal place

Output

KeyTypeDescription
Hashbase64
TxstringGenerated Tx
SuccessboolSuccess Status

createContract

Create contract.

Input

KeyTypeDescription
contractAccountstring(Optional) Address for the contract to be created. If not provided, a new address will be generated.
codestringbinary code of source
amountstringCoins to be deposited into the newly created contract account, which will be deducted from the creator's coins.
fuelLimituint32Fuel limit for creating the contract.
tokenAmounts[]{TokenID base32, AmountToken string}Token information to be sent to the contract.
sysIdbase32
sysTypestringsystem type
untilbase32Maximum rounds for retrying contract creation.

Output

KeyTypeDescription
ContractAccountbase32The address of the created contract. You can use the return value of the first call as an argument for the second call.
Hashbase64
TxstringGenerated Tx
SuccessboolSuccess Status

callContract

Execute the contract function.

Input

KeyTypeDescription
contractAccountstringSmart Contract address
funcstringFunction name
argDatastringParameters
abistringABI JSON string of the function to be executed
funcStrstring(Optional) Function name for display in the wallet
funcArgs[]string(Optional) Parameters for display in the wallet

Output

KeyTypeDescription
Hashbase64
TxstringGenerated Tx
SuccessboolSuccess Status

viewContract

Calls a function to read data from the smart contract.

Input

KeyTypeDescription
contractAccountstringSmart contract address
funcstringFunction name
argDatastringParameters

Output

KeyTypeDescription
Resultbase64Result of the function call
ErrstringError message, if any

Event List


init

This event occurs once when the wallet is properly installed and ready for use.

Output

KeyTypeDescription
addrstringCurrent selected account address
connectedbooleanWhether the account is connected to the site
extensionIdstringWallet's extension ID
networknetworkSelected network information

network

KeyTypeDescription
idstringNetwork ID
namestringNetwork name
rpcUrlstringRPC URL
currencySymbolstringCurrency symbol
explorerUrlstringExplorer URL

connected

Occurs when the wallet is connected to the target site.

Output

KeyTypeDescription
addrstringConnected account address

disconnected

Occurs when the wallet is disconnected from the target site.

Output

키KeyTypeDescription
addrstringDisconnected account address

accountChanged

Occurs when the account is changed.

Output

KeyTypeDescription
addrstringAccount Address

networkChanged

Occurs when the network is changed.

Output

KeyTypeDescription
idstringNetwork ID of the registered network
namestringName of the registered network
rpcUrlstringRPC URL for the registered network
currencySymbolstringDefault currency symbol for the registered network
explorerUrlstringExplorer URL for the registered network

lockWallet

Occurs when logging out from the wallet.

Output

[None]


unlockWallet

Occurs when logging into the wallet.

Output

KeyTypeDescription
addrstringAddress of the logged-in account

acceptConfirmation

Occurs when accepting the wallet confirmation prompt.

Output

KeyTypeDescription
uuidstringRequest unique key
datastringExecution result

rejectConfirmation

Occurs when rejecting the wallet confirmation prompt.

Output

KeyTypeDescription
uuidstringRequest unique key
codestring0: General
1: Rejected by user
messagestringError Message

rejectAllConfirmations

Occurs when all requests are rejected in the wallet confirmation prompt.

Output

KeyTypeDescription
-[]resultList of rejected requests

result

KeyTypeDescription
uuidstringRequest unique key
codestring0: General
1: Rejected by user
messagestringError Message