cardano-wallet-js
Version:
javascript/typescript client for the official cardano-wallet api
12 lines (11 loc) • 339 B
text/typescript
import { WalletsAssetsAvailable } from "../models";
export class AssetWallet implements WalletsAssetsAvailable {
policy_id: string;
asset_name: string;
quantity: number;
constructor(policy_id: string, asset_name: string, quantity: number){
this.policy_id = policy_id;
this.asset_name = asset_name;
this.quantity = quantity;
}
}