File tree 14 files changed +22
-14
lines changed
14 files changed +22
-14
lines changed Original file line number Diff line number Diff line change
1
+ # v0.4.20
2
+ - Add two new utility functions:
3
+ - ` getClosestTimestamp `
4
+ - ` getTimestampFromBlockNumber `
5
+ - Update manifest validator to not use arktype
6
+ - change --public options to --private in ` arkiver deploy `
7
+ - Updated examples
8
+
1
9
# v0.4.19
2
10
- Adds factory sources. added an example factory-source to showcase this. API looks like:
3
11
``` typescript
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
17
17
} from './cli/mod.ts'
18
18
import 'https://deno.land/std@0.179.0/dotenv/load.ts'
19
19
20
- export const version = 'v0.4.19 '
20
+ export const version = 'v0.4.20 '
21
21
22
22
const command = new Command ( )
23
23
. name ( 'arkiver' )
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
6
+ } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
Original file line number Diff line number Diff line change 1
1
import { formatUnits , getContract } from 'npm:viem'
2
- import { type BlockHandler } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
2
+ import { type BlockHandler } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
3
3
import { VaultSnapshot } from '../entities/vault.ts'
4
4
import { YEARN_V2_ABI } from '../abis/YearnV2.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
1
+ import { Manifest } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
2
2
import { VaultSnapshot } from './entities/vault.ts'
3
3
import { snapshotVault } from './handlers/vault.ts'
4
4
Original file line number Diff line number Diff line change 1
- import { createEntity } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
1
+ import { createEntity } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
2
2
3
3
// @note : "Index: true" enhances graphql queries
4
4
Original file line number Diff line number Diff line change 1
1
import { formatUnits , fromHex , numberToHex } from 'npm:viem'
2
- import { type EventHandlerFor } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
2
+ import { type EventHandlerFor } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
3
3
import erc20 from './erc20.ts'
4
4
import { Balance , BalanceHistory , Transfer } from './entities.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
1
+ import { Manifest } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
2
2
import { ERC_20_ABI } from './Erc20.ts'
3
3
import { Entities } from './entities.ts'
4
4
import { onTransfer } from './handlers.ts'
Original file line number Diff line number Diff line change 1
- import { createEntity } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
1
+ import { createEntity } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
2
2
3
3
// @note : "Index: true" enhances graphql queries
4
4
export const Transfer = createEntity < any > ( 'Transfer' , {
Original file line number Diff line number Diff line change 1
1
import { formatUnits } from 'npm:viem'
2
- import { type EventHandlerFor } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
2
+ import { type EventHandlerFor } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
3
3
import { ERC_20_ABI } from './Erc20.ts'
4
4
import { Approval , Transfer } from './entities.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
1
+ import { Manifest } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
2
2
import { ERC_20_ABI } from './Erc20.ts'
3
3
import { Approval , Transfer } from './entities.ts'
4
4
import { onApproval , onTransfer } from './handlers.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
6
+ } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
6
+ } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
7
7
export {
8
8
Erc721Lib ,
9
9
type Erc721Opts ,
10
- } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /libs.ts'
10
+ } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /libs.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https ://deno.land/x/robo_arkiver@v0.4.19 /mod.ts'
6
+ } from 'hhttps ://deno.land/x/robo_arkiver@v0.4.20 /mod.ts'
You can’t perform that action at this time.
0 commit comments