-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from nervina-labs/extension
Support cota extension
- Loading branch information
Showing
11 changed files
with
227 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { addressToScript } from '@nervosnetwork/ckb-sdk-utils' | ||
import { Collector } from '../src/collector' | ||
import { Aggregator } from '../src/aggregator' | ||
import { Service } from '../src' | ||
import { generateAddExtensionTx } from '../src/service/cota/extension' | ||
|
||
const TEST_PRIVATE_KEY = '0xee56672e70cec79941adc0637c1edb1546a0c39c72eff8c41bc4f1e03bf663b3' | ||
const TEST_ADDRESS = 'ckt1qyq897k5m53wxzup078jwkucvvsu8kzv55rqqm6glm' | ||
|
||
const secp256k1CellDep = (isMainnet: boolean): CKBComponents.CellDep => { | ||
if (isMainnet) { | ||
return { | ||
outPoint: { | ||
txHash: '0x71a7ba8fc96349fea0ed3a5c47992e3b4084b031a42264a018e0072e8172e46c', | ||
index: '0x0', | ||
}, | ||
depType: 'depGroup', | ||
} | ||
} | ||
return { | ||
outPoint: { | ||
txHash: '0xf8de3bb47d055cdf460d93a2a6e1b05f7432f9777c8c474abf4eec1d4aee5d37', | ||
index: '0x0', | ||
}, | ||
depType: 'depGroup', | ||
} | ||
} | ||
|
||
const run = async () => { | ||
// True for mainnet and false for testnet | ||
const isMainnet = false | ||
|
||
const service: Service = { | ||
collector: new Collector({ | ||
ckbNodeUrl: 'https://testnet.ckb.dev/rpc', | ||
ckbIndexerUrl: 'https://testnet.ckb.dev/indexer', | ||
}), | ||
aggregator: new Aggregator({ registryUrl: 'http://localhost:3050', cotaUrl: 'http://localhost:3030' }), | ||
} | ||
const ckb = service.collector.getCkb() | ||
const extensionLock = addressToScript(TEST_ADDRESS) | ||
|
||
let rawTx = await generateAddExtensionTx(service, extensionLock, BigInt(6000), isMainnet) | ||
rawTx.cellDeps.push(secp256k1CellDep(isMainnet)) | ||
|
||
const signedTx = ckb.signTransaction(TEST_PRIVATE_KEY)(rawTx) | ||
console.log(JSON.stringify(signedTx)) | ||
|
||
let txHash = await ckb.rpc.sendTransaction(signedTx, 'passthrough') | ||
console.info(`Add cota extension tx has been sent with tx hash ${txHash}`) | ||
} | ||
|
||
run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nervina-labs/cota-sdk", | ||
"version": "0.6.6", | ||
"version": "0.7.0", | ||
"description": "The SDK of CoTA", | ||
"repository": "[email protected]:nervina-labs/cota-sdk-js.git", | ||
"author": "duanyytop <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
import { Service } from '../..' | ||
import { FEE, getCotaTypeScript, getCotaCellDep } from '../../constants' | ||
import { CotaInfo, Hex } from '../../types' | ||
import { append0x, utf8ToHex, toSnakeCase } from '../../utils' | ||
|
||
const generateCotaMetadata = (cotaInfo: CotaInfo, cotaId: Hex): Hex => { | ||
const cotaInfoTemp = { | ||
cotaId, | ||
...cotaInfo, | ||
} | ||
const cotaMeta = { | ||
id: 'CTMeta', | ||
ver: '1.0', | ||
metadata: { | ||
target: 'output#0', | ||
type: 'cota', | ||
data: { | ||
version: '0', | ||
...cotaInfoTemp, | ||
}, | ||
}, | ||
} | ||
return append0x(utf8ToHex(JSON.stringify(toSnakeCase(cotaMeta)))) | ||
} | ||
|
||
export const generateCotaMetadataTx = async ( | ||
service: Service, | ||
cotaLock: CKBComponents.Script, | ||
cotaId: Hex, | ||
cotaInfo: CotaInfo, | ||
fee = FEE, | ||
isMainnet = false, | ||
) => { | ||
const cotaType = getCotaTypeScript(isMainnet) | ||
const cotaCells = await service.collector.getCells(cotaLock, cotaType) | ||
if (!cotaCells || cotaCells.length === 0) { | ||
throw new Error("Cota cell doesn't exist") | ||
} | ||
|
||
const cotaCell = cotaCells[0] | ||
const inputs = [ | ||
{ | ||
previousOutput: cotaCell.outPoint, | ||
since: '0x0', | ||
}, | ||
] | ||
|
||
const outputs = [cotaCell.output] | ||
outputs[0].capacity = `0x${(BigInt(outputs[0].capacity) - fee).toString(16)}` | ||
|
||
const cotaOutput = await service.collector.getLiveCell(cotaCell.outPoint) | ||
const outputsData = [cotaOutput.data?.content] | ||
|
||
const cellDeps = [getCotaCellDep(isMainnet)] | ||
|
||
const rawTx: any = { | ||
version: '0x0', | ||
cellDeps, | ||
headerDeps: [], | ||
inputs, | ||
outputs, | ||
outputsData, | ||
witnesses: [], | ||
} | ||
rawTx.witnesses = rawTx.inputs.map((_, i) => | ||
i > 0 ? '0x' : { lock: '', inputType: '', outputType: generateCotaMetadata(cotaInfo, cotaId) }, | ||
) | ||
return rawTx | ||
} | ||
import { Service } from '../..' | ||
import { FEE, getCotaTypeScript, getCotaCellDep } from '../../constants' | ||
import { CotaInfo, Hex } from '../../types' | ||
import { append0x, utf8ToHex, toSnakeCase } from '../../utils' | ||
|
||
const generateCotaMetadata = (cotaInfo: CotaInfo, cotaId: Hex): Hex => { | ||
const cotaInfoTemp = { | ||
cotaId, | ||
...cotaInfo, | ||
} | ||
const cotaMeta = { | ||
id: 'CTMeta', | ||
ver: '1.0', | ||
metadata: { | ||
target: 'output#0', | ||
type: 'cota', | ||
data: { | ||
version: '0', | ||
...cotaInfoTemp, | ||
}, | ||
}, | ||
} | ||
return append0x(utf8ToHex(JSON.stringify(toSnakeCase(cotaMeta)))) | ||
} | ||
|
||
export const generateCotaMetadataTx = async ( | ||
service: Service, | ||
cotaLock: CKBComponents.Script, | ||
cotaId: Hex, | ||
cotaInfo: CotaInfo, | ||
fee = FEE, | ||
isMainnet = false, | ||
) => { | ||
const cotaType = getCotaTypeScript(isMainnet) | ||
const cotaCells = await service.collector.getCells(cotaLock, cotaType) | ||
if (!cotaCells || cotaCells.length === 0) { | ||
throw new Error("Cota cell doesn't exist") | ||
} | ||
|
||
const cotaCell = cotaCells[0] | ||
const inputs = [ | ||
{ | ||
previousOutput: cotaCell.outPoint, | ||
since: '0x0', | ||
}, | ||
] | ||
|
||
const outputs = [cotaCell.output] | ||
outputs[0].capacity = `0x${(BigInt(outputs[0].capacity) - fee).toString(16)}` | ||
|
||
const cotaOutput = await service.collector.getLiveCell(cotaCell.outPoint) | ||
const outputsData = [cotaOutput.data?.content] | ||
|
||
const cellDeps = [getCotaCellDep(isMainnet)] | ||
|
||
const rawTx: any = { | ||
version: '0x0', | ||
cellDeps, | ||
headerDeps: [], | ||
inputs, | ||
outputs, | ||
outputsData, | ||
witnesses: [], | ||
} | ||
rawTx.witnesses = rawTx.inputs.map((_, i) => | ||
i > 0 ? '0x' : { lock: '', inputType: '', outputType: generateCotaMetadata(cotaInfo, cotaId) }, | ||
) | ||
return rawTx | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import { serializeScript } from '@nervosnetwork/ckb-sdk-utils' | ||
import { Service } from '../..' | ||
import { FEE, getCotaTypeScript, getCotaCellDep } from '../../constants' | ||
import { ExtensionReq } from '../../types' | ||
|
||
|
||
enum Action { | ||
Add, | ||
Update | ||
} | ||
|
||
const generateExtensionTx = async ( | ||
service: Service, | ||
cotaLock: CKBComponents.Script, | ||
fee = FEE, | ||
isMainnet = false, | ||
action: Action, | ||
) => { | ||
const cotaType = getCotaTypeScript(isMainnet) | ||
const cotaCells = await service.collector.getCells(cotaLock, cotaType) | ||
if (!cotaCells || cotaCells.length === 0) { | ||
throw new Error("Cota cell doesn't exist") | ||
} | ||
const cotaCell = cotaCells[0] | ||
const inputs = [ | ||
{ | ||
previousOutput: cotaCell.outPoint, | ||
since: '0x0', | ||
}, | ||
] | ||
|
||
const outputs = [cotaCell.output] | ||
outputs[0].capacity = `0x${(BigInt(outputs[0].capacity) - fee).toString(16)}` | ||
|
||
const extensionReq: ExtensionReq = { | ||
lockScript: serializeScript(cotaLock), | ||
} | ||
|
||
const { smtRootHash, extensionSmtEntry } = await service.aggregator.generateExtensionSmt(extensionReq) | ||
const cotaCellData = `0x02${smtRootHash}` | ||
|
||
const outputsData = [cotaCellData] | ||
const cellDeps = [getCotaCellDep(isMainnet)] | ||
|
||
const rawTx = { | ||
version: '0x0', | ||
cellDeps, | ||
headerDeps: [], | ||
inputs, | ||
outputs, | ||
outputsData, | ||
witnesses: [], | ||
} as any | ||
|
||
const prefix = action == Action.Add ? '0xF0' : '0xF1' | ||
rawTx.witnesses = rawTx.inputs.map((_, i) => | ||
i > 0 ? '0x' : { lock: '', inputType: `${prefix}${extensionSmtEntry}`, outputType: '' }, | ||
) | ||
return rawTx | ||
} | ||
|
||
|
||
export const generateAddExtensionTx = async ( | ||
service: Service, | ||
cotaLock: CKBComponents.Script, | ||
fee = FEE, | ||
isMainnet = false | ||
) => await generateExtensionTx(service, cotaLock, fee, isMainnet, Action.Add) | ||
|
||
|
||
export const generateUpdateExtensionTx = async ( | ||
service: Service, | ||
cotaLock: CKBComponents.Script, | ||
fee = FEE, | ||
isMainnet = false | ||
) => await generateExtensionTx(service, cotaLock, fee, isMainnet, Action.Update) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters