Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Here are the currently valid contract names.
- (optional) key: `"tokenIdTriggers"`:
- value: object:
- key: [Bot ID](#bot-id)
- value: length-2 array defining range of token IDs that trigger artbot to use the project bot. e.g. [555, null] means all tokens >= 555 should use the project bot defined in key. [100, 200] means all tokens from 100 to 200 should use the project bot bot defined in key.
- value: length-2 array defining range of token IDs that trigger artbot to use the project bot. e.g. [555, null] means all tokens >= 555 should use the project bot defined in key. [100, 200] means all tokens from 100 to 200 should use the project bot defined in key.

### Optional Configuration

Expand Down
4 changes: 2 additions & 2 deletions src/ProjectConfig/projectConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class ProjectConfig {
const projectBots: { [key: string]: ProjectBot } = {}

// Loops over channelsJson and adds all project IDs to a set of bots that
// need to be instatiated.
// need to be instantiated.
const botsToInstatiate = new Set<string>()
Object.keys(channelsJson).forEach((channel) => {
const projectBotHandlers = channelsJson[channel].projectBotHandlers
Expand All @@ -178,7 +178,7 @@ export class ProjectConfig {
})
})

// This loops through all bots that need to be instatiated asynchronously,
// This loops through all bots that need to be instantiated asynchronously,
// gets the relevant configuration from projectBotsJson, calls the subgraph
// to get project information, and then initializes the project bot.
console.log(
Expand Down