From f1efc3f04ab7afc6ab1d52d09602ed17b479a7ed Mon Sep 17 00:00:00 2001 From: Jeff Doyle Date: Fri, 8 Dec 2023 11:38:49 -0800 Subject: [PATCH 1/3] Update 20230330-interaction-templates-1.1.0.md https://flix.flow.com/v1/templates/290b6b6222b2a77b16db896a80ddf29ebd1fa3038c9e6625a933fa213fce51fa --- application/20230330-interaction-templates-1.1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/20230330-interaction-templates-1.1.0.md b/application/20230330-interaction-templates-1.1.0.md index 7ae02254..dadc5576 100644 --- a/application/20230330-interaction-templates-1.1.0.md +++ b/application/20230330-interaction-templates-1.1.0.md @@ -620,7 +620,7 @@ pub fun main(address: Address): UFix64 { #### `data.dependencies` -For each dependency of the interaction (each contract that is imported in the cadence of the interaction), there must be network keyed (mainnet || testnet) dependency information. The information for each network should contain the address of the account where the contract is deployed, the fully qualified identifier for the contract, dependency tree pin and block height the pin was preformed at. The dependency tree pin is performed by the following pseudocode: +For each dependency of the interaction (each contract that is imported in the cadence of the interaction), there must be network keyed (mainnet || testnet) dependency information. The information for each network should contain the address of the account where the contract is deployed, dependency pin of the contract, the pin of the contract iself (SHA3-256 hash of itself) and block height the pin was preformed at. The dependency tree pin is performed by the following pseudocode: ```javascript // Example contracts map From 3c4f33c90f8d0f17673a62f048458f04a9392ddb Mon Sep 17 00:00:00 2001 From: Tom Haile Date: Fri, 8 Dec 2023 13:45:18 -0600 Subject: [PATCH 2/3] Update 20230330-interaction-templates-1.1.0.md fix typo --- application/20230330-interaction-templates-1.1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/20230330-interaction-templates-1.1.0.md b/application/20230330-interaction-templates-1.1.0.md index dadc5576..04244fe5 100644 --- a/application/20230330-interaction-templates-1.1.0.md +++ b/application/20230330-interaction-templates-1.1.0.md @@ -620,7 +620,7 @@ pub fun main(address: Address): UFix64 { #### `data.dependencies` -For each dependency of the interaction (each contract that is imported in the cadence of the interaction), there must be network keyed (mainnet || testnet) dependency information. The information for each network should contain the address of the account where the contract is deployed, dependency pin of the contract, the pin of the contract iself (SHA3-256 hash of itself) and block height the pin was preformed at. The dependency tree pin is performed by the following pseudocode: +For each dependency of the interaction (each contract that is imported in the cadence of the interaction), there must be network keyed (mainnet || testnet) dependency information. The information for each network should contain the address of the account where the contract is deployed, dependency pin of the contract, the pin of the contract itself (SHA3-256 hash of itself) and block height the pin was preformed at. The dependency tree pin is performed by the following pseudocode: ```javascript // Example contracts map From 6e2abbdbdd63627afd61c435e3a1a160b776c114 Mon Sep 17 00:00:00 2001 From: Jeff Doyle Date: Mon, 8 Jan 2024 13:09:09 -0800 Subject: [PATCH 3/3] Update 20230330-interaction-templates-1.1.0.md --- application/20230330-interaction-templates-1.1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/20230330-interaction-templates-1.1.0.md b/application/20230330-interaction-templates-1.1.0.md index 04244fe5..569b5820 100644 --- a/application/20230330-interaction-templates-1.1.0.md +++ b/application/20230330-interaction-templates-1.1.0.md @@ -858,7 +858,7 @@ template-message-key = Key for a template message (eg: "title", "descr template-message = [ sha3_256(template-message-key), [ ...template-message-translation ] ] template-dependency-contract-pin-block-height = Network block height the pin was generated against. -template-dependency-contract-pin = Pin of contract and it's dependency tree +template-dependency-contract-pin = Pin of contract and its dependency tree template-dependency-contract-pin-self = Pin of the contract itself template-dependency-network-address = Address of an account template-dependency-network = "mainnet" | "testnet" | "emulator" | Custom Network Tag