@fioprotocol/fiosdk
Version:
The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryp
45 lines (37 loc) • 1.39 kB
text/typescript
import {Account, Action, EndPoint, RegisterFioAddressResponse} from '../../entities'
import {validationRules} from '../../utils/validation'
import {RequestConfig} from '../Transactions'
import { SignedTransaction } from './SignedTransaction'
export type RegisterFioAddressRequestData = {
fio_address: string;
owner_fio_public_key: string;
max_fee: number;
tpid: string;
actor: string;
}
export type RegisterFioAddressRequestProps = {
fioAddress: string;
maxFee: number;
technologyProviderId: string;
ownerPublicKey?: string;
}
export class RegisterFioAddress extends SignedTransaction<
RegisterFioAddressRequestData,
RegisterFioAddressResponse
> {
public ENDPOINT = `chain/${EndPoint.registerFioAddress}` as const
public ACTION = Action.regAddress
public ACCOUNT = Account.address
constructor(config: RequestConfig, public props: RegisterFioAddressRequestProps) {
super(config)
this.validationData = {fioAddress: props.fioAddress, tpid: props.technologyProviderId}
this.validationRules = validationRules.registerFioAddress
}
public getData = () => ({
actor: this.getActor(),
fio_address: this.props.fioAddress,
max_fee: this.props.maxFee,
owner_fio_public_key: this.props.ownerPublicKey || this.publicKey,
tpid: this.props.technologyProviderId,
})
}