# new

Creates an on-chain object.

# Type

;<T extends new (...args: any) => any>(
  constructor: T,
  args?: ConstructorParameters<T>,
  mod?: string,
) =>
  Promise<
    InstanceType<T> & {
      _id: string
      _rev: string
      _root: string
      _amount: number
      _owners: string[]
      _readers?: string[]
      _url?: string
    }
  >

# Parameters

# constructor

A named JavaScript class T.

# args

Arguments to the constructor of the class T.

# mod

Optionally, a string of the for <transaction-id>:<output-number> that references a module.

# Return Value

If T or one of its sub-objects does not extend from Contract an error is thrown. Otherwise it returns an on-chain object of class T. The objectk has all the properties specified in T and in addition the properties _id, _rev, _root, _owners, and _amount. If the constructor defined properties _url or _readers they must have the types as indicated above.

# Description

The new function can create on-chain objects. The creation of a smart object is recorded in a transaction on the blockchain (see here for more details on how it works). Once an on-chain object is created its properties can only be updated through function calls. Every time a function is called, a transaction is broadcast that records the function call on the blockchain. For this reason it is necessary to await on all function calls on an on-chain object. Multiple users can sync to the same smart object to get consensus over its state.

# Example

import { Contract, Computer } from '@bitcoin-computer/lib'
import { chain, network, url, expect } from '../../utils'

// A smart contract
class Counter extends Contract {
  n: number

  constructor() {
    super({ n: 0 })
  }
  inc() {
    this.n += 1
  }
}

describe('new', () => {
  it('Should create a new on-chain object', async () => {
    // Create and fund wallet
    const computer = new Computer({ chain, network, url })
    await computer.faucet(1e8)

    // Create an on-chain object
    const counter = await computer.new(Counter, [])
    expect(counter).to.matchPattern({
      n: 0,
      _id: (id) => typeof id === 'string',
      _rev: (rev) => typeof rev === 'string',
      _root: (root) => typeof root === 'string',
      _amount: (amount) => typeof amount === 'number',
      _owners: [computer.getPublicKey()],
    })

    // Update an on-chain object
    await counter.inc()
    expect(counter).to.matchPattern({
      n: 1,
      _id: (id) => typeof id === 'string',
      _rev: (rev) => typeof rev === 'string',
      _root: (root) => typeof root === 'string',
      _amount: (amount) => typeof amount === 'number',
      _owners: [computer.getPublicKey()],
    })
  })
})

Sources