forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(contracts): add aliases for latest versions of the contracts (un…
…lock-protocol#13484) * feat(contracts): add aliass for latest versions of the contracts * untrack index file * add alias for all contracts * update hardhat plugin to use that logic * bump version + edit README * fix yarn cmd for contracts index page * eth-node get latest version * bump contracts version * fix contracts build * bump contract again * fix autogen index build step
- Loading branch information
Showing
12 changed files
with
95 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ test/contracts | |
artifacts | ||
cache | ||
docs-reorg | ||
docs | ||
docs | ||
src/index.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
export const UNLOCK_LATEST_VERSION = 11 | ||
export const PUBLIC_LOCK_LATEST_VERSION = 13 | ||
import { | ||
UNLOCK_LATEST_VERSION, | ||
PUBLICLOCK_LATEST_VERSION, | ||
} from '@unlock-protocol/contracts' | ||
export { | ||
UNLOCK_LATEST_VERSION, | ||
PUBLICLOCK_LATEST_VERSION as PUBLIC_LOCK_LATEST_VERSION, | ||
} | ||
|
||
// task names | ||
export const TASK_CREATE_LOCK = 'unlock:create-lock' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters