Skip to content

Commit

Permalink
fix Wording
Browse files Browse the repository at this point in the history
Co-authored-by: Neil Campbell <[email protected]>
  • Loading branch information
SudoWeezy and neilcampbell authored Nov 22, 2024
1 parent 1cde499 commit 9b0205c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ARCs/arc-0056.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ 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]: {
/** The app ID of the deployed contract in this network */
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[];
Expand Down Expand Up @@ -127,12 +127,12 @@ interface Contract {
};
/** ARC-28 events that MAY be emitted by this contract */
events?: Array<Event>;
/** 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;
};
};
Expand Down

0 comments on commit 9b0205c

Please sign in to comment.