├── .gitignore ├── README.md ├── boot-scripts-1.2.1 ├── 0_boot_all_in_one.sh ├── 1_start.sh ├── 2_deploy_bios.sh ├── 3_create_system_accounts.sh ├── 4_deploy_token.sh ├── 5_deploy_system.sh ├── 6_kick_off_shuffle.sh ├── 7_create_accounts.sh ├── 8_resign_eosio.sh ├── a ├── clean.sh ├── config-dir │ ├── config.ini │ └── genesis.json ├── contract_hello_test.sh ├── env.sh ├── grep.sh ├── kill.sh ├── reboot.sh └── unlock.sh ├── ide-debug ├── 0_boot_all_in_one.sh ├── 1_start.sh ├── 2_deploy_bios.sh ├── 3_create_system_accounts.sh ├── 4_deploy_token.sh ├── 5_deploy_system.sh ├── 6_kick_off_shuffle.sh ├── 7_create_accounts.sh ├── 8_resign_eosio.sh ├── clean.sh ├── config-dir │ ├── config.ini │ └── genesis.json ├── config.sh ├── env.sh ├── grep.sh └── kill.sh ├── launch-scripts ├── 1_start.sh ├── 2_deploy_bios.sh ├── 3_deploy_token.sh ├── 4_create_and_issue.sh ├── 5_deploy_system.sh ├── 6_create_account.sh ├── 7_reg_prod.sh ├── 8_transfer.sh ├── 9_vote_producer.sh ├── buyram.sh ├── check_balance.sh ├── check_votes.sh ├── clear.sh ├── config-dir │ ├── config.ini │ └── genesis.json ├── env.sh ├── grep.sh ├── kill.sh ├── regproxy.sh ├── sellram.sh ├── set_priv.sh ├── set_producer.sh ├── set_ram.sh ├── unlock_wallet.sh └── watch.sh ├── scripts-bos-test ├── contracts │ ├── eosio.bios │ │ ├── eosio.bios.abi │ │ ├── eosio.bios.abi.hpp │ │ └── eosio.bios.wasm │ ├── eosio.msig │ │ ├── eosio.msig.abi │ │ ├── eosio.msig.abi.hpp │ │ └── eosio.msig.wasm │ ├── eosio.sudo │ │ ├── eosio.sudo.abi │ │ ├── eosio.sudo.abi.hpp │ │ └── eosio.sudo.wasm │ ├── eosio.system │ │ ├── eosio.system.abi │ │ ├── eosio.system.abi.hpp │ │ └── eosio.system.wasm │ └── eosio.token │ │ ├── eosio.token.abi │ │ ├── eosio.token.abi.hpp │ │ └── eosio.token.wasm ├── cron-vote-bos-test.sh ├── env-bos-test.sh ├── start-bos-test.sh ├── upgrade.sh └── upgrade │ ├── eosio.system.abi │ └── eosio.system.wasm └── vote-scripts ├── create_account.sh ├── create_voter_account.sh ├── delegate_bandwidth.sh ├── eosio_transfer_token.sh ├── get_account_resource.sh ├── get_account_resource_from_table.sh ├── get_balance.sh ├── get_producer_info.sh ├── get_refund_time.sh ├── get_totalband.sh ├── get_voter_account.sh ├── issue_token.sh ├── reg_producer.sh ├── start_docker_mysql.sh ├── undelegate_bandwidth.sh └── vote_producer.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/README.md -------------------------------------------------------------------------------- /boot-scripts-1.2.1/0_boot_all_in_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/0_boot_all_in_one.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/1_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/1_start.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/2_deploy_bios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/2_deploy_bios.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/3_create_system_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/3_create_system_accounts.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/4_deploy_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/4_deploy_token.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/5_deploy_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/5_deploy_system.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/6_kick_off_shuffle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/6_kick_off_shuffle.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/7_create_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/7_create_accounts.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/8_resign_eosio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/8_resign_eosio.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot-scripts-1.2.1/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/clean.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/config-dir/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/config-dir/config.ini -------------------------------------------------------------------------------- /boot-scripts-1.2.1/config-dir/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/config-dir/genesis.json -------------------------------------------------------------------------------- /boot-scripts-1.2.1/contract_hello_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/contract_hello_test.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/env.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/grep.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/kill.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/reboot.sh -------------------------------------------------------------------------------- /boot-scripts-1.2.1/unlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/boot-scripts-1.2.1/unlock.sh -------------------------------------------------------------------------------- /ide-debug/0_boot_all_in_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/0_boot_all_in_one.sh -------------------------------------------------------------------------------- /ide-debug/1_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/1_start.sh -------------------------------------------------------------------------------- /ide-debug/2_deploy_bios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/2_deploy_bios.sh -------------------------------------------------------------------------------- /ide-debug/3_create_system_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/3_create_system_accounts.sh -------------------------------------------------------------------------------- /ide-debug/4_deploy_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/4_deploy_token.sh -------------------------------------------------------------------------------- /ide-debug/5_deploy_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/5_deploy_system.sh -------------------------------------------------------------------------------- /ide-debug/6_kick_off_shuffle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/6_kick_off_shuffle.sh -------------------------------------------------------------------------------- /ide-debug/7_create_accounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/7_create_accounts.sh -------------------------------------------------------------------------------- /ide-debug/8_resign_eosio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/8_resign_eosio.sh -------------------------------------------------------------------------------- /ide-debug/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/clean.sh -------------------------------------------------------------------------------- /ide-debug/config-dir/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/config-dir/config.ini -------------------------------------------------------------------------------- /ide-debug/config-dir/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/config-dir/genesis.json -------------------------------------------------------------------------------- /ide-debug/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/config.sh -------------------------------------------------------------------------------- /ide-debug/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/env.sh -------------------------------------------------------------------------------- /ide-debug/grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/grep.sh -------------------------------------------------------------------------------- /ide-debug/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/ide-debug/kill.sh -------------------------------------------------------------------------------- /launch-scripts/1_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/1_start.sh -------------------------------------------------------------------------------- /launch-scripts/2_deploy_bios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/2_deploy_bios.sh -------------------------------------------------------------------------------- /launch-scripts/3_deploy_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/3_deploy_token.sh -------------------------------------------------------------------------------- /launch-scripts/4_create_and_issue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/4_create_and_issue.sh -------------------------------------------------------------------------------- /launch-scripts/5_deploy_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/5_deploy_system.sh -------------------------------------------------------------------------------- /launch-scripts/6_create_account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/6_create_account.sh -------------------------------------------------------------------------------- /launch-scripts/7_reg_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/7_reg_prod.sh -------------------------------------------------------------------------------- /launch-scripts/8_transfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/8_transfer.sh -------------------------------------------------------------------------------- /launch-scripts/9_vote_producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/9_vote_producer.sh -------------------------------------------------------------------------------- /launch-scripts/buyram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/buyram.sh -------------------------------------------------------------------------------- /launch-scripts/check_balance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/check_balance.sh -------------------------------------------------------------------------------- /launch-scripts/check_votes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/check_votes.sh -------------------------------------------------------------------------------- /launch-scripts/clear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/clear.sh -------------------------------------------------------------------------------- /launch-scripts/config-dir/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/config-dir/config.ini -------------------------------------------------------------------------------- /launch-scripts/config-dir/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/config-dir/genesis.json -------------------------------------------------------------------------------- /launch-scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/env.sh -------------------------------------------------------------------------------- /launch-scripts/grep.sh: -------------------------------------------------------------------------------- 1 | ps aux | grep eos 2 | -------------------------------------------------------------------------------- /launch-scripts/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/kill.sh -------------------------------------------------------------------------------- /launch-scripts/regproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/regproxy.sh -------------------------------------------------------------------------------- /launch-scripts/sellram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/sellram.sh -------------------------------------------------------------------------------- /launch-scripts/set_priv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/set_priv.sh -------------------------------------------------------------------------------- /launch-scripts/set_producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/set_producer.sh -------------------------------------------------------------------------------- /launch-scripts/set_ram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/launch-scripts/set_ram.sh -------------------------------------------------------------------------------- /launch-scripts/unlock_wallet.sh: -------------------------------------------------------------------------------- 1 | cleos wallet unlock --password=PW5HzNaafwDzd9GbxwFZKb7YjrpmjBr4afuVMRSm6iXbPumSZ1Kek 2 | -------------------------------------------------------------------------------- /launch-scripts/watch.sh: -------------------------------------------------------------------------------- 1 | tail -f -n 100 logs/eos.log 2 | -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.bios/eosio.bios.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.bios/eosio.bios.abi -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.bios/eosio.bios.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.bios/eosio.bios.abi.hpp -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.bios/eosio.bios.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.bios/eosio.bios.wasm -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.msig/eosio.msig.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.msig/eosio.msig.abi -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.msig/eosio.msig.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.msig/eosio.msig.abi.hpp -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.msig/eosio.msig.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.msig/eosio.msig.wasm -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.sudo/eosio.sudo.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.sudo/eosio.sudo.abi -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.sudo/eosio.sudo.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.sudo/eosio.sudo.abi.hpp -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.sudo/eosio.sudo.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.sudo/eosio.sudo.wasm -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.system/eosio.system.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.system/eosio.system.abi -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.system/eosio.system.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.system/eosio.system.abi.hpp -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.system/eosio.system.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.system/eosio.system.wasm -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.token/eosio.token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.token/eosio.token.abi -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.token/eosio.token.abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.token/eosio.token.abi.hpp -------------------------------------------------------------------------------- /scripts-bos-test/contracts/eosio.token/eosio.token.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/contracts/eosio.token/eosio.token.wasm -------------------------------------------------------------------------------- /scripts-bos-test/cron-vote-bos-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/cron-vote-bos-test.sh -------------------------------------------------------------------------------- /scripts-bos-test/env-bos-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/env-bos-test.sh -------------------------------------------------------------------------------- /scripts-bos-test/start-bos-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/start-bos-test.sh -------------------------------------------------------------------------------- /scripts-bos-test/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/upgrade.sh -------------------------------------------------------------------------------- /scripts-bos-test/upgrade/eosio.system.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/upgrade/eosio.system.abi -------------------------------------------------------------------------------- /scripts-bos-test/upgrade/eosio.system.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/scripts-bos-test/upgrade/eosio.system.wasm -------------------------------------------------------------------------------- /vote-scripts/create_account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/create_account.sh -------------------------------------------------------------------------------- /vote-scripts/create_voter_account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/create_voter_account.sh -------------------------------------------------------------------------------- /vote-scripts/delegate_bandwidth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/delegate_bandwidth.sh -------------------------------------------------------------------------------- /vote-scripts/eosio_transfer_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/eosio_transfer_token.sh -------------------------------------------------------------------------------- /vote-scripts/get_account_resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_account_resource.sh -------------------------------------------------------------------------------- /vote-scripts/get_account_resource_from_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_account_resource_from_table.sh -------------------------------------------------------------------------------- /vote-scripts/get_balance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_balance.sh -------------------------------------------------------------------------------- /vote-scripts/get_producer_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_producer_info.sh -------------------------------------------------------------------------------- /vote-scripts/get_refund_time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_refund_time.sh -------------------------------------------------------------------------------- /vote-scripts/get_totalband.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_totalband.sh -------------------------------------------------------------------------------- /vote-scripts/get_voter_account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/get_voter_account.sh -------------------------------------------------------------------------------- /vote-scripts/issue_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/issue_token.sh -------------------------------------------------------------------------------- /vote-scripts/reg_producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/reg_producer.sh -------------------------------------------------------------------------------- /vote-scripts/start_docker_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/start_docker_mysql.sh -------------------------------------------------------------------------------- /vote-scripts/undelegate_bandwidth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/undelegate_bandwidth.sh -------------------------------------------------------------------------------- /vote-scripts/vote_producer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosiosg/scripts/HEAD/vote-scripts/vote_producer.sh --------------------------------------------------------------------------------