Skip to content

Latest commit

 

History

History

secp256k1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Spore Default Lock Examples

What is CKB Default Lock

CKB Default Lock is the most commonly used lock script on Nervos CKB, also a great starting point for beginners due to its simplicity. You can create private assets with the CKB Default Lock for safeguarding ownership of your private assets.

CKB Default Lock is also known as the Secp256k1Blake160 Sign-all lock.

Featured examples

Spore:

Cluster:

ClusterProxy:

ClusterAgent:

Run examples

Please make sure you've met the pre-requirements:
Node.js >= 18.0.0
PNPM >= 8.0.0

Setup environment

To set up the local environment, run the following command at the root of the Spore SDK:

pnpm i && pnpm run build:packages

Run an example

Go to the current directory (examples/secp256k1) and run an example:

ts-node apis/createSpore.ts

Review transaction

This example constructs and sends a transaction that creates a spore on-chain. Once the transaction is sent, a hash value should be returned. You can later review the transaction on CKB Explorer:

https://pudge.explorer.nervos.org/transaction/{hash}

Customization

Update configs

If you have your own testing accounts, or if you want to configure the SporeConfig of the examples, you can go to the examples/secp256k1/utils/config.ts file and update it. Inside the utils/config.ts file, you can:

  • Replace the default testing accounts with your own
  • Modify the default SporeConfig as needed

Use your own accounts

If you want a clean startup environment for testing the functionality of the spore-sdk, you can replace the default testing accounts with your own accounts. Whether locally or in globally, there has two default testing accounts being used, CHARLIE and ALICE.

How to replace them:

  • Replace locally: For replacing the testing accounts locally (only affects the secp256k1 examples), visit the examples/secp256k1/utils/config.ts file and edit the accounts variable.
  • Replace globally: If you want to replace the testing accounts globally (affects all kinds of examples), you can visit the examples/shared/index.ts file and edit the accounts variable.

Generate testing accounts

For those who want to create new accounts for testing the examples, you can follow the steps below to create a new private key and claim some faucet CKBytes.

1. Generate a new account:

  1. Open the Generator Tool website
  2. Click the refresh icon (🔄) on the page to generate a new account
  3. Copy the new account's Private Key (256-bit) from the Private/Public Key block
  4. Replace any of the default testing accounts with the new account

2. Claim faucet CKBytes for the new account:

  1. Copy the new account's Nervos CKB Address from the Default Lock (Secp256k1-Blake160) - Testnet block
  2. Open the Nervos Faucet website
  3. Paste the address into the address input, and click the Claim button
  4. Wait for a while until the faucet process is completed