Sign with the P-Chain address for the following actions:

- Importing from P -> C
- Exporting from P -> C
- Importing from C -> P
- Self-bond Transaction

When Exporting from C-> P, sign with the C-Chain address.

In order to successfully transfer tokens from the C-Chain to the P-Chain, or vice versa, you must complete a two step process.

The first step of a transfer is an Export transaction, which then must be followed up with an Import transaction.

If for example I wanted to transfer 10 AVAX from C-Chain to P-Chain, I would:

- Sign and Broadcast an Export Transaction where the `from_address` is my EVM-Chain address and the `to_address` is my P-Chain address
- Sign and Broadcast an Import Transaction where the `from_address` is my C-Chain address and the `to_address` is my P-Chain address

If I wanted to transfer 10 AVAX from P-Chain to C-Chain, then I would do the same two steps but switch the `from_address` and `to_address`.

### Network

- **Type:** string  
- **Enum:** required  
- Allowed: `fuji`, `mainnet`

### Parameters

- **from_address**:  string (required)  
- **to_address**:  string (required)  
- **amount**: string (required)

### Example transactions

**201**  transaction created

```json
{
  "data": {
    "network": "fuji",
    "unsigned_transaction_serialized": "0x7b22636f6465634964223a2230222c22766d223a2250564d222c2274784279746573223a223078303030303030303030303161303030303030303530303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303133643962646163306564316437363133333063663638306566646562316134323135396562333837643664323935306339366637643238663631626265326161303030303030303730303030303030303030303338333438303030303030303030303030303030303030303030303031303030303030303134303638336631306635653763343830313432626233346361316633616635373161346465623235303030303030303230396265646163643230323163643463323566373162613635663364386436346130343431333234653034373639396633316164353366333230386637313033303030303030303133643962646163306564316437363133333063663638306566646562316134323135396562333837643664323935306339366637643238663631626265326161303030303030303530303030303030303362396163613030303030303030303130303030303030303039626564616364323032316364346332356637316261363566336438643634613034343133323465303437363939663331616435336633323038663731303330303030303032336439626461633065643164373631333330636636383065666465623161343231353965623338376436643239353063393666376432386636316262653261613030303030303037303030303030303033623961636130303030303030303030303030303030303030303030303030313030303030303031343036383366313066356537633438303134326262333463613166336166353731613464656232353030303030303062303030303030303030303030303030303030303030303031303030303030303134303638336631306635653763343830313432626233346361316633616635373161346465623235222c227574786f73223a5b22307830396265646163643230323163643463323566373162613635663364386436346130343431333234653034373639396633316164353366333230386637313033303030303030303233643962646163306564316437363133333063663638306566646562316134323135396562333837643664323935306339366637643238663631626265326161303030303030303730303030303030303030303361663434303030303030303030303030303030303030303030303031303030303030303134303638336631306635653763343830313432626233346361316633616635373161346465623235222c22307830396265646163643230323163643463323566373162613635663364386436346130343431333234653034373639396633316164353366333230386637313033303030303030303133643962646163306564316437363133333063663638306566646562316134323135396562333837643664323935306339366637643238663631626265326161303030303030303730303030303030303362396163613030303030303030303030303030303030303030303030303031303030303030303134303638336631306635653763343830313432626233346361316633616635373161346465623235225d2c22616464726573734d617073223a5b5b5b22307834303638336631306635653763343830313432626233346361316633616635373161346465623235222c305d5d2c5b5b22307834303638336631306635653763343830313432626233346361316633616635373161346465623235222c305d5d5d2c2263726564656e7469616c73223a5b5b2230303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030225d2c5b2230303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030225d5d7d

```

**422**  Invalid request

```bash
curl --request POST \
     --url https://api.figment.io/avalanche/export \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: your-api-key-here' \
     --data '{"network":"fuji"}'
```
