devnet_setup.sh 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/usr/bin/env bash
  2. # This script configures the devnet for test transfers with hardcoded addresses.
  3. set -xu
  4. # Configure CLI (works the same as upstream Solana CLI)
  5. mkdir -p ~/.config/solana/cli
  6. cat <<EOF > ~/.config/solana/cli/config.yml
  7. json_rpc_url: "http://127.0.0.1:8899"
  8. websocket_url: ""
  9. keypair_path: /usr/src/solana/keys/solana-devnet.json
  10. EOF
  11. # Static key for the mint so it always has the same address
  12. cat <<EOF > token.json
  13. [179,228,102,38,68,102,75,133,127,56,63,167,143,42,59,29,220,215,100,149,220,241,176,204,154,241,168,147,195,139,55,100,22,88,9,115,146,64,160,172,3,185,132,64,254,137,133,84,142,58,166,131,205,13,77,157,245,181,101,150,105,250,163,1]
  14. EOF
  15. # Static key for the NFT mint so it always has the same address
  16. cat <<EOF > nft.json
  17. [155,117,110,235,96,214,56,128,109,79,49,209,212,13,134,5,43,123,213,68,21,156,128,100,95,8,43,51,188,230,21,197,156,0,108,72,200,203,243,56,73,203,7,163,249,54,21,156,197,35,249,89,28,177,153,154,189,69,137,14,197,254,233,183]
  18. EOF
  19. # Static key for the 2nd NFT mint so it always has the same address
  20. cat <<EOF > nft2.json
  21. [40,74,92,250,81,56,202,67,129,124,193,219,24,161,198,98,191,214,136,7,112,26,72,17,33,249,24,225,183,237,27,216,11,179,26,170,82,220,3,253,152,185,151,186,12,21,138,161,175,46,180,3,167,165,70,51,128,45,237,143,146,49,34,180]
  22. EOF
  23. # Constants
  24. cli_address=6sbzC1eH4FTujJXWj51eQe25cYvr4xfXbJ1vAj7j2k5J
  25. bridge_address=Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o
  26. nft_bridge_address=NFTWqJR8YnRVqPDvTJrYuLrQDitTG5AScqbeghi4zSA
  27. token_bridge_address=B6RHG3mfcckmrYN1UhmJzyS1XX3fZKbkeUcpJe9Sy3FE
  28. recipient_address=90F8bf6A479f320ead074411a4B0e7944Ea8c9C1
  29. chain_id_ethereum=2
  30. # load the .env file with the devent init data
  31. source .env
  32. retry () {
  33. while ! $@; do
  34. sleep 1
  35. done
  36. }
  37. # Fund our account (as defined in solana/keys/solana-devnet.json).
  38. retry solana airdrop 1000
  39. # Create a new SPL token
  40. token=$(spl-token create-token -- token.json | grep 'Creating token' | awk '{ print $3 }')
  41. echo "Created token $token"
  42. # Create token account
  43. account=$(spl-token create-account "$token" | grep 'Creating account' | awk '{ print $3 }')
  44. echo "Created token account $account"
  45. # Mint new tokens owned by our CLI account
  46. spl-token mint "$token" 10000000000 "$account"
  47. # Create meta for token
  48. token-bridge-client create-meta "$token" "Solana Test Token" "SOLT" ""
  49. # Create a new SPL NFT
  50. nft=$(spl-token create-token --decimals 0 -- nft.json | grep 'Creating token' | awk '{ print $3 }')
  51. echo "Created NFT $nft"
  52. # Create NFT account
  53. nft_account=$(spl-token create-account "$nft" | grep 'Creating account' | awk '{ print $3 }')
  54. echo "Created NFT account $nft_account"
  55. # Mint new NFT owned by our CLI account
  56. spl-token mint "$nft" 1 "$nft_account"
  57. # Create meta for token
  58. token-bridge-client create-meta "$nft" "Not a PUNK🎸" "PUNK🎸" "https://wrappedpunks.com:3000/api/punks/metadata/39"
  59. nft=$(spl-token create-token --decimals 0 -- nft2.json | grep 'Creating token' | awk '{ print $3 }')
  60. echo "Created NFT $nft"
  61. nft_account=$(spl-token create-account "$nft" | grep 'Creating account' | awk '{ print $3 }')
  62. echo "Created NFT account $nft_account"
  63. spl-token mint "$nft" 1 "$nft_account"
  64. token-bridge-client create-meta "$nft" "Not a PUNK 2🎸" "PUNK2🎸" "https://wrappedpunks.com:3000/api/punks/metadata/51"
  65. # Create the bridge contract at a known address
  66. # OK to fail on subsequent attempts (already created).
  67. retry client create-bridge "$bridge_address" "$INIT_SIGNERS_CSV" 86400 100
  68. # Initialize the token bridge
  69. retry token-bridge-client create-bridge "$token_bridge_address" "$bridge_address"
  70. # Initialize the NFT bridge
  71. retry token-bridge-client create-bridge "$nft_bridge_address" "$bridge_address"
  72. # pass the chain registration VAAs sourced from .env to the client's execute-governance command:
  73. pushd /usr/src/clients/token_bridge
  74. # Register the Token Bridge Endpoint on ETH
  75. node main.js solana execute_governance_vaa "$REGISTER_ETH_TOKEN_BRIDGE_VAA"
  76. node main.js solana execute_governance_vaa "$REGISTER_TERRA_TOKEN_BRIDGE_VAA"
  77. node main.js solana execute_governance_vaa "$REGISTER_BSC_TOKEN_BRIDGE_VAA"
  78. node main.js solana execute_governance_vaa "$REGISTER_ALGO_TOKEN_BRIDGE_VAA"
  79. popd
  80. pushd /usr/src/clients/nft_bridge
  81. # Register the NFT Bridge Endpoint on ETH
  82. node main.js solana execute_governance_vaa "$REGISTER_ETH_NFT_BRIDGE_VAA"
  83. node main.js solana execute_governance_vaa "$REGISTER_TERRA_NFT_BRIDGE_VAA"
  84. popd
  85. # Let k8s startup probe succeed
  86. nc -k -l -p 2000