bootstrapper_backend/BootstrapperData

actor class BootstrapperData(initialOwner : Principal)

type PubKey = UserAuth.PubKey

type FrontendTweaker = { frontend : Principal; user : Principal }

type Token = {#icp; #cycles}

public func changeOwner(newOwner : Principal)

public func setOwner(newOwner : Principal)

public func putFrontendTweaker(pubKey : PubKey, tweaker : FrontendTweaker) : async ()

public func getFrontendTweaker(pubKey : PubKey) : async FrontendTweaker

public func deleteFrontendTweaker(pubKey : PubKey) : async ()