Skip to content

Commit

Permalink
Disable discounts
Browse files Browse the repository at this point in the history
  • Loading branch information
manolisliolios committed Nov 10, 2023
1 parent d171081 commit a3e16f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/suins-build-tx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
description: 'select transaction type to create'
type: choice
options:
- Disable Discounts
- Disable Free Claims
- Publish Discounts
- Authorize Discounts
- Withdraw Auction Profits
- Transfer Reserved Names
- Main package upgrade
- Create Deepbook Pools
sui_tools_image:
description: 'image reference of sui_tools'
default: 'mysten/sui-tools:mainnet'
Expand Down Expand Up @@ -146,16 +146,16 @@ jobs:
ORIGIN: gh_action
run: |
cd scripts && pnpm disable-free-claims
- name: Create Deepbook Pools
if: ${{ inputs.transaction_type == 'Create Deepbook Pools' }}
- name: Disable Discounts
if: ${{ inputs.transaction_type == 'Disable Discounts' }}
env:
NODE_ENV: production
GAS_OBJECT: ${{ inputs.gas_object_id }}
NETWORK: mainnet
ORIGIN: gh_action
run: |
cd scripts && pnpm create-deepbook-pools
cd scripts && pnpm disable-discounts
- name: Show Transaction Data (To sign)
run: |
Expand Down
1 change: 1 addition & 0 deletions scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"publish-discounts": "ts-node transactions/publish_discounts.ts",
"authorize-discounts": "ts-node transactions/quest_3_setup.ts",
"disable-free-claims": "ts-node transactions/quest3/disable_free_claims.ts",
"disable-discounts": "ts-node transactions/quest3/disable_discounts.ts",
"create-deepbook-pools": "ts-node transactions/deepbook/create_pools.ts"
},
"keywords": [],
Expand Down

0 comments on commit a3e16f6

Please sign in to comment.