Skip to content

Commit

Permalink
Created owner and deploys-blocks scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcontrart committed Jan 5, 2024
1 parent b36b8d2 commit 3157a71
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/batch-call/deploys-blocks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {}
17 changes: 16 additions & 1 deletion source/batch-call/scripts/owner.js
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
console.log(`\n✘ Balances is not ownable.\n`)
const { check } = require('../../../scripts/owners-update')
const {
BatchCall__factory,
} = require('@airswap/batch-call/typechain/factories/contracts')
const deploys = require('../deploys.js')

async function main() {
await check('BatchCall', BatchCall__factory, deploys)
}

main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error)
process.exit(1)
})

0 comments on commit 3157a71

Please sign in to comment.