-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathstamps.ts
More file actions
149 lines (127 loc) · 4.03 KB
/
Copy pathstamps.ts
File metadata and controls
149 lines (127 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import type {
BeeRequestOptions,
GlobalPostageBatch,
NumberString,
PostageBatch,
PostageBatchBuckets,
PostageBatchOptions,
RedundancyLevel,
} from '../../types'
import {
BatchIdResponse,
GetAllPostageBatchesResponse,
GetGlobalPostageBatchesResponse,
GetGlobalPostageBatchResponse,
GetPostageBatchBucketsResponse,
GetPostageBatchResponse,
} from '../../types/schema/stamps'
import { http } from '../../utils/http'
import { mapPostageBatch } from '../../utils/stamps'
import { BatchId } from '../../utils/typed-bytes'
const STAMPS_ENDPOINT = 'stamps'
const BATCHES_ENDPOINT = 'batches'
export async function getGlobalPostageBatches(requestOptions: BeeRequestOptions): Promise<GlobalPostageBatch[]> {
const response = await http<unknown>(requestOptions, {
method: 'get',
url: `${BATCHES_ENDPOINT}`,
responseType: 'json',
})
return GetGlobalPostageBatchesResponse.parse(response.data).batches
}
export async function getGlobalPostageBatch(
requestOptions: BeeRequestOptions,
postageBatchId: BatchId,
): Promise<GlobalPostageBatch> {
const response = await http<unknown>(requestOptions, {
method: 'get',
url: `${BATCHES_ENDPOINT}/${postageBatchId}`,
responseType: 'json',
})
return GetGlobalPostageBatchResponse.parse(response.data)
}
export async function getAllPostageBatches(requestOptions: BeeRequestOptions): Promise<PostageBatch[]> {
const response = await http<unknown>(requestOptions, {
method: 'get',
url: `${STAMPS_ENDPOINT}`,
responseType: 'json',
})
return GetAllPostageBatchesResponse.parse(response.data).stamps.map(x => mapPostageBatch(x))
}
export async function getPostageBatch(
requestOptions: BeeRequestOptions,
postageBatchId: BatchId,
encryption?: boolean,
erasureCodeLevel?: RedundancyLevel,
): Promise<PostageBatch> {
const response = await http<unknown>(requestOptions, {
method: 'get',
url: `${STAMPS_ENDPOINT}/${postageBatchId}`,
responseType: 'json',
})
return mapPostageBatch(GetPostageBatchResponse.parse(response.data), encryption, erasureCodeLevel)
}
export async function getPostageBatchBuckets(
requestOptions: BeeRequestOptions,
postageBatchId: BatchId,
): Promise<PostageBatchBuckets> {
const response = await http<unknown>(requestOptions, {
method: 'get',
url: `${STAMPS_ENDPOINT}/${postageBatchId}/buckets`,
responseType: 'json',
})
return GetPostageBatchBucketsResponse.parse(response.data)
}
export async function createPostageBatch(
requestOptions: BeeRequestOptions,
amount: NumberString,
depth: number,
options?: PostageBatchOptions,
): Promise<BatchId> {
const headers: Record<string, string> = {}
if (options?.gasPrice) {
headers['gas-price'] = options.gasPrice.toString()
}
if (options?.immutableFlag !== undefined) {
headers.immutable = String(options.immutableFlag)
}
const response = await http<unknown>(requestOptions, {
method: 'post',
url: `${STAMPS_ENDPOINT}/${amount}/${depth}`,
responseType: 'json',
params: { label: options?.label },
headers,
})
return BatchIdResponse.parse(response.data).batchID
}
export async function updatePostageBatchLabel(
requestOptions: BeeRequestOptions,
id: BatchId,
label: string,
): Promise<void> {
await http<unknown>(requestOptions, {
method: 'patch',
url: `${STAMPS_ENDPOINT}/${id}`,
responseType: 'json',
data: { label },
})
}
export async function topUpBatch(
requestOptions: BeeRequestOptions,
id: BatchId,
amount: NumberString,
): Promise<BatchId> {
const response = await http<unknown>(requestOptions, {
method: 'patch',
url: `${STAMPS_ENDPOINT}/topup/${id}/${amount}`,
responseType: 'json',
})
return BatchIdResponse.parse(response.data).batchID
}
export async function diluteBatch(requestOptions: BeeRequestOptions, id: BatchId, depth: number): Promise<BatchId> {
const response = await http<unknown>(requestOptions, {
method: 'patch',
url: `${STAMPS_ENDPOINT}/dilute/${id}/${depth}`,
responseType: 'json',
})
return BatchIdResponse.parse(response.data).batchID
}