Skip to content

Commit

Permalink
Subnames release v3 (#120)
Browse files Browse the repository at this point in the history
* Adds operations v3, pending the v2

* add new mainnet dependency properly on docs too

* await properly

* Adds released pkgs

* fix
  • Loading branch information
manolisliolios authored May 14, 2024
1 parent 4fb9b9c commit 37d5048
Show file tree
Hide file tree
Showing 10 changed files with 1,841 additions and 3,317 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/suins-build-tx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- Disable Free Claims
- Profits to Treasury
- Transfer Reserved Names
- Subdomains V2
- Subdomains V3
sui_tools_image:
description: 'image reference of sui_tools'
default: 'mysten/sui-tools:mainnet'
Expand Down Expand Up @@ -112,15 +112,15 @@ jobs:
run: |
cd scripts && pnpm create-deepbook-pools
- name: Subdomains V2
if: ${{ inputs.transaction_type == 'Subdomains V2' }}
- name: Subdomains V3
if: ${{ inputs.transaction_type == 'Subdomains V3' }}
env:
NODE_ENV: production
GAS_OBJECT: ${{ inputs.gas_object_id }}
NETWORK: mainnet
ORIGIN: gh_action
run: |
cd scripts && pnpm subdomains::02
cd scripts && pnpm subdomains::03
- name: Show Transaction Data (To sign)
run: |
Expand Down
2 changes: 1 addition & 1 deletion documentation/pages/integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Use the SuiNS core package as a dependency to your own package for on-chain reso
<Tabs.Tab>
```sh
[dependencies]
suins = { git = "https://github.com/mystenlabs/suins-contracts/", subdir = "packages/suins", rev = "9b2e89d" }
suins = { git = "https://github.com/mystenlabs/suins-contracts/", subdir = "packages/suins", rev = "releases/mainnet/core/v3" }
```
</Tabs.Tab>
<Tabs.Tab>
Expand Down
3 changes: 2 additions & 1 deletion packages/denylist/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
name = "denylist"
version = "0.0.1"
edition = "2024.beta"
published-at="0xc967b7862d926720761ee15fbd0254a975afa928712abcaa4f7c17bb2b38d38b"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/mainnet", override=true }
suins = { local = "../suins" }

[addresses]
denylist = "0x0"
denylist = "0xc967b7862d926720761ee15fbd0254a975afa928712abcaa4f7c17bb2b38d38b"
2 changes: 1 addition & 1 deletion packages/subdomains/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2024.beta"
#published-at="0xb0c14a9891efc8080e976db617a2d830183aa9034cbdf575dbb9e5856e38c283"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet", override=true }
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/mainnet", override=true }
suins = { local = "../suins" }
denylist = { local = "../denylist" }

Expand Down
3 changes: 2 additions & 1 deletion packages/utils/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
name = "utils"
version = "0.0.1"
edition = "2024.beta"
published-at="0xf7854c81cf500d60a4437f4599f7ff3b89abd13f645ae08f62345c7a25317bee"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/mainnet", override=true }
suins = { local = "../suins" }

[addresses]
utils = "0x0"
utils = "0xf7854c81cf500d60a4437f4599f7ff3b89abd13f645ae08f62345c7a25317bee"
Loading

0 comments on commit 37d5048

Please sign in to comment.