-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#40 Clean Up Clippy Warnings & Docker
- Loading branch information
1 parent
5b5592f
commit 96cc79b
Showing
2 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/bin/bash | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/creator.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/payer.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/creator.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/payer.keypair airdrop 100 | ||
|
||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/voters/voter1.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/voters/voter2.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/voters/voter3.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/voters/voter4.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair /opt/artifacts/voters/voter5.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/voters/voter1.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/voters/voter2.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/voters/voter3.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/voters/voter4.keypair airdrop 100 | ||
solana -v --url http://localhost:8899 --keypair artifacts/voters/voter5.keypair airdrop 100 | ||
|
||
spl-token --url http://localhost:8899 create-token --decimals 6 --fee-payer /opt/artifacts/payer.keypair /opt/artifacts/community-mint.keypair | ||
spl-token --url http://localhost:8899 create-token --decimals 6 --fee-payer artifacts/payer.keypair artifacts/community-mint.keypair | ||
|
||
solana program deploy --url http://localhost:8899 --program-id /opt/artifacts/spl-governance.keypair -v /opt/spl_governance.so | ||
solana program deploy --url http://localhost:8899 --program-id artifacts/spl-governance.keypair -v deploy/spl_governance.so | ||
|
||
solana program deploy --url http://localhost:8899 --program-id /opt/artifacts/addin-fixed-weights.keypair -v /opt/spl_governance_addin_fixed_weights.so | ||
solana program deploy --url http://localhost:8899 --program-id artifacts/addin-fixed-weights.keypair -v deploy/spl_governance_addin_fixed_weights.so | ||
|
||
solana program deploy --url http://localhost:8899 --program-id /opt/artifacts/addin-vesting.keypair -v /opt/spl_governance_addin_vesting.so | ||
solana program deploy --url http://localhost:8899 --program-id artifacts/addin-vesting.keypair -v deploy/spl_governance_addin_vesting.so | ||
|
||
solana program deploy --url http://localhost:8899 --program-id /opt/artifacts/maintenance.keypair -v /opt/maintenance.so | ||
solana program deploy --url http://localhost:8899 --program-id artifacts/maintenance.keypair -v deploy/maintenance.so |