-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from lisalab-io/fix/auto-alex-v3-endpoint
- Loading branch information
Showing
19 changed files
with
1,882 additions
and
392 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
;; SPDX-License-Identifier: BUSL-1.1 | ||
|
||
(impl-trait 'SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.proposal-trait.proposal-trait) | ||
|
||
(define-public (execute (sender principal)) | ||
(begin | ||
(try! (contract-call? 'SM3KNVZS30WM7F89SXKVVFY4SN9RMPZZ9FX929N0V.public-pools-strategy-manager-v2 set-authorised-manager 'SP3TJ5YF08D4FSHM9ZYBBG3X76PW9257YE9SPFWA1 true)) | ||
(ok true) | ||
) | ||
) |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
;; SPDX-License-Identifier: BUSL-1.1 | ||
|
||
(impl-trait 'SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.proposal-trait.proposal-trait) | ||
|
||
(define-public (execute (sender principal)) | ||
(begin | ||
(try! (contract-call? 'SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.lisa-dao set-extensions (list | ||
{ extension: 'SP102V8P0F7JX67ARQ77WEA3D3CFB5XW39REDT0AM.auto-alex-v3-endpoint, enabled: false } | ||
{ extension: .auto-alex-v3-endpoint-v2, enabled: true } ))) | ||
(try! (contract-call? 'SP102V8P0F7JX67ARQ77WEA3D3CFB5XW39REDT0AM.auto-alex-v3-endpoint pause-create true)) | ||
(try! (contract-call? 'SP102V8P0F7JX67ARQ77WEA3D3CFB5XW39REDT0AM.auto-alex-v3-endpoint pause-redeem true)) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2 pause-create false)) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2 pause-redeem false)) | ||
(ok true))) |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
;; SPDX-License-Identifier: BUSL-1.1 | ||
|
||
(impl-trait 'SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.proposal-trait.proposal-trait) | ||
|
||
(define-public (execute (sender principal)) | ||
(begin | ||
(try! (contract-call? 'SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.lisa-dao set-extensions (list | ||
{ extension: .auto-alex-v3-endpoint-v2, enabled: false } | ||
{ extension: .auto-alex-v3-endpoint-v2-01, enabled: true } ))) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2 pause-create true)) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2 pause-redeem true)) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2-01 pause-create false)) | ||
(try! (contract-call? .auto-alex-v3-endpoint-v2-01 pause-redeem false)) | ||
(ok true))) |
Oops, something went wrong.