Skip to content

Commit

Permalink
Merge pull request #1791 from phroi/add-ickb-info
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Oct 1, 2024
2 parents 6798461 + 1b9da09 commit 4381827
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
16 changes: 8 additions & 8 deletions src/constants/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,18 +346,18 @@ export const MainnetContractHashTags: ContractHashTag[] = [
tag: 'iCKB Logic',
},
{
codeHashes: ['0x49dfb6afee5cc8ac4225aeea8cb8928b150caf3cd92fea33750683c74b13254a'],
codeHashes: ['0xacc79e07d107831feef4c70c9e683dac5644d5993b9cb106dca6e74baa381bd0'],
txHashes: ['0x621a6f38de3b9f453016780edac3b26bfcbfa3e2ecb47c2da275471a5d3ed165-0'],
depType: 'dep_group',
hashType: 'data1',
tag: 'iCKB Limit Order',
tag: 'WR Owned-Owner',
},
{
codeHashes: ['0xacc79e07d107831feef4c70c9e683dac5644d5993b9cb106dca6e74baa381bd0'],
codeHashes: ['0x49dfb6afee5cc8ac4225aeea8cb8928b150caf3cd92fea33750683c74b13254a'],
txHashes: ['0x621a6f38de3b9f453016780edac3b26bfcbfa3e2ecb47c2da275471a5d3ed165-0'],
depType: 'dep_group',
hashType: 'data1',
tag: 'iCKB Owned-Owner',
tag: 'UDT Limit Order',
},
]

Expand Down Expand Up @@ -757,18 +757,18 @@ export const TestnetContractHashTags: ContractHashTag[] = [
tag: 'iCKB Logic',
},
{
codeHashes: ['0x49dfb6afee5cc8ac4225aeea8cb8928b150caf3cd92fea33750683c74b13254a'],
codeHashes: ['0xacc79e07d107831feef4c70c9e683dac5644d5993b9cb106dca6e74baa381bd0'],
txHashes: ['0xf7ece4fb33d8378344cab11fcd6a4c6f382fd4207ac921cf5821f30712dcd311-0'],
depType: 'dep_group',
hashType: 'data1',
tag: 'iCKB Limit Order',
tag: 'WR Owned-Owner',
},
{
codeHashes: ['0xacc79e07d107831feef4c70c9e683dac5644d5993b9cb106dca6e74baa381bd0'],
codeHashes: ['0x49dfb6afee5cc8ac4225aeea8cb8928b150caf3cd92fea33750683c74b13254a'],
txHashes: ['0xf7ece4fb33d8378344cab11fcd6a4c6f382fd4207ac921cf5821f30712dcd311-0'],
depType: 'dep_group',
hashType: 'data1',
tag: 'iCKB Owned-Owner',
tag: 'UDT Limit Order',
},
]

Expand Down
25 changes: 15 additions & 10 deletions src/pages/ScriptList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,24 +281,29 @@ export const scripts = new Map<string, ScriptAttributes>([
'iCKB Logic',
{
name: 'iCKB Logic',
description: '// TODO',
code: '// TODO',
description: 'iCKB Logic tokenizes NervosDAO deposits into the iCKB xUDT token.',
rfc: 'https://github.com/ickb/proposal',
code: 'https://github.com/ickb/v1-core/tree/454cfa966052a621c4e8b67001718c29ee8191a2/scripts/contracts/ickb_logic',
website: 'https://ickb.org/',
},
],
[
'iCKB Limit Order',
'WR Owned-Owner',
{
name: 'iCKB Limit Order',
description: '// TODO',
code: '// TODO',
name: 'WR Owned-Owner',
description:
'WR Owned-Owner enable to create Withdrawals Request from NervosDAO deposits locked with zero length args locks, developed as part of iCKB.',
rfc: 'https://github.com/ickb/proposal#owned-owner-script',
code: 'https://github.com/ickb/v1-core/tree/454cfa966052a621c4e8b67001718c29ee8191a2/scripts/contracts/owned_owner',
},
],
[
'iCKB Owned-Owner',
'UDT Limit Order',
{
name: 'iCKB Owned-Owner',
description: '// TODO',
code: '// TODO',
name: 'UDT Limit Order',
description: 'UDT Limit Order is a general purpose UDT based Limit Order, developed as part of iCKB.',
rfc: 'https://github.com/ickb/proposal#limit-order-script',
code: 'https://github.com/ickb/v1-core/tree/454cfa966052a621c4e8b67001718c29ee8191a2/scripts/contracts/limit_order',
},
],
])
Expand Down

0 comments on commit 4381827

Please sign in to comment.