eosio.system.abi 19.9 KB
Newer Older
1
{
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
   "version": "eosio::abi/1.0",
   "types": [{
      "new_type_name": "account_name",
      "type": "name"
   },{
      "new_type_name": "permission_name",
      "type": "name"
   },{
      "new_type_name": "action_name",
      "type": "name"
   },{
      "new_type_name": "transaction_id_type",
      "type": "checksum256"
   },{
      "new_type_name": "weight_type",
      "type": "uint16"
   }],
19
   "____comment": "eosio.bios structs: set_account_limits, setpriv, set_global_limits, producer_key, set_producers, require_auth are provided so abi available for deserialization in future.",
20 21 22 23 24 25 26 27 28 29 30 31 32 33
   "structs": [{
      "name": "permission_level",
      "base": "",
      "fields": [
        {"name":"actor",      "type":"account_name"},
        {"name":"permission", "type":"permission_name"}
      ]
    },{
      "name": "key_weight",
      "base": "",
      "fields": [
        {"name":"key",    "type":"public_key"},
        {"name":"weight", "type":"weight_type"}
      ]
34 35 36 37 38 39
    },{
      "name": "prod_meta",
      "base": "",
      "fields": [
        {"name":"owner",        "type":"account_name"},
        {"name":"total_votes",  "type":"float64"},
40
        {"name":"producer_key", "type":"public_key"},        
41
        {"name":"all_stake",    "type":"int64"},
W
Wang Zhi 已提交
42
        {"name":"is_active",    "type":"bool"},
W
Wang Zhi 已提交
43
        {"name":"url",          "type":"string"},
W
Wang Zhi 已提交
44
        {"name":"location",     "type":"uint16"}
45
      ]
46 47 48 49 50 51 52 53
    },{
      "name": "bidname",
      "base": "",
      "fields": [
        {"name":"bidder",  "type":"account_name"},
        {"name":"newname", "type":"account_name"},
        {"name":"bid", "type":"asset"}
      ]
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    },{
      "name": "permission_level_weight",
      "base": "",
      "fields": [
        {"name":"permission", "type":"permission_level"},
        {"name":"weight",     "type":"weight_type"}
      ]
    },{
      "name": "wait_weight",
      "base": "",
      "fields": [
        {"name":"wait_sec", "type":"uint32"},
        {"name":"weight",   "type":"weight_type"}
      ]
    },{
      "name": "authority",
      "base": "",
      "fields": [
        {"name":"threshold", "type":"uint32"},
        {"name":"keys",      "type":"key_weight[]"},
        {"name":"accounts",  "type":"permission_level_weight[]"},
        {"name":"waits",     "type":"wait_weight[]"}
      ]
    },{
      "name": "newaccount",
      "base": "",
      "fields": [
        {"name":"creator", "type":"account_name"},
        {"name":"name",    "type":"account_name"},
        {"name":"owner",   "type":"authority"},
        {"name":"active",  "type":"authority"}
      ]
    },{
      "name": "setcode",
      "base": "",
      "fields": [
        {"name":"account",   "type":"account_name"},
        {"name":"vmtype",    "type":"uint8"},
        {"name":"vmversion", "type":"uint8"},
        {"name":"code",      "type":"bytes"}
      ]
    },{
      "name": "setabi",
      "base": "",
      "fields": [
        {"name":"account", "type":"account_name"},
        {"name":"abi",     "type":"bytes"}
      ]
    },{
      "name": "updateauth",
      "base": "",
      "fields": [
        {"name":"account",    "type":"account_name"},
        {"name":"permission", "type":"permission_name"},
        {"name":"parent",     "type":"permission_name"},
        {"name":"auth",       "type":"authority"}
      ]
    },{
      "name": "deleteauth",
      "base": "",
      "fields": [
        {"name":"account",    "type":"account_name"},
        {"name":"permission", "type":"permission_name"}
      ]
    },{
      "name": "linkauth",
      "base": "",
      "fields": [
        {"name":"account",     "type":"account_name"},
        {"name":"code",        "type":"account_name"},
        {"name":"type",        "type":"action_name"},
        {"name":"requirement", "type":"permission_name"}
      ]
    },{
      "name": "unlinkauth",
      "base": "",
      "fields": [
        {"name":"account",     "type":"account_name"},
        {"name":"code",        "type":"account_name"},
        {"name":"type",        "type":"action_name"}
      ]
    },{
      "name": "canceldelay",
      "base": "",
      "fields": [
        {"name":"canceling_auth", "type":"permission_level"},
        {"name":"trx_id",         "type":"transaction_id_type"}
      ]
    },{
      "name": "onerror",
      "base": "",
      "fields": [
        {"name":"sender_id", "type":"uint128"},
        {"name":"sent_trx",  "type":"bytes"}
      ]
    },{
150 151 152 153 154 155 156 157 158 159 160 161
      "name": "buyrambytes",
      "base": "",
      "fields": [
         {"name":"payer", "type":"account_name"},
         {"name":"receiver", "type":"account_name"},
         {"name":"bytes", "type":"uint32"}
      ]
    },{
      "name": "sellram",
      "base": "",
      "fields": [
         {"name":"account", "type":"account_name"},
D
Daniel Larimer 已提交
162
         {"name":"bytes", "type":"uint64"}
163
      ]
K
Khaled Al-Hassanieh 已提交
164
    },{
165
      "name": "buyram",
166 167
      "base": "",
      "fields": [
168 169 170
         {"name":"payer", "type":"account_name"},
         {"name":"receiver", "type":"account_name"},
         {"name":"quant", "type":"asset"}
171 172 173
      ]
    },{
      "name": "delegatebw",
174 175
      "base": "",
      "fields": [
176 177
         {"name":"from", "type":"account_name"},
         {"name":"receiver", "type":"account_name"},
178
         {"name":"stake_net_quantity", "type":"asset"},
179 180
         {"name":"stake_cpu_quantity", "type":"asset"},
         {"name":"transfer", "type":"bool"}
181 182 183 184 185 186 187
      ]
    },{
      "name": "undelegatebw",
      "base": "",
      "fields": [
         {"name":"from", "type":"account_name"},
         {"name":"receiver", "type":"account_name"},
188
         {"name":"unstake_net_quantity", "type":"asset"},
A
arhag 已提交
189
         {"name":"unstake_cpu_quantity", "type":"asset"}
190
      ]
A
Anton Perkov 已提交
191 192 193 194 195 196
    },{
      "name": "refund",
      "base": "",
      "fields": [
         {"name":"owner", "type":"account_name"}
      ]
197 198 199 200 201 202
    },{
      "name": "delegated_bandwidth",
      "base": "",
      "fields": [
         {"name":"from", "type":"account_name"},
         {"name":"to", "type":"account_name"},
203
         {"name":"net_weight", "type":"asset"},
204
         {"name":"cpu_weight", "type":"asset"}
205
      ]
206 207 208 209 210 211 212
    },{
      "name": "user_resources",
      "base": "",
      "fields": [
         {"name":"owner", "type":"account_name"},
         {"name":"net_weight", "type":"asset"},
         {"name":"cpu_weight", "type":"asset"},
213
         {"name":"ram_bytes", "type":"uint64"}
214
      ]
215 216 217 218 219
    },{
      "name": "total_resources",
      "base": "",
      "fields": [
         {"name":"owner", "type":"account_name"},
220 221
         {"name":"net_weight", "type":"asset"},
         {"name":"cpu_weight", "type":"asset"},
222
         {"name":"ram_bytes", "type":"uint64"}
223
      ]
224 225 226 227 228
    },{
      "name": "refund_request",
      "base": "",
      "fields": [
         {"name":"owner", "type":"account_name"},
B
Bucky Kittinger 已提交
229
         {"name":"request_time", "type":"time_point_sec"},
230 231
         {"name":"net_amount", "type":"asset"},
         {"name":"cpu_amount", "type":"asset"}
232
      ]
A
Anton Perkov 已提交
233
    },{
234
      "name": "blockchain_parameters",
A
Anton Perkov 已提交
235 236
      "base": "",
      "fields": [
K
Khaled Al-Hassanieh 已提交
237

238 239 240 241 242
         {"name":"max_block_net_usage",                 "type":"uint64"},
         {"name":"target_block_net_usage_pct",          "type":"uint32"},
         {"name":"max_transaction_net_usage",           "type":"uint32"},
         {"name":"base_per_transaction_net_usage",      "type":"uint32"},
         {"name":"net_usage_leeway",                    "type":"uint32"},
243 244
         {"name":"context_free_discount_net_usage_num", "type":"uint32"},
         {"name":"context_free_discount_net_usage_den", "type":"uint32"},
245 246 247
         {"name":"max_block_cpu_usage",                 "type":"uint32"},
         {"name":"target_block_cpu_usage_pct",          "type":"uint32"},
         {"name":"max_transaction_cpu_usage",           "type":"uint32"},
K
Khaled Al-Hassanieh 已提交
248
         {"name":"min_transaction_cpu_usage",           "type":"uint32"},
249 250 251 252 253
         {"name":"max_transaction_lifetime",            "type":"uint32"},
         {"name":"deferred_trx_expiration_window",      "type":"uint32"},
         {"name":"max_transaction_delay",               "type":"uint32"},
         {"name":"max_inline_action_size",              "type":"uint32"},
         {"name":"max_inline_action_depth",             "type":"uint16"},
254
         {"name":"max_authority_depth",                 "type":"uint16"}
255

256
      ]
257
    },{
A
Anton Perkov 已提交
258
      "name": "eosio_global_state",
A
arhag 已提交
259
      "base": "blockchain_parameters",
A
Anton Perkov 已提交
260
      "fields": [
A
arhag 已提交
261
         {"name":"max_ram_size",                  "type":"uint64"},
K
Khaled Al-Hassanieh 已提交
262
         {"name":"total_ram_bytes_reserved",      "type":"uint64"},
K
Khaled Al-Hassanieh 已提交
263
         {"name":"total_ram_stake",               "type":"int64"},
K
Khaled Al-Hassanieh 已提交
264
         {"name":"last_producer_schedule_update", "type":"block_timestamp_type"},
265
         {"name":"last_pervote_bucket_fill",      "type":"uint64"},
D
Daniel Larimer 已提交
266 267
         {"name":"pervote_bucket",                "type":"int64"},
         {"name":"perblock_bucket",               "type":"int64"},
268
         {"name":"total_unpaid_blocks",           "type":"uint32"},
269
         {"name":"total_activated_stake",         "type":"int64"},
270
         {"name":"thresh_activated_stake_time",   "type":"uint64"},
271
         {"name":"last_producer_schedule_size",   "type":"uint16"},
272 273
         {"name":"total_producer_vote_weight",    "type":"float64"},
         {"name":"last_name_close",               "type":"block_timestamp_type"}
A
Anton Perkov 已提交
274
      ]
W
Wang Zhi 已提交
275 276 277 278 279 280 281 282
    },{
      "name": "eosio_global_state2",
      "base": "",
      "fields": [
         {"name":"perbase_bucket",                "type":"int64"},
         {"name":"total_unpaid_base_cnt",         "type":"uint32"},
         {"name":"last_claim_time",               "type":"uint64"}         
      ]
283 284 285 286
    },{
      "name": "eosio_global_count",
      "base": "",
      "fields": [
W
Wang Zhi 已提交
287
         {"name":"total_accounts",                 "type":"uint64"}
288
      ]
289 290 291 292
    },{
      "name": "producer_info",
      "base": "",
      "fields": [
293 294 295 296 297 298 299 300
         {"name":"owner",           "type":"account_name"},
         {"name":"total_votes",     "type":"float64"},
         {"name":"producer_key",    "type":"public_key"},
         {"name":"is_active",       "type":"bool"},
         {"name":"url",             "type":"string"},
         {"name":"unpaid_blocks",   "type":"uint32"},
         {"name":"last_claim_time", "type":"uint64"},
         {"name":"location",        "type":"uint16"}
301 302 303 304 305
      ]
    },{
      "name": "producer_info_ext",
      "base": "",
      "fields": [
W
Wang Zhi 已提交
306 307 308 309
         {"name":"owner",                   "type":"account_name"},
         {"name":"seq_num",                 "type":"uint16"},
         {"name":"out_votes",               "type":"int64"},
         {"name":"unpaid_base_cnt",         "type":"uint32"}
310 311 312 313 314 315
      ]
    },{
      "name": "producers_seq",
      "base": "",
      "fields": [
         {"name":"seq_num",          "type":"uint16"},
W
Wang Zhi 已提交
316
         {"name":"is_org",           "type":"bool"},
317 318 319 320 321 322
         {"name":"prods_l1",         "type":"prod_meta"},
         {"name":"prods_l2",         "type":"prod_meta[]"},
         {"name":"prods_l3",         "type":"prod_meta[]"},
         {"name":"prods_all",        "type":"prod_meta[]"},


323
      ]
D
Daniel Larimer 已提交
324 325 326 327
    },{
      "name": "regproducer",
      "base": "",
      "fields": [
A
Anton Perkov 已提交
328
        {"name":"producer",     "type":"account_name"},
329
        {"name":"producer_key", "type":"public_key"},
330
        {"name":"url",          "type":"string"},
331
        {"name":"location",     "type":"uint16"}
D
Daniel Larimer 已提交
332
      ]
333 334 335 336 337 338
    },{
      "name": "unregprod",
      "base": "",
      "fields": [
        {"name":"producer",     "type":"account_name"}
      ]
339 340 341 342 343 344 345 346 347 348 349 350
    },{
      "name": "clsprods2",
      "base": "",
      "fields": []
    },{
      "name": "seqproducer",
      "base": "",
      "fields": [
        {"name":"producer",     "type":"account_name"},
        {"name":"seq",          "type":"uint16"},
        {"name":"level",        "type":"uint8"}
      ]
W
Wang Zhi 已提交
351 352 353 354
    },{
      "name": "testnewelec",
      "base": "",
      "fields": []
355 356 357 358 359 360 361
    },{
      "name": "tmpvotennn",
      "base": "",
      "fields": [
        {"name":"producer",     "type":"account_name"},
        {"name":"tickets",      "type":"int64"}
      ]
362
    },{
363
      "name": "setram",
364 365
      "base": "",
      "fields": [
366
        {"name":"max_ram_size",     "type":"uint64"}
367
      ]
368 369 370 371
    },{
      "name": "regproxy",
      "base": "",
      "fields": [
A
arhag 已提交
372
        {"name":"proxy",     "type":"account_name"},
373
        {"name":"isproxy",   "type":"bool"}
374
      ]
A
Anton Perkov 已提交
375 376 377 378 379 380 381
    },{
      "name": "voteproducer",
      "base": "",
      "fields": [
        {"name":"voter",     "type":"account_name"},
        {"name":"proxy",     "type":"account_name"},
        {"name":"producers", "type":"account_name[]"}
D
Daniel Larimer 已提交
382 383
      ]
    },{
384
      "name": "voter_info",
D
Daniel Larimer 已提交
385 386
      "base": "",
      "fields": [
387 388 389
        {"name":"owner",                "type":"account_name"},
        {"name":"proxy",                "type":"account_name"},
        {"name":"producers",            "type":"account_name[]"},
K
Khaled Al-Hassanieh 已提交
390
        {"name":"staked",               "type":"int64"},
391 392
        {"name":"last_vote_weight",     "type":"float64"},
        {"name":"proxied_vote_weight",  "type":"float64"},
393
        {"name":"is_proxy",             "type":"bool"}
394
      ]
395 396 397 398 399
    },{
      "name": "claimrewards",
      "base": "",
      "fields": [
        {"name":"owner",   "type":"account_name"}
D
Daniel Larimer 已提交
400
      ]
W
Wang Zhi 已提交
401 402 403 404
    },{
      "name": "rewardprods",
      "base": "",
      "fields": []
405
    },{
406 407 408 409 410 411
      "name": "setpriv",
      "base": "",
      "fields": [
        {"name":"account",    "type":"account_name"},
        {"name":"is_priv",    "type":"int8"}
      ]
412 413 414 415 416 417
    },{
      "name": "rmvproducer",
      "base": "",
      "fields": [
        {"name":"producer", "type":"account_name"}
      ]
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
    },{
      "name": "set_account_limits",
      "base": "",
      "fields": [
        {"name":"account",    "type":"account_name"},
        {"name":"ram_bytes",  "type":"int64"},
        {"name":"net_weight", "type":"int64"},
        {"name":"cpu_weight", "type":"int64"}
      ]
    },{
      "name": "set_global_limits",
      "base": "",
      "fields": [
        {"name":"cpu_usec_per_period",    "type":"int64"}
      ]
    },{
      "name": "producer_key",
      "base": "",
      "fields": [
        {"name":"producer_name",      "type":"account_name"},
        {"name":"block_signing_key",  "type":"public_key"}
      ]
    },{
      "name": "set_producers",
      "base": "",
      "fields": [
        {"name":"schedule",   "type":"producer_key[]"}
      ]
    },{
      "name": "require_auth",
      "base": "",
      "fields": [
        {"name":"from", "type":"account_name"}
      ]
452 453 454 455
    },{
      "name": "setparams",
      "base": "",
      "fields": [
A
arhag 已提交
456
        {"name":"params", "type":"blockchain_parameters"}
457
      ]
K
Kevin Heifner 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
    },{
      "name": "connector",
      "base": "",
      "fields": [
        {"name":"balance", "type":"asset"},
        {"name":"weight", "type":"float64"}
      ]
    },{
      "name": "exchange_state",
      "base": "",
      "fields": [
        {"name":"supply", "type":"asset"},
        {"name":"base", "type":"connector"},
        {"name":"quote", "type":"connector"}
      ]
K
Kayan 已提交
473 474 475 476 477 478 479 480 481
    }, {
       "name": "namebid_info",
       "base": "",
       "fields": [
          {"name":"newname", "type":"account_name"},
          {"name":"high_bidder", "type":"account_name"},
          {"name":"high_bid", "type":"int64"},
          {"name":"last_bid_time", "type":"uint64"}
       ]
482
    }
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
   ],
   "actions": [{
     "name": "newaccount",
     "type": "newaccount",
     "ricardian_contract": ""
   },{
     "name": "setcode",
     "type": "setcode",
     "ricardian_contract": ""
   },{
     "name": "setabi",
     "type": "setabi",
     "ricardian_contract": ""
   },{
     "name": "updateauth",
     "type": "updateauth",
     "ricardian_contract": ""
   },{
     "name": "deleteauth",
     "type": "deleteauth",
     "ricardian_contract": ""
   },{
     "name": "linkauth",
     "type": "linkauth",
     "ricardian_contract": ""
   },{
     "name": "unlinkauth",
     "type": "unlinkauth",
     "ricardian_contract": ""
   },{
     "name": "canceldelay",
     "type": "canceldelay",
     "ricardian_contract": ""
   },{
     "name": "onerror",
     "type": "onerror",
     "ricardian_contract": ""
   },{
521 522 523
      "name": "buyrambytes",
      "type": "buyrambytes",
      "ricardian_contract": ""
524
   },{
525 526
      "name": "buyram",
      "type": "buyram",
527
      "ricardian_contract": ""
528
   },{
529 530 531
      "name": "sellram",
      "type": "sellram",
      "ricardian_contract": ""
532
   },{
533
      "name": "delegatebw",
534 535
      "type": "delegatebw",
      "ricardian_contract": ""
536
   },{
537
      "name": "undelegatebw",
538 539
      "type": "undelegatebw",
      "ricardian_contract": ""
540
   },{
A
Anton Perkov 已提交
541
      "name": "refund",
542 543
      "type": "refund",
      "ricardian_contract": ""
544
   },{
D
Daniel Larimer 已提交
545
      "name": "regproducer",
546 547
      "type": "regproducer",
      "ricardian_contract": ""
548
   },{
549 550
      "name": "setram",
      "type": "setram",
551
      "ricardian_contract": ""
552 553 554 555
   },{
      "name": "bidname",
      "type": "bidname",
      "ricardian_contract": ""
556
   },{
557
      "name": "unregprod",
558 559
      "type": "unregprod",
      "ricardian_contract": ""
560 561 562 563 564 565 566 567
   },{
      "name": "clsprods2",
      "type": "clsprods2",
      "ricardian_contract": ""
   },{
      "name": "seqproducer",
      "type": "seqproducer",
      "ricardian_contract": ""
W
Wang Zhi 已提交
568 569 570 571
   },{
      "name": "testnewelec",
      "type": "testnewelec",
      "ricardian_contract": ""
572 573 574 575
   },{
      "name": "tmpvotennn",
      "type": "tmpvotennn",
      "ricardian_contract": ""
576
   },{
577
      "name": "regproxy",
578 579
      "type": "regproxy",
      "ricardian_contract": ""
580
   },{
A
Anton Perkov 已提交
581
      "name": "voteproducer",
582 583
      "type": "voteproducer",
      "ricardian_contract": ""
584
   },{
585
      "name": "claimrewards",
586 587
      "type": "claimrewards",
      "ricardian_contract": ""
W
Wang Zhi 已提交
588 589 590 591
   },{
      "name": "rewardprods",
      "type": "rewardprods",
      "ricardian_contract": ""
592 593 594 595
   },{
      "name": "setpriv",
      "type": "setpriv",
      "ricardian_contract": ""
596 597 598 599
   },{
      "name": "rmvproducer",
      "type": "rmvproducer",
      "ricardian_contract": ""
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
   },{
      "name": "setalimits",
      "type": "set_account_limits",
      "ricardian_contract": ""
    },{
      "name": "setglimits",
      "type": "set_global_limits",
      "ricardian_contract": ""
    },{
      "name": "setprods",
      "type": "set_producers",
      "ricardian_contract": ""
    },{
      "name": "reqauth",
      "type": "require_auth",
      "ricardian_contract": ""
616 617 618 619
    },{
      "name": "setparams",
      "type": "setparams",
      "ricardian_contract": ""
620
    }],
621
   "tables": [{
A
Anton Perkov 已提交
622
      "name": "producers",
623 624 625 626
      "type": "producer_info",
      "index_type": "i64",
      "key_names" : ["owner"],
      "key_types" : ["uint64"]
627
    },{
628
      "name": "producersext",
629 630 631 632 633
      "type": "producer_info_ext",
      "index_type": "i64",
      "key_names" : ["owner"],
      "key_types" : ["uint64"]
    },{
W
Wang Zhi 已提交
634
      "name": "producerseq",
635 636 637 638
      "type": "producers_seq",
      "index_type": "i64",
      "key_names" : ["seq_num"],
      "key_types" : ["uint64"]
639 640 641 642 643 644
    },{
      "name": "global",
      "type": "eosio_global_state",
      "index_type": "i64",
      "key_names" : [],
      "key_types" : []
W
Wang Zhi 已提交
645 646 647 648 649 650
    },{
      "name": "globalext",
      "type": "eosio_global_state2",
      "index_type": "i64",
      "key_names" : [],
      "key_types" : []
651 652 653 654 655 656
    },{
      "name": "gcount",
      "type": "eosio_global_count",
      "index_type": "i64",
      "key_names" : [],
      "key_types" : []
657 658 659 660 661 662
    },{
      "name": "voters",
      "type": "voter_info",
      "index_type": "i64",
      "key_names" : ["owner"],
      "key_types" : ["account_name"]
663 664 665 666 667 668
    },{
      "name": "userres",
      "type": "user_resources",
      "index_type": "i64",
      "key_names" : ["owner"],
      "key_types" : ["uint64"]
669 670 671 672 673 674
    },{
      "name": "delband",
      "type": "delegated_bandwidth",
      "index_type": "i64",
      "key_names" : ["to"],
      "key_types" : ["uint64"]
K
Kevin Heifner 已提交
675 676 677 678 679 680
    },{
      "name": "rammarket",
      "type": "exchange_state",
      "index_type": "i64",
      "key_names" : ["supply"],
      "key_types" : ["uint64"]
681 682 683 684 685 686
    },{
      "name": "refunds",
      "type": "refund_request",
      "index_type": "i64",
      "key_names" : ["owner"],
      "key_types" : ["uint64"]
K
Kayan 已提交
687 688 689 690 691 692
    },{
       "name": "namebids",
       "type": "namebid_info",
       "index_type": "i64",
       "key_names" : ["newname"],
       "key_types" : ["account_name"]
693
    }
694 695 696
   ],
   "ricardian_clauses": [],
   "abi_extensions": []
D
Daniel Larimer 已提交
697
}