cashier_withdraw_keypairs.sql 283 B

12345678910
  1. CREATE TABLE IF NOT EXISTS withdraw_keypairs(
  2. keypair_id INTEGER PRIMARY KEY NOT NULL,
  3. token_key_public BLOB NOT NULL,
  4. d_key_secret BLOB NOT NULL,
  5. d_key_public BLOB NOT NULL,
  6. network BLOB NOT NULL,
  7. token_id BLOB NOT NULL,
  8. mint_address BLOB NOT NULL,
  9. confirm BLOB NOT NULL
  10. );