├── .env ├── .gitignore ├── .gitmodules ├── README.md ├── bin └── .gitkeep ├── bsc_cluster.sh ├── bsc_fullnode.sh ├── config.toml ├── create-validator ├── abi │ ├── StakeHub.abi │ └── StakeHub.go ├── go.mod ├── go.sum └── main.go ├── keys ├── bls0 │ └── bls │ │ ├── keystore │ │ └── keystore-ideally-enough-skink.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls1 │ └── bls │ │ ├── keystore │ │ └── keystore-thankfully-charming-sheepdog.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls10 │ └── bls │ │ ├── keystore │ │ └── keystore-quietly-safe-walrus.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls11 │ └── bls │ │ ├── keystore │ │ └── keystore-fairly-fit-mule.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls12 │ └── bls │ │ ├── keystore │ │ └── keystore-terribly-humorous-porpoise.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls13 │ └── bls │ │ ├── keystore │ │ └── keystore-intensely-golden-honeybee.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls14 │ └── bls │ │ ├── keystore │ │ └── keystore-blatantly-inspired-jawfish.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls15 │ └── bls │ │ ├── keystore │ │ └── keystore-closely-profound-pheasant.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls16 │ └── bls │ │ ├── keystore │ │ └── keystore-oddly-brave-foxhound.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls17 │ └── bls │ │ ├── keystore │ │ └── keystore-lightly-united-lacewing.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls18 │ └── bls │ │ ├── keystore │ │ └── keystore-nationally-casual-crow.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls19 │ └── bls │ │ ├── keystore │ │ └── keystore-actively-mutual-viper.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls2 │ └── bls │ │ ├── keystore │ │ └── keystore-brightly-informed-monarch.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls20 │ └── bls │ │ ├── keystore │ │ └── keystore-hardly-precious-boar.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls3 │ └── bls │ │ ├── keystore │ │ └── keystore-externally-splendid-liger.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls4 │ └── bls │ │ ├── keystore │ │ └── keystore-evenly-super-sculpin.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls5 │ └── bls │ │ ├── keystore │ │ └── keystore-scarcely-concise-stallion.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls6 │ └── bls │ │ ├── keystore │ │ └── keystore-properly-prepared-colt.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls7 │ └── bls │ │ ├── keystore │ │ └── keystore-factually-simple-hen.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls8 │ └── bls │ │ ├── keystore │ │ └── keystore-strangely-probable-skink.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── bls9 │ └── bls │ │ ├── keystore │ │ └── keystore-remotely-wise-flounder.json │ │ └── wallet │ │ └── direct │ │ └── accounts │ │ └── all-accounts.keystore.json ├── fullnode-nodekey0 ├── password.txt ├── sentry-nodekey0 ├── sentry-nodekey1 ├── sentry-nodekey10 ├── sentry-nodekey11 ├── sentry-nodekey12 ├── sentry-nodekey13 ├── sentry-nodekey14 ├── sentry-nodekey15 ├── sentry-nodekey16 ├── sentry-nodekey17 ├── sentry-nodekey18 ├── sentry-nodekey19 ├── sentry-nodekey2 ├── sentry-nodekey20 ├── sentry-nodekey3 ├── sentry-nodekey4 ├── sentry-nodekey5 ├── sentry-nodekey6 ├── sentry-nodekey7 ├── sentry-nodekey8 ├── sentry-nodekey9 ├── validator-nodekey0 ├── validator-nodekey1 ├── validator-nodekey10 ├── validator-nodekey11 ├── validator-nodekey12 ├── validator-nodekey13 ├── validator-nodekey14 ├── validator-nodekey15 ├── validator-nodekey16 ├── validator-nodekey17 ├── validator-nodekey18 ├── validator-nodekey19 ├── validator-nodekey2 ├── validator-nodekey20 ├── validator-nodekey3 ├── validator-nodekey4 ├── validator-nodekey5 ├── validator-nodekey6 ├── validator-nodekey7 ├── validator-nodekey8 ├── validator-nodekey9 ├── validator0 │ └── keystore │ │ └── UTC--2024-05-10T03-37-35.756992000Z--bcdd0d2cda5f6423e57b6a4dcd75decbe31aecf0 ├── validator1 │ └── keystore │ │ └── UTC--2024-05-10T03-37-36.999615000Z--bbd1acc20bd8304309d31d8fd235210d0efc049d ├── validator10 │ └── keystore │ │ └── UTC--2024-05-10T03-37-47.546855000Z--6c73f4f3295f83ce342e4a82e8a50d218442451b ├── validator11 │ └── keystore │ │ └── UTC--2024-05-10T03-37-48.727297000Z--c12cf70a667d541a33bd51c623f8a7024ed8c2fe ├── validator12 │ └── keystore │ │ └── UTC--2024-05-10T03-37-49.882656000Z--d2d3139575c2824d793d1664c2e1aaeecade11c0 ├── validator13 │ └── keystore │ │ └── UTC--2024-05-10T03-37-51.066512000Z--20be3a44b2ae6be29acf84ed63afe60b09179cdc ├── validator14 │ └── keystore │ │ └── UTC--2024-05-10T03-37-52.225601000Z--50b947c8643c7694037b29545fbc423951e28442 ├── validator15 │ └── keystore │ │ └── UTC--2024-05-10T03-37-53.380365000Z--a8938f397823afcaa252bb7df137d39396456983 ├── validator16 │ └── keystore │ │ └── UTC--2024-05-10T03-37-54.541503000Z--5a7ae634876fb264f97eacc24a9261005e9bc39a ├── validator17 │ └── keystore │ │ └── UTC--2024-05-10T03-37-55.710056000Z--511aa4d222618f8698feaab811023ca4e8bebfe5 ├── validator18 │ └── keystore │ │ └── UTC--2024-05-10T03-37-56.889122000Z--e9693a85e563485da999b7d378d60483e89caa0e ├── validator19 │ └── keystore │ │ └── UTC--2024-05-10T03-37-58.108768000Z--9b50a300da0cd7e036ec2cc12418756ec07004bd ├── validator2 │ └── keystore │ │ └── UTC--2024-05-10T03-37-38.188296000Z--5e2a531a825d8b61bcc305a35a7433e9a8920f0f ├── validator20 │ └── keystore │ │ └── UTC--2024-05-10T03-37-59.267627000Z--297e5ebba75bbb67de013eb3d319dd0a2a9861e9 ├── validator3 │ └── keystore │ │ └── UTC--2024-05-10T03-37-39.369896000Z--3ad55d1d552cc55dee90c0faf0335383b2e6c5ce ├── validator4 │ └── keystore │ │ └── UTC--2024-05-10T03-37-40.555995000Z--fe02c8ff2374583c47b1d62fdf3e1b72c20ebe29 ├── validator5 │ └── keystore │ │ └── UTC--2024-05-10T03-37-41.730034000Z--f7698afa5461438ff438c2322d6d29a5f7abdffd ├── validator6 │ └── keystore │ │ └── UTC--2024-05-10T03-37-42.892871000Z--5fda3ff6ea581ea7a5a9c2cb310b13c2126b4e8b ├── validator7 │ └── keystore │ │ └── UTC--2024-05-10T03-37-44.057099000Z--d30d79639bc9c4ed71031bce28216862b80f4b6b ├── validator8 │ └── keystore │ │ └── UTC--2024-05-10T03-37-45.214044000Z--51cb3d0f6b77ef8317b31f4aaeaa75e4cff3cca7 └── validator9 │ └── keystore │ └── UTC--2024-05-10T03-37-46.375102000Z--abb28e397ae478366271806b4851d81a678e404b ├── requirements.txt ├── txblob ├── go.mod ├── go.sum └── main.go └── txbot ├── go.mod ├── go.sum └── main.go /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except geth -------------------------------------------------------------------------------- /bsc_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/bsc_cluster.sh -------------------------------------------------------------------------------- /bsc_fullnode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/bsc_fullnode.sh -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/config.toml -------------------------------------------------------------------------------- /create-validator/abi/StakeHub.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/create-validator/abi/StakeHub.abi -------------------------------------------------------------------------------- /create-validator/abi/StakeHub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/create-validator/abi/StakeHub.go -------------------------------------------------------------------------------- /create-validator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/create-validator/go.mod -------------------------------------------------------------------------------- /create-validator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/create-validator/go.sum -------------------------------------------------------------------------------- /create-validator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/create-validator/main.go -------------------------------------------------------------------------------- /keys/bls0/bls/keystore/keystore-ideally-enough-skink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls0/bls/keystore/keystore-ideally-enough-skink.json -------------------------------------------------------------------------------- /keys/bls0/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls0/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls1/bls/keystore/keystore-thankfully-charming-sheepdog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls1/bls/keystore/keystore-thankfully-charming-sheepdog.json -------------------------------------------------------------------------------- /keys/bls1/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls1/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls10/bls/keystore/keystore-quietly-safe-walrus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls10/bls/keystore/keystore-quietly-safe-walrus.json -------------------------------------------------------------------------------- /keys/bls10/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls10/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls11/bls/keystore/keystore-fairly-fit-mule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls11/bls/keystore/keystore-fairly-fit-mule.json -------------------------------------------------------------------------------- /keys/bls11/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls11/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls12/bls/keystore/keystore-terribly-humorous-porpoise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls12/bls/keystore/keystore-terribly-humorous-porpoise.json -------------------------------------------------------------------------------- /keys/bls12/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls12/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls13/bls/keystore/keystore-intensely-golden-honeybee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls13/bls/keystore/keystore-intensely-golden-honeybee.json -------------------------------------------------------------------------------- /keys/bls13/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls13/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls14/bls/keystore/keystore-blatantly-inspired-jawfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls14/bls/keystore/keystore-blatantly-inspired-jawfish.json -------------------------------------------------------------------------------- /keys/bls14/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls14/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls15/bls/keystore/keystore-closely-profound-pheasant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls15/bls/keystore/keystore-closely-profound-pheasant.json -------------------------------------------------------------------------------- /keys/bls15/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls15/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls16/bls/keystore/keystore-oddly-brave-foxhound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls16/bls/keystore/keystore-oddly-brave-foxhound.json -------------------------------------------------------------------------------- /keys/bls16/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls16/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls17/bls/keystore/keystore-lightly-united-lacewing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls17/bls/keystore/keystore-lightly-united-lacewing.json -------------------------------------------------------------------------------- /keys/bls17/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls17/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls18/bls/keystore/keystore-nationally-casual-crow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls18/bls/keystore/keystore-nationally-casual-crow.json -------------------------------------------------------------------------------- /keys/bls18/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls18/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls19/bls/keystore/keystore-actively-mutual-viper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls19/bls/keystore/keystore-actively-mutual-viper.json -------------------------------------------------------------------------------- /keys/bls19/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls19/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls2/bls/keystore/keystore-brightly-informed-monarch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls2/bls/keystore/keystore-brightly-informed-monarch.json -------------------------------------------------------------------------------- /keys/bls2/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls2/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls20/bls/keystore/keystore-hardly-precious-boar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls20/bls/keystore/keystore-hardly-precious-boar.json -------------------------------------------------------------------------------- /keys/bls20/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls20/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls3/bls/keystore/keystore-externally-splendid-liger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls3/bls/keystore/keystore-externally-splendid-liger.json -------------------------------------------------------------------------------- /keys/bls3/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls3/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls4/bls/keystore/keystore-evenly-super-sculpin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls4/bls/keystore/keystore-evenly-super-sculpin.json -------------------------------------------------------------------------------- /keys/bls4/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls4/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls5/bls/keystore/keystore-scarcely-concise-stallion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls5/bls/keystore/keystore-scarcely-concise-stallion.json -------------------------------------------------------------------------------- /keys/bls5/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls5/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls6/bls/keystore/keystore-properly-prepared-colt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls6/bls/keystore/keystore-properly-prepared-colt.json -------------------------------------------------------------------------------- /keys/bls6/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls6/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls7/bls/keystore/keystore-factually-simple-hen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls7/bls/keystore/keystore-factually-simple-hen.json -------------------------------------------------------------------------------- /keys/bls7/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls7/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls8/bls/keystore/keystore-strangely-probable-skink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls8/bls/keystore/keystore-strangely-probable-skink.json -------------------------------------------------------------------------------- /keys/bls8/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls8/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/bls9/bls/keystore/keystore-remotely-wise-flounder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls9/bls/keystore/keystore-remotely-wise-flounder.json -------------------------------------------------------------------------------- /keys/bls9/bls/wallet/direct/accounts/all-accounts.keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/bls9/bls/wallet/direct/accounts/all-accounts.keystore.json -------------------------------------------------------------------------------- /keys/fullnode-nodekey0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/fullnode-nodekey0 -------------------------------------------------------------------------------- /keys/password.txt: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /keys/sentry-nodekey0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey0 -------------------------------------------------------------------------------- /keys/sentry-nodekey1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey1 -------------------------------------------------------------------------------- /keys/sentry-nodekey10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey10 -------------------------------------------------------------------------------- /keys/sentry-nodekey11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey11 -------------------------------------------------------------------------------- /keys/sentry-nodekey12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey12 -------------------------------------------------------------------------------- /keys/sentry-nodekey13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey13 -------------------------------------------------------------------------------- /keys/sentry-nodekey14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey14 -------------------------------------------------------------------------------- /keys/sentry-nodekey15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey15 -------------------------------------------------------------------------------- /keys/sentry-nodekey16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey16 -------------------------------------------------------------------------------- /keys/sentry-nodekey17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey17 -------------------------------------------------------------------------------- /keys/sentry-nodekey18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey18 -------------------------------------------------------------------------------- /keys/sentry-nodekey19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey19 -------------------------------------------------------------------------------- /keys/sentry-nodekey2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey2 -------------------------------------------------------------------------------- /keys/sentry-nodekey20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey20 -------------------------------------------------------------------------------- /keys/sentry-nodekey3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey3 -------------------------------------------------------------------------------- /keys/sentry-nodekey4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey4 -------------------------------------------------------------------------------- /keys/sentry-nodekey5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey5 -------------------------------------------------------------------------------- /keys/sentry-nodekey6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey6 -------------------------------------------------------------------------------- /keys/sentry-nodekey7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey7 -------------------------------------------------------------------------------- /keys/sentry-nodekey8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey8 -------------------------------------------------------------------------------- /keys/sentry-nodekey9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/sentry-nodekey9 -------------------------------------------------------------------------------- /keys/validator-nodekey0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey0 -------------------------------------------------------------------------------- /keys/validator-nodekey1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey1 -------------------------------------------------------------------------------- /keys/validator-nodekey10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey10 -------------------------------------------------------------------------------- /keys/validator-nodekey11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey11 -------------------------------------------------------------------------------- /keys/validator-nodekey12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey12 -------------------------------------------------------------------------------- /keys/validator-nodekey13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey13 -------------------------------------------------------------------------------- /keys/validator-nodekey14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey14 -------------------------------------------------------------------------------- /keys/validator-nodekey15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey15 -------------------------------------------------------------------------------- /keys/validator-nodekey16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey16 -------------------------------------------------------------------------------- /keys/validator-nodekey17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey17 -------------------------------------------------------------------------------- /keys/validator-nodekey18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey18 -------------------------------------------------------------------------------- /keys/validator-nodekey19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey19 -------------------------------------------------------------------------------- /keys/validator-nodekey2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey2 -------------------------------------------------------------------------------- /keys/validator-nodekey20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey20 -------------------------------------------------------------------------------- /keys/validator-nodekey3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey3 -------------------------------------------------------------------------------- /keys/validator-nodekey4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey4 -------------------------------------------------------------------------------- /keys/validator-nodekey5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey5 -------------------------------------------------------------------------------- /keys/validator-nodekey6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey6 -------------------------------------------------------------------------------- /keys/validator-nodekey7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey7 -------------------------------------------------------------------------------- /keys/validator-nodekey8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey8 -------------------------------------------------------------------------------- /keys/validator-nodekey9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator-nodekey9 -------------------------------------------------------------------------------- /keys/validator0/keystore/UTC--2024-05-10T03-37-35.756992000Z--bcdd0d2cda5f6423e57b6a4dcd75decbe31aecf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator0/keystore/UTC--2024-05-10T03-37-35.756992000Z--bcdd0d2cda5f6423e57b6a4dcd75decbe31aecf0 -------------------------------------------------------------------------------- /keys/validator1/keystore/UTC--2024-05-10T03-37-36.999615000Z--bbd1acc20bd8304309d31d8fd235210d0efc049d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator1/keystore/UTC--2024-05-10T03-37-36.999615000Z--bbd1acc20bd8304309d31d8fd235210d0efc049d -------------------------------------------------------------------------------- /keys/validator10/keystore/UTC--2024-05-10T03-37-47.546855000Z--6c73f4f3295f83ce342e4a82e8a50d218442451b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator10/keystore/UTC--2024-05-10T03-37-47.546855000Z--6c73f4f3295f83ce342e4a82e8a50d218442451b -------------------------------------------------------------------------------- /keys/validator11/keystore/UTC--2024-05-10T03-37-48.727297000Z--c12cf70a667d541a33bd51c623f8a7024ed8c2fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator11/keystore/UTC--2024-05-10T03-37-48.727297000Z--c12cf70a667d541a33bd51c623f8a7024ed8c2fe -------------------------------------------------------------------------------- /keys/validator12/keystore/UTC--2024-05-10T03-37-49.882656000Z--d2d3139575c2824d793d1664c2e1aaeecade11c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator12/keystore/UTC--2024-05-10T03-37-49.882656000Z--d2d3139575c2824d793d1664c2e1aaeecade11c0 -------------------------------------------------------------------------------- /keys/validator13/keystore/UTC--2024-05-10T03-37-51.066512000Z--20be3a44b2ae6be29acf84ed63afe60b09179cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator13/keystore/UTC--2024-05-10T03-37-51.066512000Z--20be3a44b2ae6be29acf84ed63afe60b09179cdc -------------------------------------------------------------------------------- /keys/validator14/keystore/UTC--2024-05-10T03-37-52.225601000Z--50b947c8643c7694037b29545fbc423951e28442: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator14/keystore/UTC--2024-05-10T03-37-52.225601000Z--50b947c8643c7694037b29545fbc423951e28442 -------------------------------------------------------------------------------- /keys/validator15/keystore/UTC--2024-05-10T03-37-53.380365000Z--a8938f397823afcaa252bb7df137d39396456983: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator15/keystore/UTC--2024-05-10T03-37-53.380365000Z--a8938f397823afcaa252bb7df137d39396456983 -------------------------------------------------------------------------------- /keys/validator16/keystore/UTC--2024-05-10T03-37-54.541503000Z--5a7ae634876fb264f97eacc24a9261005e9bc39a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator16/keystore/UTC--2024-05-10T03-37-54.541503000Z--5a7ae634876fb264f97eacc24a9261005e9bc39a -------------------------------------------------------------------------------- /keys/validator17/keystore/UTC--2024-05-10T03-37-55.710056000Z--511aa4d222618f8698feaab811023ca4e8bebfe5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator17/keystore/UTC--2024-05-10T03-37-55.710056000Z--511aa4d222618f8698feaab811023ca4e8bebfe5 -------------------------------------------------------------------------------- /keys/validator18/keystore/UTC--2024-05-10T03-37-56.889122000Z--e9693a85e563485da999b7d378d60483e89caa0e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator18/keystore/UTC--2024-05-10T03-37-56.889122000Z--e9693a85e563485da999b7d378d60483e89caa0e -------------------------------------------------------------------------------- /keys/validator19/keystore/UTC--2024-05-10T03-37-58.108768000Z--9b50a300da0cd7e036ec2cc12418756ec07004bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator19/keystore/UTC--2024-05-10T03-37-58.108768000Z--9b50a300da0cd7e036ec2cc12418756ec07004bd -------------------------------------------------------------------------------- /keys/validator2/keystore/UTC--2024-05-10T03-37-38.188296000Z--5e2a531a825d8b61bcc305a35a7433e9a8920f0f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator2/keystore/UTC--2024-05-10T03-37-38.188296000Z--5e2a531a825d8b61bcc305a35a7433e9a8920f0f -------------------------------------------------------------------------------- /keys/validator20/keystore/UTC--2024-05-10T03-37-59.267627000Z--297e5ebba75bbb67de013eb3d319dd0a2a9861e9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator20/keystore/UTC--2024-05-10T03-37-59.267627000Z--297e5ebba75bbb67de013eb3d319dd0a2a9861e9 -------------------------------------------------------------------------------- /keys/validator3/keystore/UTC--2024-05-10T03-37-39.369896000Z--3ad55d1d552cc55dee90c0faf0335383b2e6c5ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator3/keystore/UTC--2024-05-10T03-37-39.369896000Z--3ad55d1d552cc55dee90c0faf0335383b2e6c5ce -------------------------------------------------------------------------------- /keys/validator4/keystore/UTC--2024-05-10T03-37-40.555995000Z--fe02c8ff2374583c47b1d62fdf3e1b72c20ebe29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator4/keystore/UTC--2024-05-10T03-37-40.555995000Z--fe02c8ff2374583c47b1d62fdf3e1b72c20ebe29 -------------------------------------------------------------------------------- /keys/validator5/keystore/UTC--2024-05-10T03-37-41.730034000Z--f7698afa5461438ff438c2322d6d29a5f7abdffd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator5/keystore/UTC--2024-05-10T03-37-41.730034000Z--f7698afa5461438ff438c2322d6d29a5f7abdffd -------------------------------------------------------------------------------- /keys/validator6/keystore/UTC--2024-05-10T03-37-42.892871000Z--5fda3ff6ea581ea7a5a9c2cb310b13c2126b4e8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator6/keystore/UTC--2024-05-10T03-37-42.892871000Z--5fda3ff6ea581ea7a5a9c2cb310b13c2126b4e8b -------------------------------------------------------------------------------- /keys/validator7/keystore/UTC--2024-05-10T03-37-44.057099000Z--d30d79639bc9c4ed71031bce28216862b80f4b6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator7/keystore/UTC--2024-05-10T03-37-44.057099000Z--d30d79639bc9c4ed71031bce28216862b80f4b6b -------------------------------------------------------------------------------- /keys/validator8/keystore/UTC--2024-05-10T03-37-45.214044000Z--51cb3d0f6b77ef8317b31f4aaeaa75e4cff3cca7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator8/keystore/UTC--2024-05-10T03-37-45.214044000Z--51cb3d0f6b77ef8317b31f4aaeaa75e4cff3cca7 -------------------------------------------------------------------------------- /keys/validator9/keystore/UTC--2024-05-10T03-37-46.375102000Z--abb28e397ae478366271806b4851d81a678e404b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/keys/validator9/keystore/UTC--2024-05-10T03-37-46.375102000Z--abb28e397ae478366271806b4851d81a678e404b -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/requirements.txt -------------------------------------------------------------------------------- /txblob/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txblob/go.mod -------------------------------------------------------------------------------- /txblob/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txblob/go.sum -------------------------------------------------------------------------------- /txblob/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txblob/main.go -------------------------------------------------------------------------------- /txbot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txbot/go.mod -------------------------------------------------------------------------------- /txbot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txbot/go.sum -------------------------------------------------------------------------------- /txbot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnb-chain/node-deploy/HEAD/txbot/main.go --------------------------------------------------------------------------------