From 9b0205c04c0dce7ff6b83b81fa570655059679fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane?= Date: Fri, 22 Nov 2024 18:08:52 +0100 Subject: [PATCH] fix Wording Co-authored-by: Neil Campbell --- ARCs/arc-0056.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ARCs/arc-0056.md b/ARCs/arc-0056.md index a58e8d8ae..1e43dae4f 100644 --- a/ARCs/arc-0056.md +++ b/ARCs/arc-0056.md @@ -42,7 +42,7 @@ interface Contract { * The key is the base64 genesis hash of the network, and the value contains * information about the deployed contract in the network indicated by the * key. A key containing the human-readable name of the network MAY be - * included, but the corresponding genesis hash key MUST also be define + * included, but the corresponding genesis hash key MUST also be defined */ networks?: { [network: string]: { @@ -50,7 +50,7 @@ interface Contract { appID: number; }; }; - /** Named structs use by the application. Each struct field appears in the same order as ABI encoding. */ + /** Named structs used by the application. Each struct field appears in the same order as ABI encoding. */ structs: { [structName: StructName]: StructField[] }; /** All of the methods that the contract implements */ methods: Method[]; @@ -127,12 +127,12 @@ interface Contract { }; /** ARC-28 events that MAY be emitted by this contract */ events?: Array; - /** A mapping of template variable names as they appear in the teal (not including TMPL_ prefix) to their respective types and values (if applicable) */ + /** A mapping of template variable names as they appear in the TEAL (not including TMPL_ prefix) to their respective types and values (if applicable) */ templateVariables?: { [name: string]: { /** The type of the template variable */ type: ABIType | AVMType | StructName; - /** If given, the the base64 encoded value used for the given app/program */ + /** If given, the base64 encoded value used for the given app/program */ value?: string; }; };