npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bkys-cli

v1.0.8

Published

BKYS smartcontract ve node konfigurasyonu yönetim aracı.

Downloads

2

Readme

bkys-cli

BKYS smartcontract ve node konfigurasyonu yönetim aracı.

Bağımlılıklar


NVM yüklendikten sonra node 14 LTS versiyonu aşağıdaki komut ile yüklenir

$ nvm install 14

Dikkat Edilecek Hususlar

  • Yeni node kurulum adımlarına geçmenden önce NVM ve Ethereum executable'larinin kurulumundan emin olunmalı
  • Root kullanıcı için kurulum yapılacaksa aşağıdaki komut NPM komutu çalıştırılmalı
$ npm config set user 0 
  • bkys-cli contract ilklendirilmesi yapmadan kullanılacak ise aşağıdaki komut ile kullanılacak contract belirtilmelidir
$ bkyscli contract use <contract_address> 
  • Sistemdeki diğer paketlerle çelişmemesi için bkys-cli'nin local olarak kurulması tavsiye edilir
  • bkys-cli'nin address yetkilendirmesi yapabilmesi için Owner olan düğümlerin RPC'sine bağlı olması gerekir

Kurulum

Öncesinde bağımlılıklar tamamlanmalıdır.

NPM üzerinden local kurulum.

$ npm install bkys-cli
$ # isteniser node_modules de ki executable sistem path'ine eklenebilir.
$ ln -s $PWD/node_modules/.bin/bkyscli /usr/local/bin/bkyscli
$ # bkyscli ....

NPM üzerinden global kurulum.

$ npm install bkys-cli -g
$ # bkyscli ....

Gitlab repository'si üzerinden kurulum.

$ git clone https://bag.org.tr/proje/ticari/bkys/bkys-cli
$ cd bkys-cli
$ npm install
$ # ./bin/bkyscli ....

Kullanım

Contract İşlemleri

Contract ilklendirme. Yeni contract oluşturur.

$ bkyscli contract init (owner == tx.sender)

Önceden oluşturulmuş contract'ı bkys-cli'ye tanıtma

$ bkyscli contract use <contract_address> 

Other owner adresini contract'a ekleme

$ bkyscli contract otherowner <other_woner address> 

Şirket yetkilendirme

$ bkyscli contract authr <new_company_address>

Node Konfigurasyonu

node.yml dosyası kullanılarak bkys-node'un kullanacağı environment variable'leri içeren .env oluşturlur.

Örnek node.yml dosyası

nodeName: new-node
account: null
mine: False
keyfile: null
pw: null
contract: "0xF7cF4B6E931F3e3c296B82f0c6D77FdB666f4055"
nodekey: null
$ bkyscli config create node.yml

Kanıt İşlemleri

$ bkyscli contract addp <id> <val> 
$ bkyscli contract delp <id>
$ bkyscli contract getp <id> 
$ bkyscli contract state (owners, companies, etc.)

Ethereum İşlemleri

bkyscli ether send <to> <value> (suan sadece ether birimini destekliyor)

Kullanılan RPC URL'sini değiştirme

localhost dışındaki RPC kullanılacaksa ~./config/bkyscli/config.json dosyasındaki "rpcEndpoint" fieldi değiştirilmelidir.

{
    "rpcEndpoint": "http://localhost:8545"
}

Yeni Node Ekleme İşlemleri

bkys-cli'nin address yetkilendirmesi yapabilmesi için Owner olan düğümlerin RPC'sine bağlı olması gerekir

1. Yeni node için konfigurasyon hazırlama

node.yml konfigurasyonunun hazırlanır. Yeni şirket ekleme senaryosu için Node Konfigürasyonu bölümündeki konfigürasyon kullanılabilir.

2. Kullanilacak contract'in bkys-cli'ye tanıtılması yada Contract ilklendirme

İlklendirilmiş contract'ın bkys-cli'ye tanıtılması

$ bkyscli contract use <contract_address> 

Contract ilklendirme

$ bkyscli contract init

3. Adrese Kanıt Ekleme Yetkisi Verme

$ bkyscli contract authr <yeni_sirket_adresi>