Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.05 KB

20220913-interaction-template-interface-fungible-token-transfer.md

File metadata and controls

41 lines (34 loc) · 1.05 KB
status flip authors sponsor updated
proposed
9
Jeffrey Doyle ([email protected])
Jeffrey Doyle ([email protected])
2022-09-13

Interaction Template Interface | Fungible Token Transfer Transaction

Abstract

This FLIP establishes the Interaction Template Interface for Fungible Token Transfer. Interaction Templates that conform to and identify with this interface will be deemed Fungible Token Transfer transactions.

Background

Interaction Template Interface is a data structure established in FLIP-934.

Interaction Template Interface

{
    f_type: "InteractionTemplateInterface",
    f_version: "1.0.0",
    id: "",
    data: {
        flip: "FLIP-XXXX",
        title: "Fungible Token Transfer",
        arguments: {
            amount: {
                index: 0,
                type: "UFix64"
            },
            to: {
                index: 1,
                type: "Address"
            }
        }
    }
}