You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/proto/FIO.proto
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,16 @@ message Action {
77
77
uint64fee=3;
78
78
}
79
79
80
+
// Action for removing public chain addresses from a FIO name; remove_pub_address
81
+
// Note: actor is not needed, computed from private key
82
+
messageRemoveAllPubAddress {
83
+
// The FIO name already registered to the owner. Ex.: "alice@trust"
84
+
stringfio_address=1;
85
+
86
+
// Max fee to spend, can be obtained using get_fee API.
87
+
uint64fee=3;
88
+
}
89
+
80
90
// Action for transferring FIO coins; transfer_tokens_pub_key
81
91
// Note: actor is not needed, computed from private key
82
92
messageTransfer {
@@ -122,6 +132,18 @@ message Action {
122
132
uint64fee=5;
123
133
}
124
134
135
+
// Action for adding `100 * bundle_sets` bundled transactions to the supplied FIO Handle. When bundles are purchased one or more sets of bundled transactions are added to the existing count.
136
+
messageAddBundledTransactions {
137
+
// The FIO name already registered to the owner. Ex.: "alice@trust"
138
+
stringfio_address=1;
139
+
140
+
// Number of bundled sets. One set is 100 bundled transactions.
141
+
uint64bundle_sets=2;
142
+
143
+
// Max fee to spend, can be obtained using get_fee API.
0 commit comments