Anyone-can-pay (ACP) lock is designed to be unlocked by anyone without signature verification and accepts any amount of CKB/UDT payment from the unlocker. You can create public Clusters with the Anyone-can-pay lock and benefit from charging other users for creating Spores that references the public Clusters.
Refer to the RFC for more detailed rules: CKB RFC 0026: Anyone-can-pay Lock.
- apis/createAcpCluster.ts: Create a public Cluster that can be referenced by any Spore
- apis/createSporeWithAcpCluster.ts: Create a private Spore that references a public Cluster
Please make sure you've met the pre-requirements:
Node.js
>= 18.0.0
PNPM
>= 8.0.0
To set up the local environment, run the following command at the root of the Spore SDK:
pnpm i && pnpm run build:packages
Go to the current directory (examples/acp
) and run an example:
ts-node apis/createAcpCluster.ts
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}
If you have your own testing accounts, or if you want to configure the SporeConfig of the examples, you can go to the examples/acp/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
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/acp/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.
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:
- Open the Generator Tool website
- Click the refresh icon (🔄) on the page to generate a new account
- Copy the new account's
Private Key (256-bit)
from thePrivate/Public Key
block - Replace any of the default testing accounts with the new account
2. Claim faucet CKBytes for the new account:
- Copy the new account's
Nervos CKB Address
from theDefault Lock (Secp256k1-Blake160) - Testnet
block - Open the Nervos Faucet website
- Paste the address into the address input, and click the
Claim
button - Wait for a while until the faucet process is completed