From 0ff97e44a24ce297e51aaccbaba7ac87e5e10b7d Mon Sep 17 00:00:00 2001 From: Gregor Gololicic Date: Tue, 23 Feb 2021 13:01:06 +0100 Subject: [PATCH 1/2] remove flow json files --- flow.beta.example.json | 39 --------------------------------------- flow.example.json | 29 ----------------------------- 2 files changed, 68 deletions(-) delete mode 100644 flow.beta.example.json delete mode 100644 flow.example.json diff --git a/flow.beta.example.json b/flow.beta.example.json deleted file mode 100644 index 6447a6af6..000000000 --- a/flow.beta.example.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "emulator": { - "default": { - "port": 3569, - "serviceKey": { - "privateKey": "40055011eda87a6c7b38943d1cc81c013eeb5bf791ad5330a375ab229a401e95", - "signatureAlgorithm": "ECDSA_P256", - "hashAlgorithm": "SHA3_256" - } - } - }, - "networks": { - "emulator": { - "host": "127.0.0.1:3569", - "chain": "emulator" - }, - "testnet": { - "host": "access.testnet.nodes.onflow.org:9000", - "chain": "testnet" - } - }, - "accounts": { - "emulator": { - "chain": "emulator", - "address": "service", - "keys": [ - { - "signatureAlgorithm": "ECDSA_P256", - "hashAlgorithm": "SHA3_256", - "type": "hex", - "index": 0, - "context": { - "privateKey": "40055011eda87a6c7b38943d1cc81c013eeb5bf791ad5330a375ab229a401e95" - } - } - ] - } - } -} diff --git a/flow.example.json b/flow.example.json deleted file mode 100644 index 58a7fdf60..000000000 --- a/flow.example.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "accounts": { - "hex": { - "address": "", - "privateKey": "", - "sigAlgorithm": "ECDSA_secp256k1", - "hashAlgorithm": "SHA2_256", - "keyType": "hex", - "keyIndex": 0, - "keyContext": { - "privateKey": "" - } - }, - "kms": { - "address": "", - "sigAlgorithm": "ECDSA_P256", - "hashAlgorithm": "SHA2_256", - "keyType": "kms", - "keyIndex": 0, - "keyContext": { - "projectId": "project-id", - "locationId": "global", - "keyRingId": "key-ring-id", - "keyId": "key-id", - "keyVersion": "1" - } - } - } -} \ No newline at end of file From 3557cbd7820728263881e0b0bcb45e994eb69c00 Mon Sep 17 00:00:00 2001 From: Gregor Gololicic Date: Tue, 23 Feb 2021 13:01:33 +0100 Subject: [PATCH 2/2] ignore flow json files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 71420249d..99960265f 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,9 @@ index.html .DS_Store +# Ignore flow json config flow.json +flow*.json # IDE related files .idea