The OPNet Smart Contract Runtime provides the foundational components required for creating smart contracts on Bitcoin Layer 1 (L1). Written in AssemblyScript, this runtime allows developers to leverage WebAssembly for efficient contract execution while integrating deeply with Bitcoin's decentralized architecture.
git clone https://github.com/btc-vision/btc-runtime.git
cd btc-runtime
npm install
The Blockchain
object environment is the backbone of the OPNet runtime, providing essential functionality for
interacting with the blockchain, such as managing contract states, handling transactions, and emitting events.
For more detailed information, see the Blockchain.md documentation.
Contracts in OPNet are AssemblyScript classes that extend the OP_NET
base class. The constructor pattern differs from
Solidity's, as it runs every time a contract is instantiated, so developers should not use the constructor for
persistent initialization.
For a detailed guide on how to structure contracts, refer to the Contract.md documentation.
Events in OPNet allow contracts to emit signals that external observers can listen to. They are crucial for tracking state changes and interactions within the contract.
For a comprehensive explanation on how to define and use events, refer to the Events.md documentation.
Storage in OPNet is managed using a combination of pointers (u16
) and sub-pointers (u256
). These are encoded and
hashed to generate unique storage locations that are secure and verifiable. This approach ensures that the data stored
is tamper-proof and can be efficiently accessed.
For more details on pointers and storage management, see the Pointers.md and Storage.md documentation.
Here is a real-world example of how to create a basic token contract using the OPNet Smart Contract Runtime. This contract follows the OP20 standard.
import {
Address,
Blockchain,
BytesWriter,
Calldata,
DeployableOP_20,
encodeSelector,
Map,
OP20InitParameters,
Selector,
AddressMap
} from '@btc-vision/btc-runtime/runtime';
import { u128, u256 } from 'as-bignum/assembly';
@final
export class MyToken extends DeployableOP_20 {
public constructor() {
super();
// IMPORTANT. THIS WILL RUN EVERYTIME THE CONTRACT IS INTERACTED WITH. FOR SPECIFIC INITIALIZATION, USE "onDeployment" METHOD.
}
// "solidityLikeConstructor" This is a solidity-like constructor. This method will only run once when the contract is deployed.
public override onDeployment(_calldata: Calldata): void {
const maxSupply: u256 = u128.fromString('100000000000000000000000000').toU256(); // Your max supply.
const decimals: u8 = 18; // Your decimals.
const name: string = 'MyToken'; // Your token name.
const symbol: string = 'TOKEN'; // Your token symbol.
this.instantiate(new OP20InitParameters(maxSupply, decimals, name, symbol));
// Add your logic here. Eg, minting the initial supply:
this._mint(Blockchain.tx.origin, maxSupply);
}
public override execute(method: Selector, calldata: Calldata): BytesWriter {
switch (method) {
case encodeSelector('airdrop'):
return this.airdrop(calldata);
case encodeSelector('airdropWithAmount'):
return this.airdropWithAmount(calldata);
default:
return super.execute(method, calldata);
}
}
private airdrop(calldata: Calldata): BytesWriter {
this.onlyOwner(Blockchain.tx.sender);
const drops: AddressMap<u256> = calldata.readAddressValueTuple();
const addresses: Address[] = drops.keys();
for (let i: i32 = 0; i < addresses.length; i++) {
const address = addresses[i];
const amount = drops.get(address);
this._mint(address, amount, false);
}
const writer: BytesWriter = new BytesWriter(1);
writer.writeBoolean(true);
return writer;
}
private _optimizedMint(address: Address, amount: u256): void {
this.balanceOfMap.set(address, amount);
this._totalSupply.addNoCommit(amount);
this.createMintEvent(address, amount);
}
private airdropWithAmount(calldata: Calldata): BytesWriter {
this.onlyOwner(Blockchain.tx.sender);
const amount: u256 = calldata.readU256();
const addresses: Address[] = calldata.readAddressArray();
for (let i: i32 = 0; i < addresses.length; i++) {
this._optimizedMint(addresses[i], amount);
}
this._totalSupply.commit();
const writer: BytesWriter = new BytesWriter(1);
writer.writeBoolean(true);
return writer;
}
}
Storage pointers and sub-pointers are encoded and hashed to create unique and secure storage locations. These storage
locations are managed using the Blockchain
class's setStorageAt
and getStorageAt
methods, ensuring data integrity
and preventing tampering.
For complex data types, the Serializable
class allows you to manage and persist data structures across multiple
storage slots.
class ComplexData extends Serializable {
// Implementation
}
For more detailed explanations on specific topics, refer to the individual documentation files:
This project is licensed under the MIT License. View the full license here.