Skip to content

Finalizing grant application form structure #172

Closed Answered by chibie
chibie asked this question in Q&A
Discussion options

You must be logged in to vote

this is the type i defined

export interface GrantApplication {
  /**
   * The round contract address applied to 
   */
  round: string;
  /** 
   * Recipient wallet address of grantee
   */
  recipient: string;
  /**
   * Project information
   */
  project: {
    lastUpdated: Number, // unix timestamp in milliseconds
    id: string,
    title: string,
    description: string,
    website: string,
    bannerImg?: string,
    logoImg: string,
    metaPtr: MetadataPointer
  };
  /** List of answers to questions */
  answers: Array<{
    questionId: Number,
    question: string,
    answer: string
  }>
}

Replies: 3 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@thelostone-mc
Comment options

@tim-schultz
Comment options

Comment options

You must be logged in to vote
1 reply
@thelostone-mc
Comment options

Answer selected by thelostone-mc
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants