Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: quotation mark #1843

Merged
merged 2 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Copyright (C) 2024, Ava Labs, Inc. All rights reserved.
Ecosystem License
Version: 1.1

Subject to the terms herein, Ava Labs, Inc. (**Ava Labs**) hereby grants you
Subject to the terms herein, Ava Labs, Inc. (**"Ava Labs"**) hereby grants you
a limited, royalty-free, worldwide, non-sublicensable, non-transferable,
non-exclusive license to use, copy, modify, create derivative works based on,
and redistribute the Software, in source code, binary, or any other form,
including any modifications or derivative works of the Software (collectively,
**Licensed Software**), in each case subject to this Ecosystem License
(**License**).
**"Licensed Software"**), in each case subject to this Ecosystem License
(**"License"**).

This License applies to all copies, modifications, derivative works, and any
other form or usage of the Licensed Software. You will include and display
Expand All @@ -19,10 +19,10 @@ regardless of form.
You will use the Licensed Software solely (i) in connection with the Avalanche
Public Blockchain platform, having a NetworkID of 1 (Mainnet) or 5 (Fuji), and
associated blockchains, comprised exclusively of the Avalanche X-Chain,
C-Chain, P-Chain and any subnets linked to the P-Chain (Avalanche Authorized
Platform) or (ii) for non-production, testing or research purposes within the
C-Chain, P-Chain and any subnets linked to the P-Chain ("Avalanche Authorized
Platform") or (ii) for non-production, testing or research purposes within the
Avalanche ecosystem, in each case, without any commercial application
(Non-Commercial Use); provided that this License does not permit use of the
("Non-Commercial Use"); provided that this License does not permit use of the
Licensed Software in connection with (a) any forks of the Avalanche Authorized
Platform or (b) in any manner not operationally connected to the Avalanche
Authorized Platform other than, for the avoidance of doubt, the limited
Expand All @@ -47,16 +47,16 @@ Except as required or explicitly permitted by this License, you will not use
any Ava Labs names, logos, or trademarks without Ava Labs’ prior written
consent.

You may use this License for software other than the Licensed Software
You may use this License for software other than the "Licensed Software"
specified above, as long as the only change to this License is the definition
of the term Licensed Software.
of the term "Licensed Software."

The Licensed Software may reference third party components. You acknowledge
and agree that these third party components may be governed by a separate
license or terms and that you will comply with them.

**TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE LICENSED SOFTWARE IS PROVIDED
ON AN AS IS BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
ON AN "AS IS" BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
REPRESENTATIONS, WARRANTIES AND OTHER TERMS AND CONDITIONS, WHETHER EXPRESS OR
IMPLIED, INCLUDING WITHOUT LIMITATION BY OPERATION OF LAW OR BY CUSTOM,
STATUTE OR OTHERWISE, AND INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTY,
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/morpheusvm/1_morpheusvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ So far, we’ve implemented the following:
- Storage

We can now finish this MorpheusVM tutorial by implementing the vm interface.
In `tutorial/`, create a subdirectory called `vm`. In that folder, let's create the file `vm.go`. Here, we first define the registry of MorpheusVM:
In `tutorial/`, create a subdirectory called `vm`. In that folder, let's create the file `vm.go`. Here, we first define the "registry" of MorpheusVM:

```golang
package vm
Expand Down Expand Up @@ -813,7 +813,7 @@ func init() {

```

By registry, we mean the `ActionParser` and `AuthParser` which tell our VM
By "registry", we mean the `ActionParser` and `AuthParser` which tell our VM
which actions and cryptographic functions that it’ll support.

Finally, we create a `New()` function that allows for the VM we’ve worked on to
Expand Down
18 changes: 9 additions & 9 deletions examples/morpheusvm/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
Ecosystem License
Version: 1.1

Subject to the terms herein, Ava Labs, Inc. (**Ava Labs**) hereby grants you
Subject to the terms herein, Ava Labs, Inc. (**"Ava Labs"**) hereby grants you
a limited, royalty-free, worldwide, non-sublicensable, non-transferable,
non-exclusive license to use, copy, modify, create derivative works based on,
and redistribute the Software, in source code, binary, or any other form,
including any modifications or derivative works of the Software (collectively,
**Licensed Software**), in each case subject to this Ecosystem License
(**License**).
**"Licensed Software"**), in each case subject to this Ecosystem License
(**"License"**).

This License applies to all copies, modifications, derivative works, and any
other form or usage of the Licensed Software. You will include and display
Expand All @@ -19,10 +19,10 @@ regardless of form.
You will use the Licensed Software solely (i) in connection with the Avalanche
Public Blockchain platform, having a NetworkID of 1 (Mainnet) or 5 (Fuji), and
associated blockchains, comprised exclusively of the Avalanche X-Chain,
C-Chain, P-Chain and any subnets linked to the P-Chain (Avalanche Authorized
Platform) or (ii) for non-production, testing or research purposes within the
C-Chain, P-Chain and any subnets linked to the P-Chain ("Avalanche Authorized
Platform") or (ii) for non-production, testing or research purposes within the
Avalanche ecosystem, in each case, without any commercial application
(Non-Commercial Use); provided that this License does not permit use of the
("Non-Commercial Use"); provided that this License does not permit use of the
Licensed Software in connection with (a) any forks of the Avalanche Authorized
Platform or (b) in any manner not operationally connected to the Avalanche
Authorized Platform other than, for the avoidance of doubt, the limited
Expand All @@ -47,16 +47,16 @@ Except as required or explicitly permitted by this License, you will not use
any Ava Labs names, logos, or trademarks without Ava Labs’ prior written
consent.

You may use this License for software other than the Licensed Software
You may use this License for software other than the "Licensed Software"
specified above, as long as the only change to this License is the definition
of the term Licensed Software.
of the term "Licensed Software."

The Licensed Software may reference third party components. You acknowledge
and agree that these third party components may be governed by a separate
license or terms and that you will comply with them.

**TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE LICENSED SOFTWARE IS PROVIDED
ON AN AS IS BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
ON AN "AS IS" BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
REPRESENTATIONS, WARRANTIES AND OTHER TERMS AND CONDITIONS, WHETHER EXPRESS OR
IMPLIED, INCLUDING WITHOUT LIMITATION BY OPERATION OF LAW OR BY CUSTOM,
STATUTE OR OTHERWISE, AND INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTY,
Expand Down
18 changes: 9 additions & 9 deletions x/contracts/vm/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
Ecosystem License
Version: 1.1

Subject to the terms herein, Ava Labs, Inc. (**Ava Labs**) hereby grants you
Subject to the terms herein, Ava Labs, Inc. (**"Ava Labs"**) hereby grants you
a limited, royalty-free, worldwide, non-sublicensable, non-transferable,
non-exclusive license to use, copy, modify, create derivative works based on,
and redistribute the Software, in source code, binary, or any other form,
including any modifications or derivative works of the Software (collectively,
**Licensed Software**), in each case subject to this Ecosystem License
(**License**).
**"Licensed Software"**), in each case subject to this Ecosystem License
(**"License"**).

This License applies to all copies, modifications, derivative works, and any
other form or usage of the Licensed Software. You will include and display
Expand All @@ -19,10 +19,10 @@ regardless of form.
You will use the Licensed Software solely (i) in connection with the Avalanche
Public Blockchain platform, having a NetworkID of 1 (Mainnet) or 5 (Fuji), and
associated blockchains, comprised exclusively of the Avalanche X-Chain,
C-Chain, P-Chain and any subnets linked to the P-Chain (Avalanche Authorized
Platform) or (ii) for non-production, testing or research purposes within the
C-Chain, P-Chain and any subnets linked to the P-Chain ("Avalanche Authorized
Platform") or (ii) for non-production, testing or research purposes within the
Avalanche ecosystem, in each case, without any commercial application
(Non-Commercial Use); provided that this License does not permit use of the
("Non-Commercial Use"); provided that this License does not permit use of the
Licensed Software in connection with (a) any forks of the Avalanche Authorized
Platform or (b) in any manner not operationally connected to the Avalanche
Authorized Platform other than, for the avoidance of doubt, the limited
Expand All @@ -47,16 +47,16 @@ Except as required or explicitly permitted by this License, you will not use
any Ava Labs names, logos, or trademarks without Ava Labs’ prior written
consent.

You may use this License for software other than the Licensed Software
You may use this License for software other than the "Licensed Software"
specified above, as long as the only change to this License is the definition
of the term Licensed Software.
of the term "Licensed Software."

The Licensed Software may reference third party components. You acknowledge
and agree that these third party components may be governed by a separate
license or terms and that you will comply with them.

**TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE LICENSED SOFTWARE IS PROVIDED
ON AN AS IS BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
ON AN "AS IS" BASIS, AND AVA LABS EXPRESSLY DISCLAIMS AND EXCLUDES ALL
REPRESENTATIONS, WARRANTIES AND OTHER TERMS AND CONDITIONS, WHETHER EXPRESS OR
IMPLIED, INCLUDING WITHOUT LIMITATION BY OPERATION OF LAW OR BY CUSTOM,
STATUTE OR OTHERWISE, AND INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTY,
Expand Down
Loading