recipient
recipient: PublicKey
Staticempty
empty: (() => {
amount: UInt64;
recipient: PublicKey;
})
StaticfromFields
fromFields: ((fields: any[]) => {
amount: UInt64;
recipient: PublicKey;
})
StaticfromJSON
fromJSON: ((x: {
amount: string;
recipient: string;
}) => {
amount: UInt64;
recipient: PublicKey;
})
StaticfromValue
fromValue: ((value: {
amount: bigint | UInt64;
recipient: PublicKey | {
isOdd: any;
x: any;
};
}) => {
amount: UInt64;
recipient: PublicKey;
})
StatictoInput
toInput: ((x: {
amount: UInt64;
recipient: PublicKey;
}) => {
fields?: any[];
packed?: [any, number][];
})
StatictoJSON
toJSON: ((x: {
amount: UInt64;
recipient: PublicKey;
}) => {
amount: string;
recipient: string;
})