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

Deepbook Transfer #176

Merged
merged 2 commits into from
Oct 3, 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
13 changes: 12 additions & 1 deletion .github/workflows/suins-build-tx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
options:
- Multi Purpose Operation
- Profits to Treasury
- Transfer Reserved Names
sui_tools_image:
description: 'image reference of sui_tools'
default: 'mysten/sui-tools:mainnet'
Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
- name: Set up working directory
run: |
pnpm install

- name: Profits to Treasury
if: ${{ inputs.transaction_type == 'Profits to Treasury' }}
env:
Expand All @@ -69,6 +70,16 @@ jobs:
run: |
cd scripts && pnpm withdraw:profits

- name: Transfer Reserved Names
if: ${{ inputs.transaction_type == 'Transfer Reserved Names' }}
env:
NODE_ENV: production
GAS_OBJECT: ${{ inputs.gas_object_id }}
NETWORK: mainnet
ORIGIN: gh_action
run: |
cd scripts && pnpm transfer::names

- name: Multi Purpose Operation
if: ${{ inputs.transaction_type == 'Multi Purpose Operation' }}
env:
Expand Down
2 changes: 1 addition & 1 deletion scripts/reserved-names/sample/sample.csv
Original file line number Diff line number Diff line change
@@ -1 +1 @@
alina,0xcf1b3738a28925cad71e904a3884ed43f36b39b19806b7375fe4346b01dbb081
deepbook,0xb5b39d11ddbd0abb0166cd369c155409a2cca9868659bda6d9ce3804c510b949
Loading