Library to interact with Kondor, the browser extension for Koinos blockchain.
Install the package from NPM
npm install kondor-js
You can also load it directly to the browser by downloading the bunble file located at dist/kondor.min.js
, or its non-minified version dist/kondor.js
(useful for debugging).
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>My App</title>
<script src="kondor.min.js"></script>
<script src="koilib.min.js"></script>
<script>
(async () => {
const accounts = await kondor.getAccounts();
const userAddress = accounts[0].address;
const koinContract = new Contract({
id: "19JntSm8pSNETT9aHTwAUHC5RMoaSmgZPJ",
abi: utils.tokenAbi,
provider: kondor.getProvider("harbinger"),
signer: kondor.getSigner(userAddress),
});
const koin = koinContract.functions;
// Get balance
const { result } = await koin.balanceOf({
owner: userAddress,
});
console.log(balance.result);
})();
</script>
</head>
<body></body>
</html>
NOTE: For koilib check https://github.com/joticajulian/koilib
import * as kondor from "kondor-js";
import { Contract, utils } from "koilib";
(async () => {
const accounts = await kondor.getAccounts();
const userAddress = accounts[0].address;
const koinContract = new Contract({
id: "19JntSm8pSNETT9aHTwAUHC5RMoaSmgZPJ",
abi: utils.tokenAbi,
provider: kondor.getProvider("harbinger"),
signer: kondor.getSigner(userAddress),
});
const koin = koinContract.functions;
// Get balance
const { result } = await koin.balanceOf({
owner: userAddress,
});
console.log(balance.result);
})();
In some cases Kondor triggers 2 popups. In particular when transaction options like chainId
, rcLimit
, and nonce
are defined beforehand and then Kondor doesn't have to calculate them.
If this happens to you then define the signer in this way:
const provider = new Provider(["https://api.koinos.io"]);
const userAddress = "1K6oESWG87m3cB3M2WVkzxdTr38po8WToN";
const signer = kondor.getSigner(userAddress, {
providerPrepareTransaction: provider,
});
With this definition, kondor will use providerPrepareTransaction
in the preparation of the transaction instead of calling the kondor extension. This solves the race condition with double popups.
Take into account that if you use this code but the chainId
, rcLimit
, or nonce
are not defined, then it's normal to see a delay between the click and the popup (because they are called using the provider before triggering the popup). In conclusion, define the 3 values when using providerPrepareTransaction
to not experiment delays.
Note: This is a temporary solution while the race condition with double popups is fixed.
Run yarn serve
and open in the browser http://localhost:8081/test.html
. This page contains a basic example to get accounts and make a transfer using Kondor.
Many thanks to the sponsors of this library: @levineam, @Amikob, @motoeng, @isaacdozier, @imjwalker, and the private sponsors.
If you would like to contribute to the development of this library consider becoming a sponsor in https://github.com/sponsors/joticajulian.
MIT License
Copyright (c) 2021 Julián González
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.