Skip to content

Commit c769abb

Browse files
authored
Add SUI_COIN_REGISTRY_OBJECT_ID constant (#945)
* Add SUI_COIN_REGISTRY_OBJECT_ID constant * Re-export SUI_COIN_REGISTRY_OBJECT_ID from utils index
1 parent 49d951b commit c769abb

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@mysten/sui': minor
3+
---
4+
5+
Add `SUI_COIN_REGISTRY_OBJECT_ID` constant

packages/sui/src/utils/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ export const SUI_SYSTEM_STATE_OBJECT_ID =
1818
'0x0000000000000000000000000000000000000000000000000000000000000005';
1919
export const SUI_RANDOM_OBJECT_ID =
2020
'0x0000000000000000000000000000000000000000000000000000000000000008';
21+
export const SUI_COIN_REGISTRY_OBJECT_ID =
22+
'0x000000000000000000000000000000000000000000000000000000000000000c';
2123
export const SUI_DENY_LIST_OBJECT_ID =
2224
'0x0000000000000000000000000000000000000000000000000000000000000403';

packages/sui/src/utils/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export {
2828
SUI_TYPE_ARG,
2929
SUI_SYSTEM_STATE_OBJECT_ID,
3030
SUI_RANDOM_OBJECT_ID,
31+
SUI_COIN_REGISTRY_OBJECT_ID,
3132
SUI_DENY_LIST_OBJECT_ID,
3233
} from './constants.js';
3334

0 commit comments

Comments
 (0)