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);

Function call

const params = {
assetType: 'asset1',
amount: '1000',
operator: '',
metaData: await window.locus.utils.ConvertStringToData(
'{"imageUrl":"https://foo/test.png"}'
)
};
const result = await window.locus.request('createAssetObject', params).catch(err => {
console.error(err);
});

console.log('createAssetObject result', result);

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

getAccountDetail

계정의 상태를 조회합니다.

입력

[없음]

출력

타입설명
statusstring계정 상태 (pending: 오픈어카운트가 완료되지 않은 상태, activated: 오픈어카운트가 완료된 상태)
infoobjectlocus_getAccountDetail rpc 응답값 Locus JSON-RPC

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
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

createAssetObject

AssetObject 를 생성 한다.

입력

타입설명
assetTypestring생성할 객체의 형식
amountstring생성할 수량 , 0 으로 설정시 수량이 없는 단일 Object 로 생성
operatorstring관리 계정 (Contract 주소)
metaDatabase64사용자 지정하는 형식의 정보 데이타

출력

타입설명
Txobject생성된 Tx

transferAssetObject

AssetObject 를 전송한다.

입력

타입설명
tobase32Asset 객체를 받을 계정
assetIdbase64Asset 의 고유 ID
amountstring수량

출력

타입설명
Txobject생성된 Tx

getAccountAssetList

계정의 Asset 목록을 조회하여 AssetId 별로 Object ID 와 수량을 조회 한다.

입력

타입설명
countnumber가져올 갯수 제한치, 0 이면 전부

출력

타입설명
AssetListstring보유한 객체 정보 배열
(통합수량, ObjectId 배열)
[]{Amount, []Digest}

getAccountAssetObject

계정에서 지정한 AssetId 에 해당하는 AssetObject 들을 출력 한다.

입력

타입설명
AssetId[]base64Asset 의 고유 ID의 배열

출력

타입설명
Objects[]AssetObject보유한 객체 정보

AssetObject

타입설명
Versionnumber이 객체구조의 버전
Typestring객체 타입명
AssetIdstring객체 타입에 대한 고유 ID
ObjectIdstring객체의 고유 ID
Amountstring수량 (수량이 0 이면 객체 자체가 단 1 개만 존재)
Operatorstring객체 생성 또는 관리시 연계할 주소 (컨트랙트 연동 주소)
MetaDatabase64이 객체에 대한 기타 정보들 (사용자 정의)
Hashstring객체의 유효함을 확인하기 위한 Hash

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

connectionChanged

대상 사이트에 연결된 계정이 감지되거나 변경되었을 때 발생합니다.

출력

타입설명
addrstring연결된 계정 주소

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