From 91d5e96e9409519dc8c63ef63d260c9aadf8d8f7 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 13:36:21 +0200 Subject: [PATCH 1/7] Add step to upload artifact with contracts' json files --- .github/workflows/deploy-the-button.yaml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index 38401a0011..1de30a2649 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -143,6 +143,31 @@ jobs: source contracts/env/${{ env.CONTRACTS_ENVFILE }} && echo -n "$NODE" > env_NODE.txt aws s3 cp env_NODE.txt s3://${{ secrets.CI_S3BUCKET_NAME }}/${{ env.S3BUCKET_PATH }}/env_NODE.txt + - name: Rename metadata and addresses JSON files to artifact upload + shell: bash + run: | + cp contracts/addresses.json addresses.featurenet.json + for i in ticket_token marketplace button game_token access_control; do \ + cp contracts/"$i"/target/ink/metadata.json metadata_"$i".featurenet.json \ + done + + - name: Upload artifact with contract addresses + uses: actions/upload-artifact@v2 + with: + name: contracts-addresses + path: contracts/addresses.json + if-no-files-found: error + retention-days: 90 + + - name: Upload artifact with contract metadata + uses: actions/upload-artifact@v2 + with: + name: contracts-metadata + path: | + metadata_*.featurenet.json + if-no-files-found: error + retention-days: 90 + - name: Cache contracts' target directories in S3 bucket shell: bash run: | From b5025166d02d241b1a318a415a868d32185d0342 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 13:37:43 +0200 Subject: [PATCH 2/7] Change the upload-artifact action version from v2 to v3 --- .github/workflows/deploy-the-button.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index 1de30a2649..006e56c67e 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -152,7 +152,7 @@ jobs: done - name: Upload artifact with contract addresses - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: contracts-addresses path: contracts/addresses.json @@ -160,7 +160,7 @@ jobs: retention-days: 90 - name: Upload artifact with contract metadata - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: contracts-metadata path: | From d386c58fb191951d344da361d152dd1b4bef8f96 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 13:39:06 +0200 Subject: [PATCH 3/7] Remove unnecessary multiline --- .github/workflows/deploy-the-button.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index 006e56c67e..eddf6e5fdd 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -163,8 +163,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: contracts-metadata - path: | - metadata_*.featurenet.json + path: metadata_*.featurenet.json if-no-files-found: error retention-days: 90 From 15a0980ade6dceda3d267b351fb6c4d0a6831593 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 13:39:34 +0200 Subject: [PATCH 4/7] Fix path --- .github/workflows/deploy-the-button.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index eddf6e5fdd..b0c04a9af6 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -155,7 +155,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: contracts-addresses - path: contracts/addresses.json + path: addresses.featurenet.json if-no-files-found: error retention-days: 90 From 655084b816498a71a1575ab92070fb265bf8bd49 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 13:53:47 +0200 Subject: [PATCH 5/7] Replace 'featurenet' with env variable --- .github/workflows/deploy-the-button.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index b0c04a9af6..0865c133a9 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -146,16 +146,16 @@ jobs: - name: Rename metadata and addresses JSON files to artifact upload shell: bash run: | - cp contracts/addresses.json addresses.featurenet.json + cp contracts/addresses.json addresses.${{ env.CONTRACTS_ENVFILE }}.json for i in ticket_token marketplace button game_token access_control; do \ - cp contracts/"$i"/target/ink/metadata.json metadata_"$i".featurenet.json \ + cp contracts/"$i"/target/ink/metadata.json metadata_"$i".${{ env.CONTRACTS_ENVFILE }}.json \ done - name: Upload artifact with contract addresses uses: actions/upload-artifact@v3 with: name: contracts-addresses - path: addresses.featurenet.json + path: addresses.${{ env.CONTRACTS_ENVFILE }}.json if-no-files-found: error retention-days: 90 @@ -163,7 +163,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: contracts-metadata - path: metadata_*.featurenet.json + path: metadata_*.${{ env.CONTRACTS_ENVFILE }}.json if-no-files-found: error retention-days: 90 From bf8c52942e9a1fee13192c557eed9c4a229dcfaf Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 18:31:48 +0200 Subject: [PATCH 6/7] Add push to the events that trigger the workflow --- .github/workflows/deploy-the-button.yaml | 8 ++-- .../access_control/tmp_remove_contract_code | 37 +++++++++++++++++++ .../tmp_terminate_contract_output | 28 ++++++++++++++ .../button/tmp_terminate_contract_output | 28 ++++++++++++++ .../game_token/tmp_terminate_contract_output | 28 ++++++++++++++ .../marketplace/tmp_remove_contract_code | 37 +++++++++++++++++++ .../marketplace/tmp_terminate_contract_output | 28 ++++++++++++++ .../tmp_terminate_contract_output | 28 ++++++++++++++ 8 files changed, 219 insertions(+), 3 deletions(-) create mode 100644 contracts/access_control/tmp_remove_contract_code create mode 100644 contracts/access_control/tmp_terminate_contract_output create mode 100644 contracts/button/tmp_terminate_contract_output create mode 100644 contracts/game_token/tmp_terminate_contract_output create mode 100644 contracts/marketplace/tmp_remove_contract_code create mode 100644 contracts/marketplace/tmp_terminate_contract_output create mode 100644 contracts/ticket_token/tmp_terminate_contract_output diff --git a/.github/workflows/deploy-the-button.yaml b/.github/workflows/deploy-the-button.yaml index 0865c133a9..f9043569f7 100644 --- a/.github/workflows/deploy-the-button.yaml +++ b/.github/workflows/deploy-the-button.yaml @@ -3,9 +3,11 @@ name: Deploy The Button game on: pull_request: types: [labeled] - #push: - # branches: - # - benjamin + push: + branches: + - benjamin + paths: + - contracts/** concurrency: group: ${{ github.workflow }} diff --git a/contracts/access_control/tmp_remove_contract_code b/contracts/access_control/tmp_remove_contract_code new file mode 100644 index 0000000000..bf8a846af2 --- /dev/null +++ b/contracts/access_control/tmp_remove_contract_code @@ -0,0 +1,37 @@ +[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"chain_getBlockHash","params":[0]} +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466","id":"1"} +[2022-10-10T19:51:11Z INFO substrate_api_client::std] Got genesis hash: 0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466 +[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getMetadata","params":[null]} +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x6d6574610ee504000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f0814496e64657801102c4163636f756e74446174610114001401146e6f6e6365100114496e646578000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e7444617461000010000005050014083c70616c6c65745f62616c616e6365732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500012c6d6973635f66726f7a656e18011c42616c616e63650001286665655f66726f7a656e18011c42616c616e636500001800000507001c0c346672616d655f737570706f72741c77656967687473405065724469737061746368436c6173730404540120000c01186e6f726d616c2001045400012c6f7065726174696f6e616c200104540001246d616e6461746f727920010454000020000005060024083c7072696d69746976655f74797065731048323536000... +[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getRuntimeVersion","params":[null]} +[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":{"specName":"aleph-node","implName":"aleph-node","authoringVersion":1,"specVersion":34,"implVersion":1,"apis":[["0xdf6acb689907609b",4],["0x37e397fc7c91f5e4",1],["0x40fe3ad401f8959a",6],["0xd2bc9897eed08f15",3],["0xdd718d5cc53262d4",1],["0xf78b278be53f454c",2],["0xab3c0572291feb8b",1],["0xbc9d89904f5b923f",1],["0x37c8bb1350a9a2a8",1],["0x2be3f75b696ad1f6",1],["0x68b66ba122c93fa7",1]],"transactionVersion":9,"stateVersion":0},"id":"1"} +[2022-10-10T19:51:12Z INFO substrate_api_client::std] Runtime Version: RuntimeVersion { spec_name: RuntimeString::Owned("aleph-node"), impl_name: RuntimeString::Owned("aleph-node"), authoring_version: 1, spec_version: 34, impl_version: 1, apis: [([223, 106, 203, 104, 153, 7, 96, 155], 4), ([55, 227, 151, 252, 124, 145, 245, 228], 1), ([64, 254, 58, 212, 1, 248, 149, 154], 6), ([210, 188, 152, 151, 238, 208, 143, 21], 3), ([221, 113, 141, 92, 197, 50, 98, 212], 1), ([247, 139, 39, 139, 229, 63, 69, 76], 2), ([171, 60, 5, 114, 41, 31, 235, 139], 1), ([188, 157, 137, 144, 79, 91, 146, 63], 1), ([55, 200, 187, 19, 80, 169, 162, 168], 1), ([43, 227, 247, 91, 105, 106, 209, 246], 1), ([104, 182, 107, 161, 34, 201, 63, 167], 1)], transaction_version: 9, state_version: 0 } +[2022-10-10T19:51:12Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d +[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8c000000030000000100000000000000b97f1235c4c2aa4003000000000000000016eba3f10e00000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} +[2022-10-10T19:51:12Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d +[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8c000000030000000100000000000000b97f1235c4c2aa4003000000000000000016eba3f10e00000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} +[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"3","jsonrpc":"2.0","method":"author_submitAndWatchExtrinsic","params":["0x25028400d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d0168fe3342da7e888ee35960a662f405085a926a73444c5425d0ba6359c346d438222eb348bf49e821030ad73b6460a9dd84396c00c6364c83b329910966c4fb82003102001204d000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5"]} +[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] broadcast: Array([String("12D3KooWEjEvSi88VGk7Jw5NKYAGCCay66M14fESQJPQizHaBngk"), String("12D3KooWEbTUL6Ey3TySozVfep1osre52HMssEqLvrEqCHeLHP8Q"), String("12D3KooWLpNQiGQDhzJsiTDn5qukpyCdDRUXJxcSqj9jzp7SecVB")]) +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] inBlock: String("0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426") +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client::client] inBlock: "0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426" +[2022-10-10T19:51:13Z INFO aleph_client] Transaction `remove_code` was included in block with hash 0xe442…c426. +[2022-10-10T19:51:13Z INFO aleph_client::waiting] Creating event subscription Contracts/CodeRemoved +[2022-10-10T19:51:13Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_subscribeStorage","params":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7"]]} +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","result":"PAhFPIOEXt6lnx5I","id":"1"} +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","method":"state_storage","params":{"subscription":"PAhFPIOEXt6lnx5I","result":{"block":"0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426","changes":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7","0x1c00000000000000001c6c090000000002000000010000000508d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000505d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d0016eba3f10e000000000000000000000000010000001204d000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d50000010000000507d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000600d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00000000000000000000000000000000000000000000000000000000000000000000010000000000401d291500000000000000"]]}}} +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] wait for raw event +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(0), Event(RawEvent { pallet: "System", pallet_index: 0, variant: "ExtrinsicSuccess", variant_index: 0, data: Bytes([0, 28, 108, 9, 0, 0, 0, 0, 2, 0]) }) +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Withdraw", variant_index: 8, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 91, 235, 77, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Unreserved", variant_index: 5, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 0, 22, 235, 163, 241, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) +[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Contracts", pallet_index: 18, variant: "CodeRemoved", variant_index: 4, data: Bytes([208, 0, 71, 159, 247, 201, 211, 59, 5, 82, 157, 44, 222, 42, 123, 170, 130, 247, 123, 62, 68, 139, 167, 246, 105, 14, 26, 106, 113, 236, 167, 213]) }) +[2022-10-10T19:51:13Z INFO cliain::contracts] Received ContractCodeRemoved event ContractCodeRemovedEvent { code_hash: 0xd000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5 } +ContractCodeRemovedEvent { code_hash: 0xd000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5 } diff --git a/contracts/access_control/tmp_terminate_contract_output b/contracts/access_control/tmp_terminate_contract_output new file mode 100644 index 0000000000..3ff7b4be23 --- /dev/null +++ b/contracts/access_control/tmp_terminate_contract_output @@ -0,0 +1,28 @@ + Event Balances ➜ Withdraw + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 50535530153 + Event Contracts ➜ Terminated + contract: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 + beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + Event System ➜ KilledAccount + account: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 + Event Balances ➜ ReserveRepatriated + from: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 + to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 881000000000 + destination_status: Free + Event Balances ➜ Deposit + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 48681419294 + Event Balances ➜ Deposit + who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 + amount: 1854110859 + Event Treasury ➜ Deposit + value: 1854110859 + Event TransactionPayment ➜ TransactionFeePaid + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + actual_fee: 1854110859 + tip: 0 + Event System ➜ ExtrinsicSuccess + dispatch_info: DispatchInfo { weight: 1767812706, class: Normal, pays_fee: Yes } + diff --git a/contracts/button/tmp_terminate_contract_output b/contracts/button/tmp_terminate_contract_output new file mode 100644 index 0000000000..ee229a893e --- /dev/null +++ b/contracts/button/tmp_terminate_contract_output @@ -0,0 +1,28 @@ + Event Balances ➜ Withdraw + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 50535530153 + Event Contracts ➜ Terminated + contract: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo + beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + Event System ➜ KilledAccount + account: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo + Event Balances ➜ ReserveRepatriated + from: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo + to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 603000000000 + destination_status: Free + Event Balances ➜ Deposit + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 46322211722 + Event Balances ➜ Deposit + who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 + amount: 4213318431 + Event Treasury ➜ Deposit + value: 4213318431 + Event TransactionPayment ➜ TransactionFeePaid + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + actual_fee: 4213318431 + tip: 0 + Event System ➜ ExtrinsicSuccess + dispatch_info: DispatchInfo { weight: 4127020278, class: Normal, pays_fee: Yes } + diff --git a/contracts/game_token/tmp_terminate_contract_output b/contracts/game_token/tmp_terminate_contract_output new file mode 100644 index 0000000000..040d84c0fe --- /dev/null +++ b/contracts/game_token/tmp_terminate_contract_output @@ -0,0 +1,28 @@ + Event Balances ➜ Withdraw + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 50535530153 + Event Contracts ➜ Terminated + contract: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB + beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + Event System ➜ KilledAccount + account: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB + Event Balances ➜ ReserveRepatriated + from: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB + to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 526000000000 + destination_status: Free + Event Balances ➜ Deposit + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 45936764748 + Event Balances ➜ Deposit + who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 + amount: 4598765405 + Event Treasury ➜ Deposit + value: 4598765405 + Event TransactionPayment ➜ TransactionFeePaid + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + actual_fee: 4598765405 + tip: 0 + Event System ➜ ExtrinsicSuccess + dispatch_info: DispatchInfo { weight: 4512467252, class: Normal, pays_fee: Yes } + diff --git a/contracts/marketplace/tmp_remove_contract_code b/contracts/marketplace/tmp_remove_contract_code new file mode 100644 index 0000000000..de01eebcc8 --- /dev/null +++ b/contracts/marketplace/tmp_remove_contract_code @@ -0,0 +1,37 @@ +[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"chain_getBlockHash","params":[0]} +[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466","id":"1"} +[2022-10-10T19:51:08Z INFO substrate_api_client::std] Got genesis hash: 0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466 +[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getMetadata","params":[null]} +[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x6d6574610ee504000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f0814496e64657801102c4163636f756e74446174610114001401146e6f6e6365100114496e646578000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e7444617461000010000005050014083c70616c6c65745f62616c616e6365732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500012c6d6973635f66726f7a656e18011c42616c616e63650001286665655f66726f7a656e18011c42616c616e636500001800000507001c0c346672616d655f737570706f72741c77656967687473405065724469737061746368436c6173730404540120000c01186e6f726d616c2001045400012c6f7065726174696f6e616c200104540001246d616e6461746f727920010454000020000005060024083c7072696d69746976655f74797065731048323536000... +[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getRuntimeVersion","params":[null]} +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":{"specName":"aleph-node","implName":"aleph-node","authoringVersion":1,"specVersion":34,"implVersion":1,"apis":[["0xdf6acb689907609b",4],["0x37e397fc7c91f5e4",1],["0x40fe3ad401f8959a",6],["0xd2bc9897eed08f15",3],["0xdd718d5cc53262d4",1],["0xf78b278be53f454c",2],["0xab3c0572291feb8b",1],["0xbc9d89904f5b923f",1],["0x37c8bb1350a9a2a8",1],["0x2be3f75b696ad1f6",1],["0x68b66ba122c93fa7",1]],"transactionVersion":9,"stateVersion":0},"id":"1"} +[2022-10-10T19:51:09Z INFO substrate_api_client::std] Runtime Version: RuntimeVersion { spec_name: RuntimeString::Owned("aleph-node"), impl_name: RuntimeString::Owned("aleph-node"), authoring_version: 1, spec_version: 34, impl_version: 1, apis: [([223, 106, 203, 104, 153, 7, 96, 155], 4), ([55, 227, 151, 252, 124, 145, 245, 228], 1), ([64, 254, 58, 212, 1, 248, 149, 154], 6), ([210, 188, 152, 151, 238, 208, 143, 21], 3), ([221, 113, 141, 92, 197, 50, 98, 212], 1), ([247, 139, 39, 139, 229, 63, 69, 76], 2), ([171, 60, 5, 114, 41, 31, 235, 139], 1), ([188, 157, 137, 144, 79, 91, 146, 63], 1), ([55, 200, 187, 19, 80, 169, 162, 168], 1), ([43, 227, 247, 91, 105, 106, 209, 246], 1), ([104, 182, 107, 161, 34, 201, 63, 167], 1)], transaction_version: 9, state_version: 0 } +[2022-10-10T19:51:09Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d +[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8a0000000300000001000000000000004430540a349baa40030000000000000000b87b1db53500000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} +[2022-10-10T19:51:09Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d +[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8a0000000300000001000000000000004430540a349baa40030000000000000000b87b1db53500000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} +[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"3","jsonrpc":"2.0","method":"author_submitAndWatchExtrinsic","params":["0x25028400d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d018632459b4c03d5610fb887f06a6dfb00a954a00ea4bbeb32b3278a43c5765c356b4461be035657f3c069eb24d036abe8239290856183fe885d9054bb3b75a981002902001204349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8"]} +[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] broadcast: Array([String("12D3KooWEjEvSi88VGk7Jw5NKYAGCCay66M14fESQJPQizHaBngk"), String("12D3KooWEbTUL6Ey3TySozVfep1osre52HMssEqLvrEqCHeLHP8Q"), String("12D3KooWLpNQiGQDhzJsiTDn5qukpyCdDRUXJxcSqj9jzp7SecVB")]) +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] inBlock: String("0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d") +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client::client] inBlock: "0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d" +[2022-10-10T19:51:10Z INFO aleph_client] Transaction `remove_code` was included in block with hash 0xd0d6…4e6d. +[2022-10-10T19:51:10Z INFO aleph_client::waiting] Creating event subscription Contracts/CodeRemoved +[2022-10-10T19:51:10Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_subscribeStorage","params":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7"]]} +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","result":"CbxIjzJ6s5IYNTqI","id":"1"} +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","method":"state_storage","params":{"subscription":"CbxIjzJ6s5IYNTqI","result":{"block":"0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d","changes":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7","0x1c00000000000000001c6c090000000002000000010000000508d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000505d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00a29079c326000000000000000000000000010000001204349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a80000010000000507d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000600d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00000000000000000000000000000000000000000000000000000000000000000000010000000000401d291500000000000000"]]}}} +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] wait for raw event +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(0), Event(RawEvent { pallet: "System", pallet_index: 0, variant: "ExtrinsicSuccess", variant_index: 0, data: Bytes([0, 28, 108, 9, 0, 0, 0, 0, 2, 0]) }) +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Withdraw", variant_index: 8, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 91, 235, 77, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Unreserved", variant_index: 5, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 0, 162, 144, 121, 195, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) +[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Contracts", pallet_index: 18, variant: "CodeRemoved", variant_index: 4, data: Bytes([52, 156, 121, 92, 230, 60, 177, 172, 29, 156, 83, 223, 75, 25, 25, 11, 31, 87, 216, 254, 221, 148, 209, 49, 178, 252, 250, 174, 132, 157, 229, 168]) }) +[2022-10-10T19:51:10Z INFO cliain::contracts] Received ContractCodeRemoved event ContractCodeRemovedEvent { code_hash: 0x349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8 } +ContractCodeRemovedEvent { code_hash: 0x349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8 } diff --git a/contracts/marketplace/tmp_terminate_contract_output b/contracts/marketplace/tmp_terminate_contract_output new file mode 100644 index 0000000000..5de1a6de2e --- /dev/null +++ b/contracts/marketplace/tmp_terminate_contract_output @@ -0,0 +1,28 @@ + Event Balances ➜ Withdraw + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 50535530153 + Event Contracts ➜ Terminated + contract: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM + beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + Event System ➜ KilledAccount + account: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM + Event Balances ➜ ReserveRepatriated + from: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM + to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 505000000000 + destination_status: Free + Event Balances ➜ Deposit + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 46482248935 + Event Balances ➜ Deposit + who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 + amount: 4053281218 + Event Treasury ➜ Deposit + value: 4053281218 + Event TransactionPayment ➜ TransactionFeePaid + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + actual_fee: 4053281218 + tip: 0 + Event System ➜ ExtrinsicSuccess + dispatch_info: DispatchInfo { weight: 3966983065, class: Normal, pays_fee: Yes } + diff --git a/contracts/ticket_token/tmp_terminate_contract_output b/contracts/ticket_token/tmp_terminate_contract_output new file mode 100644 index 0000000000..5bb3f356c3 --- /dev/null +++ b/contracts/ticket_token/tmp_terminate_contract_output @@ -0,0 +1,28 @@ + Event Balances ➜ Withdraw + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 50535530153 + Event Contracts ➜ Terminated + contract: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv + beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + Event System ➜ KilledAccount + account: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv + Event Balances ➜ ReserveRepatriated + from: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv + to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 534000000000 + destination_status: Free + Event Balances ➜ Deposit + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + amount: 45926174482 + Event Balances ➜ Deposit + who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 + amount: 4609355671 + Event Treasury ➜ Deposit + value: 4609355671 + Event TransactionPayment ➜ TransactionFeePaid + who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY + actual_fee: 4609355671 + tip: 0 + Event System ➜ ExtrinsicSuccess + dispatch_info: DispatchInfo { weight: 4523057518, class: Normal, pays_fee: Yes } + From 8e43c64f24fcaed234ac38d24ae20d0f04356d90 Mon Sep 17 00:00:00 2001 From: Mikolaj Gasior Date: Fri, 21 Oct 2022 18:33:14 +0200 Subject: [PATCH 7/7] Remove accidentally added tmp files --- .../access_control/tmp_remove_contract_code | 37 ------------------- .../tmp_terminate_contract_output | 28 -------------- .../button/tmp_terminate_contract_output | 28 -------------- .../game_token/tmp_terminate_contract_output | 28 -------------- .../marketplace/tmp_remove_contract_code | 37 ------------------- .../marketplace/tmp_terminate_contract_output | 28 -------------- .../tmp_terminate_contract_output | 28 -------------- 7 files changed, 214 deletions(-) delete mode 100644 contracts/access_control/tmp_remove_contract_code delete mode 100644 contracts/access_control/tmp_terminate_contract_output delete mode 100644 contracts/button/tmp_terminate_contract_output delete mode 100644 contracts/game_token/tmp_terminate_contract_output delete mode 100644 contracts/marketplace/tmp_remove_contract_code delete mode 100644 contracts/marketplace/tmp_terminate_contract_output delete mode 100644 contracts/ticket_token/tmp_terminate_contract_output diff --git a/contracts/access_control/tmp_remove_contract_code b/contracts/access_control/tmp_remove_contract_code deleted file mode 100644 index bf8a846af2..0000000000 --- a/contracts/access_control/tmp_remove_contract_code +++ /dev/null @@ -1,37 +0,0 @@ -[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"chain_getBlockHash","params":[0]} -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466","id":"1"} -[2022-10-10T19:51:11Z INFO substrate_api_client::std] Got genesis hash: 0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466 -[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getMetadata","params":[null]} -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x6d6574610ee504000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f0814496e64657801102c4163636f756e74446174610114001401146e6f6e6365100114496e646578000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e7444617461000010000005050014083c70616c6c65745f62616c616e6365732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500012c6d6973635f66726f7a656e18011c42616c616e63650001286665655f66726f7a656e18011c42616c616e636500001800000507001c0c346672616d655f737570706f72741c77656967687473405065724469737061746368436c6173730404540120000c01186e6f726d616c2001045400012c6f7065726174696f6e616c200104540001246d616e6461746f727920010454000020000005060024083c7072696d69746976655f74797065731048323536000... -[2022-10-10T19:51:11Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getRuntimeVersion","params":[null]} -[2022-10-10T19:51:11Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":{"specName":"aleph-node","implName":"aleph-node","authoringVersion":1,"specVersion":34,"implVersion":1,"apis":[["0xdf6acb689907609b",4],["0x37e397fc7c91f5e4",1],["0x40fe3ad401f8959a",6],["0xd2bc9897eed08f15",3],["0xdd718d5cc53262d4",1],["0xf78b278be53f454c",2],["0xab3c0572291feb8b",1],["0xbc9d89904f5b923f",1],["0x37c8bb1350a9a2a8",1],["0x2be3f75b696ad1f6",1],["0x68b66ba122c93fa7",1]],"transactionVersion":9,"stateVersion":0},"id":"1"} -[2022-10-10T19:51:12Z INFO substrate_api_client::std] Runtime Version: RuntimeVersion { spec_name: RuntimeString::Owned("aleph-node"), impl_name: RuntimeString::Owned("aleph-node"), authoring_version: 1, spec_version: 34, impl_version: 1, apis: [([223, 106, 203, 104, 153, 7, 96, 155], 4), ([55, 227, 151, 252, 124, 145, 245, 228], 1), ([64, 254, 58, 212, 1, 248, 149, 154], 6), ([210, 188, 152, 151, 238, 208, 143, 21], 3), ([221, 113, 141, 92, 197, 50, 98, 212], 1), ([247, 139, 39, 139, 229, 63, 69, 76], 2), ([171, 60, 5, 114, 41, 31, 235, 139], 1), ([188, 157, 137, 144, 79, 91, 146, 63], 1), ([55, 200, 187, 19, 80, 169, 162, 168], 1), ([43, 227, 247, 91, 105, 106, 209, 246], 1), ([104, 182, 107, 161, 34, 201, 63, 167], 1)], transaction_version: 9, state_version: 0 } -[2022-10-10T19:51:12Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d -[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8c000000030000000100000000000000b97f1235c4c2aa4003000000000000000016eba3f10e00000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} -[2022-10-10T19:51:12Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d -[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8c000000030000000100000000000000b97f1235c4c2aa4003000000000000000016eba3f10e00000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} -[2022-10-10T19:51:12Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"3","jsonrpc":"2.0","method":"author_submitAndWatchExtrinsic","params":["0x25028400d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d0168fe3342da7e888ee35960a662f405085a926a73444c5425d0ba6359c346d438222eb348bf49e821030ad73b6460a9dd84396c00c6364c83b329910966c4fb82003102001204d000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5"]} -[2022-10-10T19:51:12Z INFO substrate_api_client::std::rpc::ws_client] broadcast: Array([String("12D3KooWEjEvSi88VGk7Jw5NKYAGCCay66M14fESQJPQizHaBngk"), String("12D3KooWEbTUL6Ey3TySozVfep1osre52HMssEqLvrEqCHeLHP8Q"), String("12D3KooWLpNQiGQDhzJsiTDn5qukpyCdDRUXJxcSqj9jzp7SecVB")]) -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] inBlock: String("0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426") -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client::client] inBlock: "0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426" -[2022-10-10T19:51:13Z INFO aleph_client] Transaction `remove_code` was included in block with hash 0xe442…c426. -[2022-10-10T19:51:13Z INFO aleph_client::waiting] Creating event subscription Contracts/CodeRemoved -[2022-10-10T19:51:13Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_subscribeStorage","params":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7"]]} -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","result":"PAhFPIOEXt6lnx5I","id":"1"} -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","method":"state_storage","params":{"subscription":"PAhFPIOEXt6lnx5I","result":{"block":"0xe442051d101362a16cc1f1cbfc45aef46e219fe64ed2d2968258a86067cfc426","changes":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7","0x1c00000000000000001c6c090000000002000000010000000508d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000505d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d0016eba3f10e000000000000000000000000010000001204d000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d50000010000000507d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000600d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00000000000000000000000000000000000000000000000000000000000000000000010000000000401d291500000000000000"]]}}} -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] wait for raw event -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(0), Event(RawEvent { pallet: "System", pallet_index: 0, variant: "ExtrinsicSuccess", variant_index: 0, data: Bytes([0, 28, 108, 9, 0, 0, 0, 0, 2, 0]) }) -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Withdraw", variant_index: 8, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 91, 235, 77, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Unreserved", variant_index: 5, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 0, 22, 235, 163, 241, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) -[2022-10-10T19:51:13Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Contracts", pallet_index: 18, variant: "CodeRemoved", variant_index: 4, data: Bytes([208, 0, 71, 159, 247, 201, 211, 59, 5, 82, 157, 44, 222, 42, 123, 170, 130, 247, 123, 62, 68, 139, 167, 246, 105, 14, 26, 106, 113, 236, 167, 213]) }) -[2022-10-10T19:51:13Z INFO cliain::contracts] Received ContractCodeRemoved event ContractCodeRemovedEvent { code_hash: 0xd000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5 } -ContractCodeRemovedEvent { code_hash: 0xd000479ff7c9d33b05529d2cde2a7baa82f77b3e448ba7f6690e1a6a71eca7d5 } diff --git a/contracts/access_control/tmp_terminate_contract_output b/contracts/access_control/tmp_terminate_contract_output deleted file mode 100644 index 3ff7b4be23..0000000000 --- a/contracts/access_control/tmp_terminate_contract_output +++ /dev/null @@ -1,28 +0,0 @@ - Event Balances ➜ Withdraw - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 50535530153 - Event Contracts ➜ Terminated - contract: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 - beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - Event System ➜ KilledAccount - account: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 - Event Balances ➜ ReserveRepatriated - from: 5FEsZXx65z33Nv5aieQ5W8PqNN4NUtRtr7Knqu9jDpTEvu25 - to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 881000000000 - destination_status: Free - Event Balances ➜ Deposit - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 48681419294 - Event Balances ➜ Deposit - who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 - amount: 1854110859 - Event Treasury ➜ Deposit - value: 1854110859 - Event TransactionPayment ➜ TransactionFeePaid - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - actual_fee: 1854110859 - tip: 0 - Event System ➜ ExtrinsicSuccess - dispatch_info: DispatchInfo { weight: 1767812706, class: Normal, pays_fee: Yes } - diff --git a/contracts/button/tmp_terminate_contract_output b/contracts/button/tmp_terminate_contract_output deleted file mode 100644 index ee229a893e..0000000000 --- a/contracts/button/tmp_terminate_contract_output +++ /dev/null @@ -1,28 +0,0 @@ - Event Balances ➜ Withdraw - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 50535530153 - Event Contracts ➜ Terminated - contract: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo - beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - Event System ➜ KilledAccount - account: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo - Event Balances ➜ ReserveRepatriated - from: 5FMVxU7qoicCTCtYdyahn3HaacW5WxhW21GJGaSPmA9WGaoo - to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 603000000000 - destination_status: Free - Event Balances ➜ Deposit - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 46322211722 - Event Balances ➜ Deposit - who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 - amount: 4213318431 - Event Treasury ➜ Deposit - value: 4213318431 - Event TransactionPayment ➜ TransactionFeePaid - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - actual_fee: 4213318431 - tip: 0 - Event System ➜ ExtrinsicSuccess - dispatch_info: DispatchInfo { weight: 4127020278, class: Normal, pays_fee: Yes } - diff --git a/contracts/game_token/tmp_terminate_contract_output b/contracts/game_token/tmp_terminate_contract_output deleted file mode 100644 index 040d84c0fe..0000000000 --- a/contracts/game_token/tmp_terminate_contract_output +++ /dev/null @@ -1,28 +0,0 @@ - Event Balances ➜ Withdraw - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 50535530153 - Event Contracts ➜ Terminated - contract: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB - beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - Event System ➜ KilledAccount - account: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB - Event Balances ➜ ReserveRepatriated - from: 5F6fr3pQtmZFs3CMTqKuq49NqcaZ6WUHAakssjDoPXuRt6rB - to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 526000000000 - destination_status: Free - Event Balances ➜ Deposit - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 45936764748 - Event Balances ➜ Deposit - who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 - amount: 4598765405 - Event Treasury ➜ Deposit - value: 4598765405 - Event TransactionPayment ➜ TransactionFeePaid - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - actual_fee: 4598765405 - tip: 0 - Event System ➜ ExtrinsicSuccess - dispatch_info: DispatchInfo { weight: 4512467252, class: Normal, pays_fee: Yes } - diff --git a/contracts/marketplace/tmp_remove_contract_code b/contracts/marketplace/tmp_remove_contract_code deleted file mode 100644 index de01eebcc8..0000000000 --- a/contracts/marketplace/tmp_remove_contract_code +++ /dev/null @@ -1,37 +0,0 @@ -[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"chain_getBlockHash","params":[0]} -[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466","id":"1"} -[2022-10-10T19:51:08Z INFO substrate_api_client::std] Got genesis hash: 0x50e6023941fc25f124b5c82cff4973589a4254ff2c0db160808e15a0e50b9466 -[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getMetadata","params":[null]} -[2022-10-10T19:51:08Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x6d6574610ee504000c1c73705f636f72651863727970746f2c4163636f756e7449643332000004000401205b75383b2033325d0000040000032000000008000800000503000c08306672616d655f73797374656d2c4163636f756e74496e666f0814496e64657801102c4163636f756e74446174610114001401146e6f6e6365100114496e646578000124636f6e73756d657273100120526566436f756e7400012470726f766964657273100120526566436f756e7400012c73756666696369656e7473100120526566436f756e740001106461746114012c4163636f756e7444617461000010000005050014083c70616c6c65745f62616c616e6365732c4163636f756e7444617461041c42616c616e63650118001001106672656518011c42616c616e6365000120726573657276656418011c42616c616e636500012c6d6973635f66726f7a656e18011c42616c616e63650001286665655f66726f7a656e18011c42616c616e636500001800000507001c0c346672616d655f737570706f72741c77656967687473405065724469737061746368436c6173730404540120000c01186e6f726d616c2001045400012c6f7065726174696f6e616c200104540001246d616e6461746f727920010454000020000005060024083c7072696d69746976655f74797065731048323536000... -[2022-10-10T19:51:08Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getRuntimeVersion","params":[null]} -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":{"specName":"aleph-node","implName":"aleph-node","authoringVersion":1,"specVersion":34,"implVersion":1,"apis":[["0xdf6acb689907609b",4],["0x37e397fc7c91f5e4",1],["0x40fe3ad401f8959a",6],["0xd2bc9897eed08f15",3],["0xdd718d5cc53262d4",1],["0xf78b278be53f454c",2],["0xab3c0572291feb8b",1],["0xbc9d89904f5b923f",1],["0x37c8bb1350a9a2a8",1],["0x2be3f75b696ad1f6",1],["0x68b66ba122c93fa7",1]],"transactionVersion":9,"stateVersion":0},"id":"1"} -[2022-10-10T19:51:09Z INFO substrate_api_client::std] Runtime Version: RuntimeVersion { spec_name: RuntimeString::Owned("aleph-node"), impl_name: RuntimeString::Owned("aleph-node"), authoring_version: 1, spec_version: 34, impl_version: 1, apis: [([223, 106, 203, 104, 153, 7, 96, 155], 4), ([55, 227, 151, 252, 124, 145, 245, 228], 1), ([64, 254, 58, 212, 1, 248, 149, 154], 6), ([210, 188, 152, 151, 238, 208, 143, 21], 3), ([221, 113, 141, 92, 197, 50, 98, 212], 1), ([247, 139, 39, 139, 229, 63, 69, 76], 2), ([171, 60, 5, 114, 41, 31, 235, 139], 1), ([188, 157, 137, 144, 79, 91, 146, 63], 1), ([55, 200, 187, 19, 80, 169, 162, 168], 1), ([43, 227, 247, 91, 105, 106, 209, 246], 1), ([104, 182, 107, 161, 34, 201, 63, 167], 1)], transaction_version: 9, state_version: 0 } -[2022-10-10T19:51:09Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d -[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8a0000000300000001000000000000004430540a349baa40030000000000000000b87b1db53500000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} -[2022-10-10T19:51:09Z INFO substrate_api_client::std] storage key is: 0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d -[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_getStorage","params":["0x26aa394eea5630e07c48ae0c9558cef7b99d880ec681799c0cf30e8886371da9de1e86a9a8c739864cf3cc5ec2bea59fd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",null]} -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] Got get_request_msg {"jsonrpc":"2.0","result":"0x8a0000000300000001000000000000004430540a349baa40030000000000000000b87b1db53500000000000000000000008062175ed158000000000000000000008062175ed158000000000000000000","id":"1"} -[2022-10-10T19:51:09Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"3","jsonrpc":"2.0","method":"author_submitAndWatchExtrinsic","params":["0x25028400d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d018632459b4c03d5610fb887f06a6dfb00a954a00ea4bbeb32b3278a43c5765c356b4461be035657f3c069eb24d036abe8239290856183fe885d9054bb3b75a981002902001204349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8"]} -[2022-10-10T19:51:09Z INFO substrate_api_client::std::rpc::ws_client] broadcast: Array([String("12D3KooWEjEvSi88VGk7Jw5NKYAGCCay66M14fESQJPQizHaBngk"), String("12D3KooWEbTUL6Ey3TySozVfep1osre52HMssEqLvrEqCHeLHP8Q"), String("12D3KooWLpNQiGQDhzJsiTDn5qukpyCdDRUXJxcSqj9jzp7SecVB")]) -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] inBlock: String("0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d") -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client::client] inBlock: "0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d" -[2022-10-10T19:51:10Z INFO aleph_client] Transaction `remove_code` was included in block with hash 0xd0d6…4e6d. -[2022-10-10T19:51:10Z INFO aleph_client::waiting] Creating event subscription Contracts/CodeRemoved -[2022-10-10T19:51:10Z INFO ws] Queuing connection to wss://ws-fe-benjamin.dev.azero.dev/ -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] sending request: {"id":"1","jsonrpc":"2.0","method":"state_subscribeStorage","params":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7"]]} -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","result":"CbxIjzJ6s5IYNTqI","id":"1"} -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] got on_subscription_msg {"jsonrpc":"2.0","method":"state_storage","params":{"subscription":"CbxIjzJ6s5IYNTqI","result":{"block":"0xd0d63f2a3d0d6753425eccaa480b05a3402940045f8fa51a4cb5b8ca1f924e6d","changes":[["0x26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7","0x1c00000000000000001c6c090000000002000000010000000508d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000505d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00a29079c326000000000000000000000000010000001204349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a80000010000000507d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d5beb4d1a0000000000000000000000000000010000000600d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d00000000000000000000000000000000000000000000000000000000000000000000010000000000401d291500000000000000"]]}}} -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] wait for raw event -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(0), Event(RawEvent { pallet: "System", pallet_index: 0, variant: "ExtrinsicSuccess", variant_index: 0, data: Bytes([0, 28, 108, 9, 0, 0, 0, 0, 2, 0]) }) -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Withdraw", variant_index: 8, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 91, 235, 77, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Balances", pallet_index: 5, variant: "Unreserved", variant_index: 5, data: Bytes([212, 53, 147, 199, 21, 253, 211, 28, 97, 20, 26, 189, 4, 169, 159, 214, 130, 44, 133, 88, 133, 76, 205, 227, 154, 86, 132, 231, 165, 109, 162, 125, 0, 162, 144, 121, 195, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) }) -[2022-10-10T19:51:10Z INFO substrate_api_client::std::rpc::ws_client] Decoded Event: ApplyExtrinsic(1), Event(RawEvent { pallet: "Contracts", pallet_index: 18, variant: "CodeRemoved", variant_index: 4, data: Bytes([52, 156, 121, 92, 230, 60, 177, 172, 29, 156, 83, 223, 75, 25, 25, 11, 31, 87, 216, 254, 221, 148, 209, 49, 178, 252, 250, 174, 132, 157, 229, 168]) }) -[2022-10-10T19:51:10Z INFO cliain::contracts] Received ContractCodeRemoved event ContractCodeRemovedEvent { code_hash: 0x349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8 } -ContractCodeRemovedEvent { code_hash: 0x349c795ce63cb1ac1d9c53df4b19190b1f57d8fedd94d131b2fcfaae849de5a8 } diff --git a/contracts/marketplace/tmp_terminate_contract_output b/contracts/marketplace/tmp_terminate_contract_output deleted file mode 100644 index 5de1a6de2e..0000000000 --- a/contracts/marketplace/tmp_terminate_contract_output +++ /dev/null @@ -1,28 +0,0 @@ - Event Balances ➜ Withdraw - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 50535530153 - Event Contracts ➜ Terminated - contract: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM - beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - Event System ➜ KilledAccount - account: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM - Event Balances ➜ ReserveRepatriated - from: 5Cz474tQ9MTWqD2zmAuHkfVUzVjWzkFyKcKGE9HB7T8dVPLM - to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 505000000000 - destination_status: Free - Event Balances ➜ Deposit - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 46482248935 - Event Balances ➜ Deposit - who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 - amount: 4053281218 - Event Treasury ➜ Deposit - value: 4053281218 - Event TransactionPayment ➜ TransactionFeePaid - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - actual_fee: 4053281218 - tip: 0 - Event System ➜ ExtrinsicSuccess - dispatch_info: DispatchInfo { weight: 3966983065, class: Normal, pays_fee: Yes } - diff --git a/contracts/ticket_token/tmp_terminate_contract_output b/contracts/ticket_token/tmp_terminate_contract_output deleted file mode 100644 index 5bb3f356c3..0000000000 --- a/contracts/ticket_token/tmp_terminate_contract_output +++ /dev/null @@ -1,28 +0,0 @@ - Event Balances ➜ Withdraw - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 50535530153 - Event Contracts ➜ Terminated - contract: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv - beneficiary: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - Event System ➜ KilledAccount - account: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv - Event Balances ➜ ReserveRepatriated - from: 5GDvZtVwgKRZmm8svpYMQxUDZqSgTmGgaNWN5uqcd5w4YZmv - to: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 534000000000 - destination_status: Free - Event Balances ➜ Deposit - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - amount: 45926174482 - Event Balances ➜ Deposit - who: 5EYCAe5fg5WiYGVNH6QpCFnu55Hzv9MwtjFHdQCx8EaSQTm2 - amount: 4609355671 - Event Treasury ➜ Deposit - value: 4609355671 - Event TransactionPayment ➜ TransactionFeePaid - who: 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY - actual_fee: 4609355671 - tip: 0 - Event System ➜ ExtrinsicSuccess - dispatch_info: DispatchInfo { weight: 4523057518, class: Normal, pays_fee: Yes } -